1 Ansible 1.1 ansible安装部署 |
2 功能模块 |
2.1 playbook |
2.2 command模块 |
2.3 shell模块 |
2.4 copy模块 |
2.5 package模块 |
2.6 file模块 |
2.7 fetch模块 |
2.8 cron模块 |
2.9 template模块 |
2.10 service模块 |
2.11 yum模块 |
2.12 user模块 |
2.13 group模块 |
2.14 script模块 |
2.15 setup模块 |
7)cron 模块 该模块适用于管理cron计划任务的。 其使用的语法跟我们的crontab文件中的语法一致,同时,可以指定以下选项:
day= #日应该运行的工作( 1-31, *, */2, ) hour= # 小时 ( 0-23, *, */2, ) minute= #分钟( 0-59, *, */2, ) month= # 月( 1-12, *, /2, ) weekday= # 周 ( 0-6 for Sunday-Saturday,, ) job= #指明运行的命令是什么 name= #定时任务描述 reboot # 任务在重启时运行,不建议使用,建议使用special_time special_time #特殊的时间范围,参数:reboot(重启时),annually(每年),monthly(每月),weekly(每周),daily(每天),hourly(每小时) state #指定状态,present表示添加定时任务,也是默认设置,absent表示删除定时任务 user # 以哪个用户的身份执行
|