How to create Ansible Inclusion In Ansible on Centos7
- 00:54 lsb_release -d
- 01:02 ls
- 01:07 cd ansible_inclusion/
- 01:11 ls
- 01:24 vi setup.yml
- 02:00 vi tasks.yml
- 02:23 ansible-playbook setup.yml --syntax-check
- 02:36 ansible-playbook setup.yml
- 02:50 vi packages.yml
- 03:02 vi installpkg.yml
- 03:09 ansible-playbook installpkg.yml --syntax-check
- 03:26 ansible-playbook installpkg.yml
To create Ansible Inclusion In Ansible on Centos7
Introduction:
Ansible is an agentless computerization tool that can install on a control node. Using the control node, Ansible runs machines and other devices remotely. (by default, over the SSH protocol.
Steps:
Check the Os version by using below command:
[root@linuxhelp ~]# lsb_release -d
Description: CentOS Linux release 7.6.1810 (Core)
List the directory:
[root@linuxhelp ~]# ls
anaconda-ks.cfg ansible_inclusion hello.txt original-ks.cfg
Switch to ansible inclusion directory:
[root@linuxhelp ~]# cd ansible_inclusion/
List the directory:
[root@linuxhelp ansible_inclusion]# ls
ansible.cfg hosts setup.yml tasks.yml
Open the setup.yml file:
[root@linuxhelp ansible_inclusion]# vi setup.yml
Open the tasks.yml file:
[root@linuxhelp ansible_inclusion]# vi tasks.yml
Check the syntax of the setup file:
[root@linuxhelp ansible_inclusion]# ansible-playbook setup.yml --syntax-check
playbook: setup.yml
Run the setup.yml file:
[root@linuxhelp ansible_inclusion]# ansible-playbook setup.yml
PLAY [Deploying service] **************************************************************************************************************
TASK [Gathering Facts] ***************************************************************************************************************
ok: [client]
TASK [install the samba package] ******************************************************************************************************
ok: [client]
TASK [start the smb package] **********************************************************************************************************
changed: [client]
TASK [debugs the tasks] ***************************************************************************************************************
ok: [client] => {
"msg": "output"
}
PLAY RECAP ****************************************************************************************************************************
client : ok=4 changed=0 unreachable=0 failed=0 skipped=0 rescued=0
Open the packages.yml file:
[root@linuxhelp ansible_inclusion]# vi packages.yml
Open the installpkg file:
[root@linuxhelp ansible_inclusion]# vi installpkg.yml
Check the syntax of the file:
[root@linuxhelp ansible_inclusion]# ansible-playbook installpkg.yml --syntax-check
playbook: installpkg.yml
Run the installpkg file:
[root@linuxhelp ansible_inclusion]# ansible-playbook installpkg.yml
PLAY [install packages] ***************************************************************************************************************
TASK [Gathering Facts] ****************************************************************************************************************
ok: [client]
TASK [include packages] ***************************************************************************************************************
ok: [client]
TASK [install httpd] ******************************************************************************************************************
ok: [client]
PLAY RECAP ****************************************************************************************************************************
client : ok=3 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
with this method creation of Ansible Inclusion comes to an end.
Comments ( 0 )
No comments available