Release 22.12 #165

Merged
jlecour merged 76 commits from unstable into stable 2022-12-14 12:02:46 +01:00
2 changed files with 16 additions and 1 deletions
Showing only changes of commit ecd9d1543f - Show all commits

View file

@ -31,6 +31,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* redis: some values should be quoted
* redis: variable to disable transparent hugepage (default: do nothing)
* squid: whitelist deb.freexian.com
* varnish: better package facts usage with check mode and tags
* varnish: systemd override depends on Varnish version instead of Debian version
### Fixed

View file

@ -9,13 +9,27 @@
- name: Fetch packages
package_facts:
manager: auto
check_mode: no
tags:
- varnish
- config
- update-config
- set_fact:
varnish_package_facts: ansible_facts.packages['varnish'] | first
varnish_package_facts: "{{ ansible_facts.packages['varnish'] | first }}"
check_mode: no
tags:
- varnish
- config
- update-config
# - debug:
# var: varnish_package_facts
# check_mode: no
# tags:
# - varnish
# - config
# - update-config
- name: Remove default varnish configuration files
file: