Compare commits

...

2 Commits

Author SHA1 Message Date
Clemens Schwaighofer
ab47692848 borg backup default settings file sample update 2024-09-04 10:37:36 +09:00
Clemens Schwaighofer
4267cb5b32 Bug Fix in gitea backup for temp dir check 2024-09-04 10:37:16 +09:00
2 changed files with 5 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ if [ -z "${GITEA_WORKING_DIR}" ]; then
GITEA_WORKING_DIR="/var/tmp/gitea/"; GITEA_WORKING_DIR="/var/tmp/gitea/";
fi; fi;
# general temp folder for temporary data storage, this is not working output folder # general temp folder for temporary data storage, this is not working output folder
if [ -z "${GITEA_TEMP_DIR}"]; then if [ -z "${GITEA_TEMP_DIR}" ]; then
GITEA_TEMP_DIR="/var/tmp"; GITEA_TEMP_DIR="/var/tmp";
fi; fi;
if [ -z "${GITEA_BIN}" ]; then if [ -z "${GITEA_BIN}" ]; then

View File

@@ -40,12 +40,15 @@ COMPACT_INTERVAL="";
# if set to 1 then every time the script runs # if set to 1 then every time the script runs
# any other value it means ever n days, eg 90 would be every 90 days # any other value it means ever n days, eg 90 would be every 90 days
CHECK_INTERVAL=""; CHECK_INTERVAL="";
# default is %Y-%m-%d # default is {now:%Y-%m-%d}
# todays date, if more than one per day add -%H%M for hour/minute # todays date, if more than one per day add -%H%M for hour/minute
# it can also be "{hostname}-{user}-{now:%Y-%m-%dT%H:%M:%S.%f}" # it can also be "{hostname}-{user}-{now:%Y-%m-%dT%H:%M:%S.%f}"
BACKUP_SET=""; BACKUP_SET="";
# prune times, how many are kept in each time frame # prune times, how many are kept in each time frame
KEEP_LAST="";
KEEP_HOURS="";
KEEP_DAYS=""; KEEP_DAYS="";
KEEP_WEEKS=""; KEEP_WEEKS="";
KEEP_MONTHS=""; KEEP_MONTHS="";
KEEP_YEARS=""; KEEP_YEARS="";
KEEP_WITHIN="";