ansible-course/01-first-playbook/install_apache.yml
2024-07-12 22:31:00 -04:00

19 lines
339 B
YAML

---
- hosts: all
become: true
tasks:
- name: Update repository index
ansible.builtin.apt:
update_cache: yes
- name: Install apache2 package
ansible.builtin.apt:
name: apache2
state: latest
- name: Install support for php
ansible.builtin.apt:
name: libapache2-mod-php
state: latest