File tree 2 files changed +5
-14
lines changed
base/scripts/usr/local/bin
2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 6
6
7
7
if [ " $( ls -A " /home/jovyan" 2> /dev/null) " == " " ]; then
8
8
_log " Populating home dir /home/jovyan..."
9
- if [ " $( id -u) " == 0 ] ; then
10
- if su $NB_USER -c " cp -a /var/backups/skel/. /home/jovyan" ; then
11
- _log " Success!"
12
- else
13
- _log " Failed to copy data from /var/backups/skel to /home/jovyan!"
14
- exit 1
15
- fi
9
+ if cp -a /var/backups/skel/. /home/jovyan; then
10
+ _log " Success!"
16
11
else
17
- if cp -a /var/backups/skel/. /home/jovyan; then
18
- _log " Success!"
19
- else
20
- _log " Failed to copy data from /var/backups/skel to /home/jovyan!"
21
- exit 1
22
- fi
12
+ _log " Failed to copy data from /var/backups/skel to /home/jovyan!"
13
+ exit 1
23
14
fi
24
15
fi
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ if [ "$(id -u)" == 0 ] ; then
128
128
# The home directory could be bind mounted. Populate it if it is empty
129
129
elif [[ " $( ls -A " /home/${NB_USER} " 2> /dev/null) " == " " ]]; then
130
130
_log " Populating home dir /home/${NB_USER} ..."
131
- if su $NB_USER -c " cp -a /home/jovyan/. /home/${NB_USER} /" ; then
131
+ if cp -a /home/jovyan/. " /home/${NB_USER} /" ; then
132
132
_log " Success!"
133
133
else
134
134
_log " Failed to copy data from /home/jovyan to /home/${NB_USER} !"
You can’t perform that action at this time.
0 commit comments