Removed chmod command in entrypoint

Former-commit-id: 9460780adb
This commit is contained in:
Mayte Ariza
2019-09-04 08:38:43 +02:00
parent 6656fddf70
commit d1eb6e7b98

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