mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add the salt-minon script
This commit is contained in:
parent
b82d6a1bb3
commit
1d91b4df8c
1 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env python2
|
||||
'''
|
||||
This script is used to kick off a
|
||||
'''
|
||||
import salt
|
||||
|
||||
def main():
|
||||
'''
|
||||
The main function
|
||||
'''
|
||||
minion = salt.Minion()
|
||||
minion.start()
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Add table
Reference in a new issue