From d1eb6e7b98a274129b8862f66665af98000bf000 Mon Sep 17 00:00:00 2001 From: Mayte Ariza Date: Wed, 4 Sep 2019 08:38:43 +0200 Subject: [PATCH] Removed chmod command in entrypoint Former-commit-id: 9460780adb422330b6d61cc3ec21791efc6f904e --- wazuh/config/01-wazuh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wazuh/config/01-wazuh.sh b/wazuh/config/01-wazuh.sh index e0f005b0..56ca5fcf 100644 --- a/wazuh/config/01-wazuh.sh +++ b/wazuh/config/01-wazuh.sh @@ -258,10 +258,10 @@ main() { # Grant proper permissions # When modifiying some files using the Wazuh API (i.e. /var/ossec/etc/ossec.conf), group rw permissions are needed for changes to take place. # https://github.com/wazuh/wazuh/issues/3647 - chmod -R g+rw ${WAZUH_INSTALL_PATH} + #chmod -R g+rw ${WAZUH_INSTALL_PATH} # Files inside /var/ossec/integrations should not have write permissions for group and other. - chmod -R 750 "/var/ossec/integrations/" + #chmod -R 750 "/var/ossec/integrations/" } main