Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Add salt-cloud script
Browse files Browse the repository at this point in the history
  • Loading branch information
thatch45 committed Apr 29, 2012
1 parent 9d41644 commit c8f2f9b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions scripts/salt-cloud
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env python

import saltcloud

def main():
'''
The main function for salt-cloud
'''
cloud = saltcloud.SaltCloud()
cloud.run()

if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
raise SystemExit('\nExiting gracefully on Ctrl-c')

0 comments on commit c8f2f9b

Please sign in to comment.