ansible-role-nginx/tasks/plus/install-alpine.yml
2020-09-19 17:32:17 +02:00

15 lines
419 B
YAML

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