23123 发表于 2016-4-7 09:12:53

ansible实现任务计划

                      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

                   

页: [1]
查看完整版本: ansible实现任务计划