mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 00:25:22 +00:00
13 lines
210 B
Python
Executable File
13 lines
210 B
Python
Executable File
#!/usr/bin/env python
|
|
'''
|
|
Publish commands to the salt system from the command line on the master.
|
|
|
|
.. versionadded:: 2015.8.0
|
|
'''
|
|
|
|
from salt.scripts import salt_spm
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_spm()
|