Ansible实现任务计划
*ansible testhost -m cron -a "name='test cron' job='/bin/touch /tmp/1212.txt' weekday=5-6"
*若要删除该cron 只需要加一个字段 state=absent
ansible testhost -m cron -a "name='test cron' state=absent"
*其他的时间表示:分钟 minute 小时 hour 日期 day 月份 month
本文共 283 字,大约阅读时间需要 1 分钟。
Ansible实现任务计划
*ansible testhost -m cron -a "name='test cron' job='/bin/touch /tmp/1212.txt' weekday=5-6"
*若要删除该cron 只需要加一个字段 state=absent
ansible testhost -m cron -a "name='test cron' state=absent"
*其他的时间表示:分钟 minute 小时 hour 日期 day 月份 month
转载于:https://blog.51cto.com/llzdwyp/1761058