Ansible Adhoc Commands

Program 1 – Write a Ansible Adhoc Commands to create a group called “deploy

How to verify?
$ more /etc/group | grep deploy

ansible localhost -m ansible.builtin.group -a”name=deploy state=present”

Program 2 – Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “deploy” and with /bin/bash shell.

How to verify?
$ more /etc/passwd | grep deploy-user

ansible -m user -a “name=deploy-user group=deploy shell=/bin/bash”

Program 3 – Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos.

How to verify?
$ which httpd

ansible localhost -m yum -a”name=httpd state=present”

Program 4 – Write a Ansible Adhoc commands to start and enable the service named “httpd”

How to verify?
$ ps -eaf | grep httpd

ansible localhost -m service -a”name=httpd state=started

Program 5 – Write a Ansible commands to create a file called “index.html” in /var/www/html with some dummy html contents.

How to verify?
Browse http://x.x.x.x:80

ansible localhost -m copy -a”src=index.html dest=/var/www/html/index.html”

Program 6 – Write a Ansible commands to copy a file called “second.html” in /var/www/html/second.html with some dummy html contents.

How to verify?
Browse http://x.x.x.x/second.html

ansible all -i ACS,ARS, -m copy -a”src=index.html dest=/var/www/html/second.html” -u root -k

Program 7 – Write a Ansible commands to install a package called “git”, “wget”.

How to verify?
$ which git
$ which wget

ansible all -m ansible.builtin.package -a “name=git,wget”

Program 8 – Write a Ansible Adhoc commands to clone git repo. https://github.com/scmgalaxy/ansible-role-template.

How to verify?
$ ls

ansible all -m ansible.builtin.git -a”repo=https://github.com/scmgalaxy/ansible-role-template clone=yes”

Program 9 – Write a Ansible commands to reboot a self machine.

– ansible all -m reboot -a “name=reboot”

Program 10 – Write a Ansible commands to touch a file called “devopsschool.txt” in /opt/ and delete after using ansible adhoc command.

-ansible all -m ansible.builtin.file -a “path = /opt/devopsschool.txt state = touch “

-ansible all -m ansible.builtin.file -a “path = /opt/devopsschool.txt state = absent”