salt/scripts/salt-call

17 lines
253 B
Plaintext
Raw Normal View History

2011-04-23 05:03:23 +00:00
#!/usr/bin/env python2
'''
Directly call a salt command in the modules, does not require a
'''
import salt.cli
def main():
'''
The main function
'''
client = salt.cli.SaltCall()
client.run()
if __name__ == '__main__':
main()