Ansible Playbook for installing the sample HTTPD server in Linux server - Tecnew

Home Ads

Ansible Playbook for installing the sample HTTPD server in Linux server

Ansible Playbook for installing the sample HTTPD server in Linux server

Share This

 ---

- hosts: websrvr

  become: true

  tasks:

         - name: Installing the HTTPD Server

           yum:

                name: httpd

                state: present

         - name: Starting the HTTPD Server

           service: 

                name: httpd

                state: started

                enabled: yes 

No comments:

Post a Comment