salt/scripts/salt-call
2020-04-03 13:05:41 -05:00

10 lines
202 B
Python
Executable file

#!/usr/bin/env python
"""
Directly call a salt command in the modules, does not require a running salt
minion to run.
"""
from salt.scripts import salt_call
if __name__ == "__main__":
salt_call()