Add freeze_support on salt-minion script

This commit is contained in:
Aaron Tygart 2012-09-10 14:13:02 -05:00
parent 0fd277b68d
commit a05911d985

View file

@ -4,7 +4,11 @@ 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()