浪人 发表于 2018-7-30 10:02:46

3.5-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]
查看完整版本: 3.5-ansible实现任务计划