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

33 lines
1.1 KiB
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
- name: (Debian/Ubuntu) {{ (nginx_setup == 'uninstall') | ternary('Remove', 'Configure') }} NGINX repository
2020-09-15 21:27:06 +02:00
apt_repository:
filename: nginx
repo: "{{ item }}"
update_cache: true
2020-09-15 21:27:06 +02:00
mode: 0644
state: "{{ (nginx_state == 'uninstall') | ternary('absent', 'present') }}"
loop: "{{ nginx_repository | default(nginx_default_repository_debian) }}"
when: nginx_manage_repo | bool
2020-09-15 21:27:06 +02:00
- name: (Debian/Ubuntu) {{ (nginx_setup == 'uninstall') | ternary('Unpin', 'Pin') }} NGINX repository
blockinfile:
path: /etc/apt/preferences.d/99nginx
create: true
block: |
Package: *
Pin: origin nginx.org
Pin: release o=nginx
Pin-Priority: 900
mode: 0644
state: "{{ (nginx_state == 'uninstall') | ternary('absent', 'present') }}"
when: nginx_repository is not defined
- name: (Debian/Ubuntu) {{ nginx_setup | capitalize }} NGINX
2020-09-15 21:27:06 +02:00
apt:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
2021-12-09 21:40:57 +01:00
update_cache: true
allow_downgrade: "{{ omit if ansible_version.full is version('2.12', '<') else true }}"
ignore_errors: "{{ ansible_check_mode }}"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX