mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 01:30:20 +00:00
9 lines
143 B
Python
Executable file
9 lines
143 B
Python
Executable file
#!/usr/bin/env python
|
|
"""
|
|
Execute a salt convenience routine
|
|
"""
|
|
|
|
from salt.scripts import salt_run
|
|
|
|
if __name__ == "__main__":
|
|
salt_run()
|