mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
10 lines
164 B
Python
Executable file
10 lines
164 B
Python
Executable file
#!/usr/bin/python
|
|
'''
|
|
This script is used to kick off a salt syndic daemon
|
|
'''
|
|
|
|
from salt.scripts import salt_minion
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_minion()
|