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

17 lines
540 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: "{{ nginx_repository | default(nginx_default_repository_alpine) }}"
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('') }}"
repository: "{{ nginx_repository | default(nginx_default_repository_alpine) }}"
2020-09-15 21:27:06 +02:00
state: "{{ nginx_state }}"
update_cache: true
ignore_errors: "{{ ansible_check_mode }}"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX