mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
11 lines
199 B
Python
Executable file
11 lines
199 B
Python
Executable file
#!/usr/bin/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()
|