Template在运用时,与copy比较相似,区别在于,Template可以在playbook执行的时候,根据一定的条件灵活的设置需要复制的文件中的部分关键内容。同时,playbook中关于template支持使用的条件判断、循环、逻辑运算、比较等内容,增强了配置的灵活性。
Ansible中template模板使用jinjia2语言配置,模板文件的后缀为.j2。
测试配置文件:fileserver.conf.j2
在上述模板文件中定义listen_port,需要在调用playbook时对该值进行赋值,然后该值就会替代模板中的变量。
---
- hosts: user_passwd
remote_user: root
tasks:
- name: Config Nginx
template: src=template/fileserver.conf.j2 dest=/root/fileserver.conf
Ansible支持使用迭代变量,迭代的数据类型可以是列表或者字典,迭代示例:
---
- hosts: user_passwd
remote_user: root
tasks:
- name: Create new group
group: name={{ item }} state=present
with_items:
- group1
- group2
- group3
- name: Create new user
user: name={{ item.user }} group={{ item.group }} state=present
with_items:
- { user: "user1", group: "group1"}
- { user: "user2", group: "group2"}
- { user: "user3", group: "group3"}
在上述playbook中,两个task任务分别使用了列别和字典两个数据,使得可以迭代数据执行三个任务。
2. 执行playbook
3. 确认
when语句可以用于条件测试。
---
- hosts: user_passwd
remote_user: root
tasks:
- name: Install httpd
yum: name=httpd state=installed
- name: Config CentOS6 Httpd
template: src=template/httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf
when: ansible_distribution_major_version == "6"
- name: Config CentOS7 Httpd
template: src=template/httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf
when: ansible_distribution_major_version == "7"
- name: Start Httpd
service: name=httpd state=started
对部分内容进行迭代。
---
- hosts: user_passwd
remote_user: root
vars:
nginx_vhosts:
- vhost1:
port: 81
server_name: "web1.iforfree.com"
root: "/var/www/nginx/web1"
- vhost2:
port: 82
server_name: "web2.iforfree.com"
root: "/var/www/nginx/web2"
- vhost3:
port: 83
server_name: "web3.iforfree.com"
root: "/var/www/nginx/web3"
tasks:
- name: config nginx
template: src=template/fileserver.conf.j2 dest=/root/fileserver.conf
{% for vhost in nginx_vhosts %}
server{
listen {{ vhost.port }};
server_name {{ vhost.server_name }};
root {{ vhost.root }};
}
{% endfor %}
playbook文件采用五章节中的文件,新增vhost4,并不定义端口号。
{% for vhost in nginx_vhosts %}
server{
{% if vhost.port is defined%}
listen {{ vhost.port }};
{% else %}
listen 8888;
{% endif %}
server_name {{ vhost.server_name }};
root {{ vhost.root }};
}
{% endfor %}