Private GIT

Skip to content
Snippets Groups Projects
Commit 137260cd authored by Laurent Pinsivy's avatar Laurent Pinsivy Committed by GitHub
Browse files

Fix #5221 #5224

parent c31ef9b3
No related branches found
No related tags found
No related merge requests found
...@@ -452,9 +452,9 @@ class CentreonConfigPoller { ...@@ -452,9 +452,9 @@ class CentreonConfigPoller {
chown($file, $apacheUser); chown($file, $apacheUser);
chgrp($file, $grp['name']); chgrp($file, $grp['name']);
if (is_dir($file)) { if (is_dir($file)) {
chmod($file, 02775); chmod($file, 02770);
} else { } else {
chmod($file, 664); chmod($file, 0775);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment