标签:任务 ack file echo gif test .com font mil
cron模块
管理远程主机上的计划任务
[root@tiandong ansible]# ansible all -m cron -a "name=‘cron test‘ minute=5 hour=1 job=‘echo test‘"
每天1点5分执行
[root@tiandong ansible]# ansible all -m cron -a "name=‘cron day test‘ minute=5 hour=1 day=*/3 job=‘echo test‘"
[root@tiandong ansible]# ansible all -m cron -a "name=‘test special time‘ special_time=reboot job=‘echo test‘"
定义计划任务,在重启时执行
[root@tiandong ~]# ansible all -m cron -a "name=‘test special time‘ special_time=hourly job=‘echo test‘ backup=yes"
存在相同的name,则会修改之前的计划任务,但是加了backup之后会先进行备份然后在创建计划任务
[root@tiandong ~]# ansible all -m cron -a "name=‘test special time‘ state=absent backup=yes"
删除计划任务。有backup参数就是先进行备份,backup_file备份的位置
标签:任务 ack file echo gif test .com font mil
原文地址:https://www.cnblogs.com/winter1519/p/9353042.html