Add salt-master script

This commit is contained in:
Thomas S Hatch 2011-02-27 14:47:18 -07:00
parent 48faacee1f
commit fe0eb82f63

View file

@ -0,0 +1,15 @@
#!/usr/bin/env python2
'''
Start the salt-master
'''
import salt
def main():
'''
The main function
'''
master = salt.Master()
master.start()
if __name__ == '__main__':
main()