mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
53bab586f4
Woot! The conflicts below are intentional because they contained salt-api-isms that needed to be included into the corresponding Salt files. Conflicts: debian/changelog debian/control doc/conf.py doc/index.rst opt_requirements.txt salt/config.py salt/loader.py
12 lines
155 B
Python
Executable File
12 lines
155 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Import salt libs
|
|
import salt.cli
|
|
|
|
def main():
|
|
sapi = salt.cli.SaltAPI()
|
|
sapi.run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|