Update to 2022-02-08 18:00

This commit is contained in:
Daniel Berteaud 2022-02-08 18:00:05 +01:00
parent ee214f52e2
commit ae1985cbdd
2 changed files with 10 additions and 1 deletions

View File

@ -40,6 +40,15 @@
when: glpi_install_mode != "none"
tags: glpi
- name: Remove automatic GLPI signature
lineinfile:
path: "{{ glpi_root_dir }}/web/inc/notificationtemplate.class.php"
regexp: '^(.*)Automatically generated by GLPI(.*)$'
line: '\1\2'
backrefs: True
loop: [1,2,3,4,5] # Ensure every occurrences are removed
tags: glpi
- name: Remove unwanted files and directories
file: path={{ glpi_root_dir }}/web/{{ item }} state=absent
with_items:

View File

@ -1,7 +1,7 @@
---
# Synapse version to deploy
synapse_version: 1.51.0
synapse_version: 1.52.0
# Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True