mirror of
https://github.com/lobaro/restic-backup-docker.git
synced 2026-03-21 22:32:44 +00:00
corrected check status
This commit is contained in:
7
entry.sh
7
entry.sh
@@ -19,9 +19,12 @@ echo "Check Repo status $status"
|
||||
|
||||
if [ $status != 0 ]; then
|
||||
echo "Restic repository '${RESTIC_REPOSITORY}' does not exists. Running restic init."
|
||||
restic init | true
|
||||
restic init
|
||||
|
||||
if [ $? != 0 ]; then
|
||||
init_status=$?
|
||||
echo "Repo init status $init_status"
|
||||
|
||||
if [ $init_status != 0 ]; then
|
||||
echo "Failed to init the repository: '${RESTIC_REPOSITORY}'"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user