mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
11 lines
182 B
Text
11 lines
182 B
Text
![]() |
#!/usr/bin/env python
|
||
|
'''
|
||
|
Publish commands to the salt system from the command line on the master.
|
||
|
'''
|
||
|
|
||
|
from salt.scripts import salt_spm
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
salt_spm()
|