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 3 additions and 0 deletions
Showing only changes of commit 6be2ff3b48 - Show all commits

View file

@ -22,6 +22,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* lxc-solr: set homedir and port at install
* minifirewall: whitelist deb.freexian.com
* squid: whitelist deb.freexian.com
* evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions)
### Fixed

View file

@ -5,6 +5,7 @@
dest: /etc/evolinux
mode: "0700"
state: directory
when: ansible_distribution == "Debian"
- name: /etc/evolinux/todo.txt is present
copy:
@ -12,3 +13,4 @@
dest: /etc/evolinux/todo.txt
mode: "0640"
force: no
when: ansible_distribution == "Debian"