Debug School

Subhash Konduru
Subhash Konduru

Posted on

Ansible Adhoc Commands Lab & Excercise – Part 1

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

ansible localhost -m 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.

ansible localhost -m user -a "name=deploy-user shell=/bin/bash groups=deploy"

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

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

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

ansible localhost -m service -a "name=httpd state=stopped enabled=no"

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

ansible localhost -m shell -a " echo '<h1>hello</h1>' > /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.

ansible localhost -m shell -a " echo '<h1>hello</h1>' >second.html && cp second.html /var/www/html/"

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

ansible localhost -m shell -a "yum install git wget"

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

ansible localhost -m git -a "repo=https://github.com/scmgalaxy/ansible-role-template clone=yes dest=/var/www/html/myrepo"

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

ansible localhost -m reboot

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

ansible localhost -m shell -a " echo 'hello' > /opt/devopsschool.txt && rm /opt/devopsschool.txt -f"

Top comments (0)