Ansible Adhoc Commands Excercise –

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

  • Write a Ansible Adhoc Commands to create a group called “deploy :
$ ansible all -m ansible.builtin.group -a"name=deploy state=present"Code language: JavaScript (javascript)
  • 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"Code language: JavaScript (javascript)
  • Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos.
$ ansible localhost -m yum -a"name=httpd state=present"Code language: JavaScript (javascript)
  • Write a Ansible Adhoc commands to start and enable the service named “httpd”
$ ansible localhost -m service -a"name=httpd state=started
  • Write a Ansible commands to create a file called “index.html” in /var/www/html with some dummy html contents.
$ ansible localhost -m copy -a"src=index.html dest=/var/www/html/index.html"Code language: JavaScript (javascript)
  • 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 -kCode language: JavaScript (javascript)
  • Write a Ansible commands to install a package called “git”, “wget”.
$ ansible all -m ansible.builtin.git -a"name=git"Code language: JavaScript (javascript)