mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
18 lines
203 B
Python
Executable File
18 lines
203 B
Python
Executable File
#!/usr/bin/env python2
|
|
'''
|
|
Start the salt-master
|
|
'''
|
|
|
|
import salt
|
|
|
|
|
|
def main():
|
|
'''
|
|
The main function
|
|
'''
|
|
master = salt.Master()
|
|
master.start()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|