mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
15 lines
202 B
Python
15 lines
202 B
Python
#!/usr/bin/env python2
|
|
'''
|
|
Start the salt-master
|
|
'''
|
|
import salt
|
|
|
|
def main():
|
|
'''
|
|
The main function
|
|
'''
|
|
master = salt.Master()
|
|
master.start()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|