File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
echo " Starting container ..."
5
5
6
6
if [ -n " ${NFS_TARGET} " ]; then
7
- echo " Mounting NFS based on NFS_TARGET"
7
+ echo " Mounting NFS based on NFS_TARGET: ${NFS_TARGET} "
8
8
mount -o nolock -v ${NFS_TARGET} /mnt/restic
9
9
fi
10
10
11
11
if [ ! -f " $RESTIC_REPOSITORY /config" ]; then
12
- echo " Restic repository does not exists. Running restic init."
12
+ echo " Restic repository ' ${RESTIC_REPOSITORY} ' does not exists. Running restic init."
13
13
restic init | true
14
14
fi
15
15
16
- echo " Setup backup cron job with cron expression: ${BACKUP_CRON} "
16
+ echo " Setup backup cron job with cron expression BACKUP_CRON : ${BACKUP_CRON} "
17
17
echo " ${BACKUP_CRON} /bin/backup >> /var/log/cron.log 2>&1" > /var/spool/cron/crontabs/root
18
18
19
19
# Make sure the file exists before we start tail
You can’t perform that action at this time.
0 commit comments