mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
10 lines
180 B
Python
Executable file
10 lines
180 B
Python
Executable file
#!/usr/bin/env python
|
|
'''
|
|
Publish commands to the salt system from the command line on the master.
|
|
'''
|
|
|
|
from salt.scripts import salt_cp
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_cp()
|