随笔 - 483, 文章 - 0, 评论 - 2, 阅读 - 18万

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

ansible高级用法

Posted on   ggzone  阅读(178)  评论(0编辑  收藏  举报

将多个符合正则的文件拷贝到目标机器

- name: Copy
copy: src={{ item }} dest=/root/.sshkeys mode=0600
owner=root group=root
with_fileglob:
- keys/*.pub

将多个文件合并

- name: Assemble keys into authorized_keys file
assemble: src=/root/.sshkeys dest=/root/.ssh/authorized_keys
mode=0600 owner=root group=root

register

把任务的输出定义为变量,然后用于其他任务

http://xdays.me/ansible状态管理.html

点击右上角即可分享
微信分享提示