CRON没有在Puppet中更新?

时间:2014-01-30 16:05:34

标签: linux ubuntu puppet

我当前的清单文件如下所示,

cron { 'Hourly_cron':
         ensure  => 'present',
         command => " /bin/test.py  >> test.log",
         minute => '15',
         user => 'wae_app';
}

现在我想更新到command => “/bin/test.py>> test_1.log”..

我已经改变但没有工作......没有更新CRON ......怎么做

cron { 'Hourly_cron':
         ensure  => 'present',
         command => " /bin/test.py  >> test_1.log",
         minute => '15',
         user => 'wae_app';
}

0 个答案:

没有答案