Basic Commands In Ansible

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

$ ansible -m groupadd -a”name=deploy “

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 -m usseradd -a”name=deploy-user group=deploy”

3. Ansible Adhoc commands install package named “httpd” in RHEL/centos.

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

 4. Ansible Adhoc commands to start and enable the service named “httpd”

$ ansible localhost -m service -a”name=httpd state=started enabled=yes”

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 copy -a”src=index.html dest=/var/www/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 copy -a”src=second.html destination=/var/www/html/second.html

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

$ ansible all -m ansible.builtin.git -a”name=git”

$ ansible all -m ansible.builtin.git -a”name=wget”

Program 8 – 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”

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

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