标签:cat play rgb art lnmp star size imp clu
[root@m01 ~]# cat nginx.yml
- name: Install Nginx Server
yum:
name: nginx
state: present
[root@m01 ~]# cat start.yml
- name: Start Nginx Server
systemd:
name: nginx
state: started
enabled: yes
[root@m01 ~]# cat main.yml
- hosts: nfs
tasks:
- include_tasks: nginx.yml
- include_tasks: start.yml
[root@m01 ~]# cat main.yml
- import_playbook: lnmp1.yml
- import_playbook: lnmp2.yml
标签:cat play rgb art lnmp star size imp clu
原文地址:https://www.cnblogs.com/chenlifan/p/13777460.html