我当前的清单文件如下所示,
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';
}