mirror of
https://github.com/saltstack/salt.git
synced 2025-04-10 06:41:40 +00:00
10 lines
203 B
Python
Executable file
10 lines
203 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""
|
|
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()
|