mirror of
https://github.com/saltstack/salt.git
synced 2025-04-10 06:41:40 +00:00

Since the master branch no longer supports Python 2, and many distros still default /usr/bin/python to Python 2, this commit changes the scripts to explicitly call Python 3.
11 lines
210 B
Python
Executable file
11 lines
210 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""
|
|
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()
|