Skip to content

Commit

Permalink
Changes to mongo_manage script to work properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
arooshap committed Oct 20, 2023
1 parent 08f2b84 commit 8d066e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/mongodb/source/mongotools/mongo_manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ restore()
--password="$PASSWORD" \
--db="$dbName"
done
find $BACKUP_DIR -mindepth 1 -maxdepth 1 -type d -ctime +10 | xargs sudo rm -rf;
find $BACKUP_DIR -mindepth 1 -maxdepth 1 -type d -ctime +10 | xargs rm -rf;
}

backup_status()
Expand Down

0 comments on commit 8d066e4

Please sign in to comment.