mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
38e5d2b2cb
Signed-off-by: Markus Gattol <markus.gattol@sunoano.org>
18 lines
223 B
Python
18 lines
223 B
Python
#!/usr/bin/env python2
|
|
'''
|
|
Execute a salt convenience routine
|
|
'''
|
|
|
|
import salt.cli
|
|
|
|
|
|
def main():
|
|
'''
|
|
The main function
|
|
'''
|
|
client = salt.cli.SaltRun()
|
|
client.run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|