salt/scripts/salt-call

12 lines
203 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2011-04-23 05:03:23 +00:00
'''
2011-08-15 04:37:40 +00:00
Directly call a salt command in the modules, does not require a running salt
minion to run.
2011-04-23 05:03:23 +00:00
'''
from salt.scripts import salt_call
2011-04-23 05:03:23 +00:00
2011-04-23 05:03:23 +00:00
if __name__ == '__main__':
salt_call()