evolinux-todo: execute tasks only for Debian distribution (because this task is a dependency for others roles used on different distributions)
gitea/ansible-roles/pipeline/head This commit looks good Details

This commit is contained in:
Jérémy Dubois 2022-10-17 11:37:58 +02:00
parent 05e782c6f8
commit 6be2ff3b48
2 changed files with 3 additions and 0 deletions

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"