Explorar el Código

Fix Bug:#83904 Corrected permissions on config directory for HPCC.

Permissions for a group member to access a folder owned by another user
that has group rights must be 775 in order to write new files to the
directory.

The default permissions set when creating a directory are 755
which allows group members to read and execute items in the directory, but
not create new files.

Signed-off-by: Philip Schwartz <philip.schwartz@lexisnexis.com>
Philip Schwartz hace 14 años
padre
commit
955d36eff6
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      initfiles/bash/etc/init.d/install-init.in

+ 1 - 0
initfiles/bash/etc/init.d/install-init.in

@@ -234,3 +234,4 @@ fi
 
 chown root:$group ${configs}
 chown -R $user:$group ${configs}/*
+chmod 775 ${configs}