mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
11 lines
144 B
Python
Executable File
11 lines
144 B
Python
Executable File
#!/usr/bin/env python
|
|
'''
|
|
Execute a salt convenience routine
|
|
'''
|
|
|
|
from salt.scripts import salt_run
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_run()
|