mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
11 lines
168 B
Python
Executable File
11 lines
168 B
Python
Executable File
#!/usr/bin/env python
|
|
'''
|
|
This script is used to kick off a salt syndic daemon
|
|
'''
|
|
|
|
from salt.scripts import salt_syndic
|
|
|
|
|
|
if __name__ == '__main__':
|
|
salt_syndic()
|