Removed chmod command in entrypoint

This commit is contained in:
Mayte Ariza
2019-09-04 08:38:43 +02:00
parent 36e3fa403d
commit 9460780adb
+2 -2
View File
@@ -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