evolinux-base: Don't make alert5.service executable
All checks were successful
continuous-integration/drone/push Build is passing

Every 3 mins, systemd complain that the service file is marked as
executable, and asks the executable bit to be remove.

Nov 27 01:35:11 foo systemd[1]: Configuration file /etc/systemd/system/alert5.service is marked executable. Please remove executable permission bits. Proceeding anyway.
This commit is contained in:
Ludovic Poujol 2019-11-28 10:59:29 +01:00
parent 0e58f34e18
commit 6e918d166e
Signed by: lpoujol
GPG key ID: 6F563E6A4DD5DCEF
2 changed files with 2 additions and 1 deletions

View file

@ -64,6 +64,7 @@ The **patch** part changes incrementally at each release.
* tomcat: fix typo for default tomcat_version
* evolinux-base: Fix our zsyslog rotate config that doesn't work on Debian 10
* certbot: Properly evaluate when apache is installed
* evolinux-base: Don't make alert5.service executable as systemd will complain
### Security

View file

@ -160,7 +160,7 @@
src: alert5.service
dest: /etc/systemd/system/alert5.service
force: yes
mode: "0755"
mode: "0644"
when:
- evolinux_system_alert5_init
- ansible_distribution_major_version | version_compare('10', '>=')