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.
- Write a Ansible Adhoc Commands to create a group called âdeploy
ansible localhost -m ansible.builtin.group -a”state=present name=deploy” -b
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 ansible.builtin.user -a”state=present name=deploy-user group=deploy” -b
3. Write a Ansible Adhoc commands install package named âhttpdâ in RHEL/centos.
ansible localhost -m yum -a”state=present name=httpd” -b
4. Write a Ansible Adhoc commands to start and enable the service named âhttpdâ
ansible localhost -m service -a”state=started name=httpd” -b
ansible localhost -m service -a”state=enable name=httpd” -b
5. Write a Ansible commands to create a file called âindex.htmlâ in /var/www/html with some dummy html contents.
ansible localhost -m ansible.builtin.file -a”path=/var/www/html” -b
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 copy -a”dest=/var/www/html src=second.html”-b
7. Write a Ansible commands to install a package called âgitâ, âwgetâ.
ansible localhost -m yum -a”state=present name=git” -b
ansible localhost -m yum -a”state=present name=wget” -b
8. Write a Ansible Adhoc commands to clone git repo. https://github.com/scmgalaxy/ansible-role-template.
ansible localhost -m ansible.builtin.git -a”repo=https://github.com/scmgalaxy/ansible-role-template dest=/home/centos/priyanka clone=yes” -b
9. Write a Ansible commands to reboot a self machine.
ansible localhost -m reboot
10. Write a Ansible commands to touch a file called âdevopsschool.txtâ in /opt/ and delete after using ansible adhoc command.