ansible-role-nginx/tasks/opensource/install-alpine.yml

15 lines
364 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
2020-09-19 17:32:17 +02:00
- name: (Alpine Linux) Configure NGINX repository
2020-09-15 21:27:06 +02:00
lineinfile:
path: /etc/apk/repositories
insertafter: EOF
line: "{{ repository }}"
2020-09-19 17:32:17 +02:00
- name: (Alpine Linux) Install NGINX
2020-09-15 21:27:06 +02:00
apk:
name: "nginx{{ nginx_version | default('') }}"
repository: "{{ repository }}"
state: "{{ nginx_state }}"
update_cache: yes
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX