PageRenderTime 55ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/boto-2.5.2/boto/pyami/startup.py

#
Python | 60 lines | 34 code | 5 blank | 21 comment | 8 complexity | 9c089822301a3c3b8ea075424d0ed354 MD5 | raw file
  1. # Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a
  4. # copy of this software and associated documentation files (the
  5. # "Software"), to deal in the Software without restriction, including
  6. # without limitation the rights to use, copy, modify, merge, publish, dis-
  7. # tribute, sublicense, and/or sell copies of the Software, and to permit
  8. # persons to whom the Software is furnished to do so, subject to the fol-
  9. # lowing conditions:
  10. #
  11. # The above copyright notice and this permission notice shall be included
  12. # in all copies or substantial portions of the Software.
  13. #
  14. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  15. # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
  16. # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
  17. # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  18. # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. # IN THE SOFTWARE.
  21. #
  22. import sys
  23. import boto
  24. from boto.utils import find_class
  25. from boto import config
  26. from boto.pyami.scriptbase import ScriptBase
  27. class Startup(ScriptBase):
  28. def run_scripts(self):
  29. scripts = config.get('Pyami', 'scripts')
  30. if scripts:
  31. for script in scripts.split(','):
  32. script = script.strip(" ")
  33. try:
  34. pos = script.rfind('.')
  35. if pos > 0:
  36. mod_name = script[0:pos]
  37. cls_name = script[pos+1:]
  38. cls = find_class(mod_name, cls_name)
  39. boto.log.info('Running Script: %s' % script)
  40. s = cls()
  41. s.main()
  42. else:
  43. boto.log.warning('Trouble parsing script: %s' % script)
  44. except Exception, e:
  45. boto.log.exception('Problem Running Script: %s. Startup process halting.' % script)
  46. raise e
  47. def main(self):
  48. self.run_scripts()
  49. self.notify('Startup Completed for %s' % config.get('Instance', 'instance-id'))
  50. if __name__ == "__main__":
  51. if not config.has_section('loggers'):
  52. boto.set_file_logger('startup', '/var/log/boto.log')
  53. sys.path.append(config.get('Pyami', 'working_dir'))
  54. su = Startup()
  55. su.main()