Ansible Playbook for installing the sample HTTPD server in Linux server Author 21:41 0 --- - hosts: websrvr become: true tasks: - name: Installing the HTTPD Server yum: name: httpd ... Read More
Installing Jenkins through Ansible play book Author 06:59 0 --- - hosts: web01 become: yes tasks: - name: install openjdk apt: name: openjdk-8-jdk state: present - n... Read More