File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ if [ $(id -u) == 0 ] ; then
50
50
# Handle case where provisioned storage does not have the correct permissions by default
51
51
# Ex: default NFS/EFS (no auto-uid/gid)
52
52
if [[ " $CHOWN_HOME " == " 1" || " $CHOWN_HOME " == ' yes' ]]; then
53
- echo " Changing ownership of /home/$NB_USER to $NB_UID :$NB_GID "
53
+ echo " Changing ownership of /home/$NB_USER to $NB_UID :$NB_GID with options ' ${CHOWN_HOME_OPTS} ' "
54
54
chown $CHOWN_HOME_OPTS $NB_UID :$NB_GID /home/$NB_USER
55
55
fi
56
56
if [ ! -z " $CHOWN_EXTRA " ]; then
57
57
for extra_dir in $( echo $CHOWN_EXTRA | tr ' ,' ' ' ) ; do
58
- echo " Changing ownership of ${extra_dir} to $NB_UID :$NB_GID "
58
+ echo " Changing ownership of ${extra_dir} to $NB_UID :$NB_GID with options ' ${CHOWN_EXTRA_OPTS} ' "
59
59
chown $CHOWN_EXTRA_OPTS $NB_UID :$NB_GID $extra_dir
60
60
done
61
61
fi
You can’t perform that action at this time.
0 commit comments