Add the salt-run srcipt

This commit is contained in:
Thomas S Hatch 2011-06-02 21:37:02 -06:00
parent 85a0a42ca0
commit a7ae966b6f

16
scripts/salt-run Normal file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python2
'''
Execute a salt convenience routine
'''
import salt.cli
def main():
'''
The main function
'''
client = salt.cli.SaltRun()
client.run()
if __name__ == '__main__':
main()