mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
17 lines
223 B
Python
17 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()
|