evolinux-base: utils.yml can be excluded
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
Jérémy Lecour 2022-10-11 13:37:21 +02:00 committed by Jérémy Lecour
parent 4f9d6868e0
commit 2d16aeb41e
4 changed files with 17 additions and 5 deletions

View file

@ -14,6 +14,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Changed ### Changed
* evolinux-base: utils.yml can be excluded
* evolinux-user: Add sudoers privilege for chck php\_fpm81 * evolinux-user: Add sudoers privilege for chck php\_fpm81
* java: use default JRE package when version is not specified * java: use default JRE package when version is not specified
* lxc-solr: download URL according to Solr Version * lxc-solr: download URL according to Solr Version

View file

@ -224,3 +224,6 @@ evolinux_cron_checkhpraid_frequency: daily
# Motd # Motd
evolinux_motd_include: True evolinux_motd_include: True
# Utils
evolinux_utils_include: True

View file

@ -102,6 +102,7 @@
when: evolinux_motd_include | bool when: evolinux_motd_include | bool
- include: utils.yml - include: utils.yml
when: evolinux_utils_include | bool
- name: Munin - name: Munin
include_role: include_role:
@ -132,7 +133,3 @@
include_role: include_role:
name: evolix/generate-ldif name: evolix/generate-ldif
when: evolinux_generateldif_include | bool when: evolinux_generateldif_include | bool
- include: top.yml
- include: htop.yml

View file

@ -37,4 +37,15 @@
# force: True # force: True
# owner: root # owner: root
# group: root # group: root
# mode: "0755" # mode: "0755"
- name: Deploy htop configuration
copy:
src: htoprc
dest: /etc/htoprc
mode: "0644"
- name: Deploy top configuration file
file:
path: /etc/topdefaultrc
state: absent