标签:ansible 执行 一个 cron Owner 复制 权限 file 服务
1、ansible使用copy模块来将/opt/aa.txt复制到/home/jack中ansible web02 -m copy -a ‘src=/opt/aa.txt dest=/home/jack ‘
2、使用file模块,来定义/home/jack/aa.txt的权限为777,归属为所有者是jack,所属组为jack
ansible web02 -m file -a "mode=777 owner=jack group=jack path=/home/jack/aa.txt"
3、使用yum模块,安装httpd服务
ansible web02 -m yum -a "name=httpd"
4、使用cron模块,定义一个任务,每周五的14点30分执行备份/var
ansible web02 -m cron -a ‘minute="30" hour="14" weekday="5" job="/usr/bin/tar czf /opt/var.tar.gz /var"‘
5、使用user模块,创建用户student,让其是系统用户,属组为root,uid为2000
ansible web02 -m user -a "name=student system=yes group=root uid=2000"
标签:ansible 执行 一个 cron Owner 复制 权限 file 服务
原文地址:https://blog.51cto.com/14158288/2363689