ansible/roles/phone-provisioning/tasks/install_apache2.yml

11 lines
234 B
YAML
Raw Normal View History

- name: Install Apache2 HTTP server
ansible.builtin.apt:
name: apache2
update_cache: true
state: latest
- name: Start Apache2 HTTP server
ansible.builtin.service:
name: apache2
state: started
enabled: true