mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
16 lines
253 B
Python
16 lines
253 B
Python
#!/usr/bin/env python2
|
|
'''
|
|
Publish commands to the salt system from the command line on the master.
|
|
'''
|
|
|
|
import salt.cli
|
|
|
|
def main():
|
|
'''
|
|
The main function
|
|
'''
|
|
cp_ = salt.cli.SaltCP()
|
|
cp_.run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|