ansible-role-nginx/tasks/opensource/install-alpine.yml
2020-10-28 20:12:57 +01:00

16 lines
408 B
YAML

---
- name: (Alpine Linux) Configure NGINX repository
lineinfile:
path: /etc/apk/repositories
insertafter: EOF
line: "{{ repository }}"
- name: (Alpine Linux) Install NGINX
apk:
name: "nginx{{ nginx_version | default('') }}"
repository: "{{ repository }}"
state: "{{ nginx_state }}"
update_cache: yes
ignore_errors: "{{ ansible_check_mode }}"
notify: (Handler) Run NGINX