salt/scripts/salt-minion
2012-09-10 14:13:02 -05:00

15 lines
346 B
Python
Executable File

#!/usr/bin/python
'''
This script is used to kick off a salt minion daemon
'''
from salt.scripts import salt_minion
from multiprocessing import freeze_support
if __name__ == '__main__':
# This handles the bootstrapping code that is included with frozen
# scripts. It is a no-op on unfrozen code.
freeze_support()
salt_minion()