CORRECT TEXT

CORRECT TEXT Create a playbook called issue.yml in /home/sandy/ansible which changes the file /etc/issue on all managed nodes: If host is a member of (lev then write "Development" If host is a member of test then write "Test" If host is a member of prod then write "Production"View AnswerAnswer: Solution...

January 16, 2021 No Comments READ MORE +

CORRECT TEXT

CORRECT TEXT Create a file called packages.yml in/home/sandy/ansibleto install somepackages for the following hosts. On dev, prod and webservers install packages httpd, mod_ssl, and mariadb. On dev only install the development tools package. Also, on dev host update all the packages to the latest.View AnswerAnswer: Solution as: ** NOTE 1...

January 15, 2021 No Comments READ MORE +

CORRECT TEXT

CORRECT TEXT Create a file called specs.empty in home/bob/ansible on the local machine as follows: HOST= MEMORY= BIOS= VDA_DISK_SIZE= VDB_DISK_SIZE= Create the playbook /home/bob/ansible/specs.yml which copies specs.empty to all remote nodes' path/root/specs.txt. Using the specs.yml playbook then edit specs.txt on the remote machines to reflect the appropriate ansible facts.View AnswerAnswer:...

January 12, 2021 No Comments READ MORE +

CORRECT TEXT

CORRECT TEXT Create a file called mysecret.yml on the control host using ansible vault in home/bob/ansible. Set the password to 'notasafepass' and inside the file create a variable called dev_pass with the value of devops. Save the file. Then go back in the file and change dev_pass value to devops123....

January 10, 2021 No Comments READ MORE +

CORRECT TEXT

CORRECT TEXT Create a jinja template in /home/sandy/ansible/ and name it hosts.j2. Edit this file so it looks like the one below. The order of the nodes doesn't matter. Then create a playbook in /home/sandy/ansiblecalledhosts.ymland install the template on dev node at /root/myhosts View AnswerAnswer: Solution as:

January 10, 2021 No Comments READ MORE +

CORRECT TEXT

CORRECT TEXT Create a role called sample-apache and store it in /home/bob/ansible/roles. The role should satisfy the following requirements: *In the role, install and enable httpd. Also enable the firewall to allow http. Also run the template *index.html.j2 and make sure this runs Create a template index.html.j2 that displays "Welcome...

January 8, 2021 No Comments READ MORE +