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
|
2020-11-17 16:40:53 +01:00
|
|
|
line: "{{ nginx_repository | default(nginx_default_repository_alpine) }}"
|
2021-06-14 16:57:18 +02:00
|
|
|
when: nginx_manage_repo | bool
|
2020-09-15 21:27:06 +02:00
|
|
|
|
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('') }}"
|
2020-11-17 16:40:53 +01:00
|
|
|
repository: "{{ nginx_repository | default(nginx_default_repository_alpine) }}"
|
2020-09-15 21:27:06 +02:00
|
|
|
state: "{{ nginx_state }}"
|
2021-06-02 17:47:44 +02:00
|
|
|
update_cache: true
|
2020-10-28 20:12:57 +01:00
|
|
|
ignore_errors: "{{ ansible_check_mode }}"
|
2020-09-19 17:32:17 +02:00
|
|
|
notify: (Handler) Run NGINX
|