Ansible Adhoc Commands
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
Write a Ansible Adhoc Commands to create a group called “deploy“
$ ansible all -m ansible.builtin.group -a”name=deploy state=present”
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”
Write a Ansible Adhoc commands to start and enable the service named “httpd”
$ansible all -m ansible.builtin.service -a “name=httpd state=started”
Write a Ansible commands to install a package called “git”, “wget”.
$ansible all -m ansible.builtin.package -a “name=git state=”lastest”
$ansible all -m ansible.builtin.package -a “name=wget state=”lastest”
Write a Ansible Adhoc commands install package named “httpd” in RHEL/centos.
$ ansible localhost -m yum -a”name=httpd state=present”
Write a Ansible commands to reboot a self machine.
$ansible all -m ansible.builtin.reboot -a “reboot=”
Write a Ansible commands to copy a file called “second.html” in /var/www/html/second.html with some dummy html contents.
ansible all -m copy -a”src=second.html dest=/var/www/html/second.html” -u root -K
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”
$vi index.html
Write a Ansible Adhoc commands to clone git repo. https://github.com/scmgalaxy/ansible-role-template.
$ ansible all -m ansible.builtin.git -a”repo=https://github.com/scmgalaxy/ansible-role-template. clone =yes”
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 “