Something went wrong on our end
-
Nicolas KAROLAK authoredNicolas KAROLAK authored
_install.yml 235 B
---
- name: remove apache
apt:
force_apt_get: true
name: apache2
state: absent
- name: nginx install
apt:
force_apt_get: true
install_recommends: false
name: "{{ nginx_packages }}"
state: present
...