Merge pull request #8358 from techhat/saltcloud

Moving salt-cloud script into proper location
This commit is contained in:
Thomas S Hatch 2013-11-08 13:14:25 -08:00
commit 99bbf9ea9a

4
salt_cloud/scripts/salt-cloud → scripts/salt-cloud Normal file → Executable file
View File

@ -1,12 +1,12 @@
#!/usr/bin/env python
import saltcloud.cli
import salt.cloud.cli
def main():
'''
The main function for salt-cloud
'''
cloud = saltcloud.cli.SaltCloud()
cloud = salt.cloud.cli.SaltCloud()
cloud.run()
if __name__ == '__main__':