2024-09-19 23:10:00 +02:00
|
|
|
---
|
|
|
|
- name: Update apt cache
|
2024-10-08 11:31:26 +02:00
|
|
|
ansible.builtin.apt:
|
|
|
|
update_cache: true
|
2024-09-19 23:10:00 +02:00
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Install Nginx
|
2024-10-08 11:31:26 +02:00
|
|
|
ansible.builtin.apt:
|
2024-09-19 23:10:00 +02:00
|
|
|
name:
|
|
|
|
- nginx-full
|
|
|
|
state: present
|
|
|
|
become: true
|