From 8a1d2b4790b6dd871f37adfa2bb369e80a66f52c Mon Sep 17 00:00:00 2001 From: Charles Gautier <33026375+chgautier@users.noreply.github.com> Date: Thu, 28 Jul 2022 18:27:19 +0200 Subject: [PATCH] Merge release-22.04.1 into 22.04.x (#11453) * fix(packaging): give sufficient rights on .env and .env.local.php debian (#11416) * fix(debian): wrong directory for env files for php (#11425) Co-authored-by: Luiz Costa Co-authored-by: Adrien Morais-Mestre <31647811+adr-mo@users.noreply.github.com> --- ci/debian/centreon-web.postinst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/debian/centreon-web.postinst b/ci/debian/centreon-web.postinst index 8d909ce272a..59f1d40c7ac 100644 --- a/ci/debian/centreon-web.postinst +++ b/ci/debian/centreon-web.postinst @@ -17,6 +17,9 @@ if [ "$1" = "configure" ] ; then chmod -R 0775 \ /usr/share/centreon/www \ /usr/share/centreon/GPL_LIB/SmartyCache + chmod 0664 \ + /usr/share/centreon/.env \ + /usr/share/centreon/.env.local.php fi