コード例 #1
0
ファイル: caller.py プロジェクト: AFriemann/salt
def raet_minion_run(cleanup_protecteds):
    '''
    Set up the minion caller. Should be run in its own process.
    This function is intentionally left out of RAETCaller. This will avoid
    needing to pickle the RAETCaller object on Windows.
    '''
    minion = daemons.Minion()  # daemonizes here
    minion.call(cleanup_protecteds=cleanup_protecteds)  # caller minion.call_in uses caller.flo
コード例 #2
0
ファイル: caller.py プロジェクト: DaveQB/salt
def raet_minion_run(cleanup_protecteds):
    '''
    Set up the minion caller. Should be run in its own process.
    This function is intentionally left out of RAETCaller. This will avoid
    needing to pickle the RAETCaller object on Windows.
    '''
    minion = daemons.Minion()  # daemonizes here
    minion.call(cleanup_protecteds=cleanup_protecteds)  # caller minion.call_in uses caller.flo
コード例 #3
0
ファイル: caller.py プロジェクト: talalUcef/salt
 def minion_run(self, cleanup_protecteds):
     minion = daemons.Minion()  # daemonizes here
     minion.call(cleanup_protecteds=cleanup_protecteds)  # caller minion.call_in uses caller.flo
コード例 #4
0
ファイル: caller.py プロジェクト: qzchenwl/saltstack-verify
 def minion_run(self, cleanup_protecteds):
     minion = salt.Minion()  # daemonizes here
     minion.call(cleanup_protecteds=cleanup_protecteds)  # caller minion.call_in uses caller.flo