You are Browsing Playbooks News

by admin 4 years ago

Playbook to install httpd package

Playbook to install and start the httpd service --- - hosts: ansiblenode2 become: yes tasks: - name: install httpd yum: name: httpd state: latest - name: start and enable httpd service: name:...