mirror of
https://github.com/saltstack/salt.git
synced 2025-04-14 00:30:19 +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.
9 lines
144 B
Python
Executable file
9 lines
144 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""
|
|
Execute a salt convenience routine
|
|
"""
|
|
|
|
from salt.scripts import salt_run
|
|
|
|
if __name__ == "__main__":
|
|
salt_run()
|