mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
12 lines
203 B
Python
Executable File
12 lines
203 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()
|