🚀 DevOps Certified Professional
📅 Starting: 1st of Every Month 🤝 +91 8409492687 | 🤝 +1 (469) 756-6329 🔍 Contact@DevOpsSchool.com

Ansible Adhoc commands

DevOps

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

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

$ ansible all -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.

$ ansible all -m ansible.builtin.user -a"name=deploy-user shell=/bin/bash group=deploy"

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

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

Program 4 – Write a Ansible Adhoc commands to start and enable the service named “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. 

$ create file index.html dest=/var/www/html/index.html mode=755 state=touch owner=root
dest=/var/www/html/index.html line=’\n

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 all -i 172.20.0.149,172.20.0.122, -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”.

$ install git and wget name=git,wget state=present

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

 $ lone to git repo=https://github.com/scmgalaxy/ansible-role-template clone=yes dest=/tmp/test

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

$ ansible all -m ansible.builtin.reboot -a"name=reboot the machine"