本文整理匯總了Python中salt.utils.schedule.Schedule.modify_job方法的典型用法代碼示例。如果您正苦於以下問題:Python Schedule.modify_job方法的具體用法?Python Schedule.modify_job怎麽用?Python Schedule.modify_job使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類salt.utils.schedule.Schedule
的用法示例。
在下文中一共展示了Schedule.modify_job方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_modify_job
# 需要導入模塊: from salt.utils.schedule import Schedule [as 別名]
# 或者: from salt.utils.schedule.Schedule import modify_job [as 別名]
def test_modify_job(self):
'''
Tests modifying a job in the scheduler
'''
schedule = {'schedule': {'foo': 'bar'}}
ret = {'schedule': {'foo': 'bar', 'name': {'schedule': {'foo': 'bar'}}}}
self.schedule.opts = {'schedule': {'foo': 'bar'}}
Schedule.modify_job(self.schedule, 'name', schedule)
self.assertEqual(self.schedule.opts, ret)
示例2: test_modify_job_pillar
# 需要導入模塊: from salt.utils.schedule import Schedule [as 別名]
# 或者: from salt.utils.schedule.Schedule import modify_job [as 別名]
def test_modify_job_pillar(self):
'''
Tests modifying a job in the scheduler in pillar
'''
schedule = {'foo': 'bar'}
ret = {'pillar': {'schedule': {'name': {'foo': 'bar'}}}}
self.schedule.opts = {'pillar': {'schedule': {'name': {'foo': 'bar'}}}}
Schedule.modify_job(self.schedule, 'name', schedule, where='pillar')
self.assertEqual(self.schedule.opts, ret)
示例3: test_modify_job_pillar
# 需要導入模塊: from salt.utils.schedule import Schedule [as 別名]
# 或者: from salt.utils.schedule.Schedule import modify_job [as 別名]
def test_modify_job_pillar(self):
'''
Tests modifying a job in the scheduler in pillar
'''
schedule = {'foo': 'bar'}
ret = copy.deepcopy(self.schedule.opts)
ret.update({'pillar': {'schedule': {'name': {'foo': 'bar'}}}})
self.schedule.opts.update({'pillar': {'schedule': {'name': {'foo': 'bar'}}}})
Schedule.modify_job(self.schedule, 'name', schedule, persist=False, where='pillar')
self.assertEqual(self.schedule.opts, ret)
示例4: test_modify_job
# 需要導入模塊: from salt.utils.schedule import Schedule [as 別名]
# 或者: from salt.utils.schedule.Schedule import modify_job [as 別名]
def test_modify_job(self):
'''
Tests modifying a job in the scheduler
'''
schedule = {'schedule': {'foo': 'bar'}}
ret = copy.deepcopy(self.schedule.opts)
ret.update({'schedule': {'foo': 'bar', 'name': {'schedule': {'foo': 'bar'}}}})
self.schedule.opts.update({'schedule': {'foo': 'bar'}})
Schedule.modify_job(self.schedule, 'name', schedule)
self.assertEqual(self.schedule.opts, ret)
示例5: test_modify_job_pillar
# 需要導入模塊: from salt.utils.schedule import Schedule [as 別名]
# 或者: from salt.utils.schedule.Schedule import modify_job [as 別名]
def test_modify_job_pillar(self):
'''
Tests modifying a job in the scheduler in pillar
'''
schedule = {'foo': 'bar'}
ret = {'pillar': {'schedule': {'name': {'foo': 'bar'}}}}
self.schedule.opts = {'pillar': {'schedule': {'name': {'foo': 'bar'}}},
'sock_dir': SOCK_DIR}
Schedule.modify_job(self.schedule, 'name', schedule, persist=False, where='pillar')
del self.schedule.opts['sock_dir']
self.assertEqual(self.schedule.opts, ret)