mirror of
https://github.com/YunoHost-Apps/borg_ynh.git
synced 2024-09-03 18:16:05 +02:00
Merge pull request #163 from YunoHost-Apps/enh/use-repo-and-logging-env-var
Misc improvements
This commit is contained in:
commit
285999f9ec
6 changed files with 64 additions and 31 deletions
|
@ -5,7 +5,8 @@ borg="__INSTALL_DIR__/venv/bin/borg"
|
|||
app="__APP__"
|
||||
|
||||
BORG_PASSPHRASE="$(yunohost app setting "$app" passphrase)"
|
||||
repo="$(yunohost app setting "$app" repository)" #$4
|
||||
BORG_REPO="$(yunohost app setting "$app" repository)"
|
||||
BORG_LOGGING_CONF="__INSTALL_DIR__/logging.conf"
|
||||
|
||||
if ssh-keygen -F "__SERVER__" >/dev/null ; then
|
||||
BORG_RSH="ssh -i /root/.ssh/id_${app}_ed25519 -oStrictHostKeyChecking=yes "
|
||||
|
@ -17,59 +18,52 @@ do_need_mount() {
|
|||
true
|
||||
}
|
||||
|
||||
LOGFILE=/var/log/backup_borg.err
|
||||
log_with_timestamp() {
|
||||
sed -e "s/^/[$(date +"%Y-%m-%d_%H:%M:%S")] /" | tee -a $LOGFILE
|
||||
}
|
||||
|
||||
do_backup() {
|
||||
export BORG_PASSPHRASE
|
||||
export BORG_REPO
|
||||
export BORG_RSH
|
||||
export BORG_LOGGING_CONF
|
||||
export BORG_RELOCATED_REPO_ACCESS_IS_OK=yes
|
||||
work_dir="$1"
|
||||
name="$2"
|
||||
repo="$3"
|
||||
size="$4"
|
||||
description="$5"
|
||||
current_date=$(date +"%Y-%m-%d_%H:%M")
|
||||
pushd "$work_dir"
|
||||
size="$3"
|
||||
description="$4"
|
||||
set +e
|
||||
if "$borg" init -e repokey "$repo" ; then
|
||||
if ! "$borg" config -l > /dev/null 2>&1; then
|
||||
"$borg" init -e repokey
|
||||
# human_size=`echo $size | awk '{ suffix=" KMGT"; for(i=1; $1>1024 && i < length(suffix); i++) $1/=1024; print int($1) substr(suffix, i, 1), $3; }'`
|
||||
# Speed in Kbps
|
||||
# speed=1000
|
||||
# evaluated_time=$(($size / ($speed * 1000 / 8) / 3600))
|
||||
echo "Hello,
|
||||
|
||||
Your first backup on $repo is starting.
|
||||
Your first backup on $BORG_REPO is starting.
|
||||
|
||||
This is an automated message from your beloved YunoHost server." | /usr/bin/mail.mailutils -a "Content-Type: text/plain; charset=UTF-8" -s "[YNH] First backup is starting" "root"
|
||||
fi
|
||||
set -e
|
||||
|
||||
"$borg" create "$repo::_${name}-${current_date}" ./ 2>&1 >/dev/null | log_with_timestamp
|
||||
popd
|
||||
# About the {now} placeholder:
|
||||
# https://borgbackup.readthedocs.io/en/stable/usage/create.html#description
|
||||
# In the archive name, you may use the following placeholders: {now}, {utcnow}, {fqdn}, {hostname}, {user} and some others.
|
||||
"$borg" create --stats "::${name}-{now}" "$work_dir"
|
||||
|
||||
# About thi _20 it's a crazy fix to avoid pruning wordpress__2
|
||||
# if you prune wordpress
|
||||
"$borg" prune "$repo" -P "_${name}-" --keep-hourly 2 --keep-daily=7 --keep-weekly=8 --keep-monthly=12 2>&1 >/dev/null | log_with_timestamp
|
||||
|
||||
# Prune legacy archive name without error on wordpress/wordpress__2
|
||||
"$borg" prune "$repo" -P "${name}_" --keep-within 2m --keep-monthly=12 2>&1 >/dev/null | log_with_timestamp
|
||||
"$borg" prune --glob-archives "${name}-*" --list --keep-hourly 2 --keep-daily=7 --keep-weekly=8 --keep-monthly=12
|
||||
|
||||
# We prune potential manual backup older than 1 year
|
||||
"$borg" prune "$repo" --keep-within 1y 2>&1 >/dev/null | log_with_timestamp
|
||||
"$borg" prune --list --keep-within 1y
|
||||
}
|
||||
|
||||
do_mount() {
|
||||
export BORG_PASSPHRASE
|
||||
export BORG_REPO
|
||||
export BORG_RSH
|
||||
export BORG_LOGGING_CONF
|
||||
work_dir="$1"
|
||||
name="$2"
|
||||
repo="$3"
|
||||
size="$4"
|
||||
description="$5"
|
||||
"$borg" mount "$repo::$name" "$work_dir" 2>&1 >/dev/null | log_with_timestamp
|
||||
size="$3"
|
||||
description="$4"
|
||||
"$borg" mount "::$name" "$work_dir"
|
||||
}
|
||||
|
||||
work_dir="$2"
|
||||
|
@ -80,13 +74,13 @@ description="$6"
|
|||
|
||||
case "$1" in
|
||||
need_mount)
|
||||
do_need_mount "$work_dir" "$name" "$repo" "$size" "$description"
|
||||
do_need_mount "$work_dir" "$name" "$size" "$description"
|
||||
;;
|
||||
backup)
|
||||
do_backup "$work_dir" "$name" "$repo" "$size" "$description"
|
||||
do_backup "$work_dir" "$name" "$size" "$description"
|
||||
;;
|
||||
mount)
|
||||
do_mount "$work_dir" "$name" "$repo" "$size" "$description"
|
||||
do_mount "$work_dir" "$name" "$size" "$description"
|
||||
;;
|
||||
*)
|
||||
echo "hook called with unknown argument \`$1'" >&2
|
||||
|
|
23
conf/logging.conf
Normal file
23
conf/logging.conf
Normal file
|
@ -0,0 +1,23 @@
|
|||
[loggers]
|
||||
keys=root
|
||||
|
||||
[handlers]
|
||||
keys=logfile
|
||||
|
||||
[formatters]
|
||||
keys=logfile
|
||||
|
||||
[logger_root]
|
||||
level=NOTSET
|
||||
handlers=logfile
|
||||
|
||||
[handler_logfile]
|
||||
class=FileHandler
|
||||
level=INFO
|
||||
formatter=logfile
|
||||
args=('/var/log/__APP__/borg.log', 'a')
|
||||
|
||||
[formatter_logfile]
|
||||
format=%(asctime)s %(levelname)s %(message)s
|
||||
datefmt=
|
||||
class=logging.Formatter
|
|
@ -22,6 +22,9 @@ ynh_backup --src_path="/etc/sudoers.d/$app"
|
|||
ynh_backup --src_path="/root/.ssh/id_${app}_ed25519" --not_mandatory
|
||||
ynh_backup --src_path="/root/.ssh/id_${app}_ed25519.pub" --not_mandatory
|
||||
|
||||
ynh_backup --src_path="$install_dir/backup-with-borg"
|
||||
ynh_backup --src_path="$install_dir/logging.conf"
|
||||
|
||||
#=================================================
|
||||
# END OF SCRIPT
|
||||
#=================================================
|
||||
|
|
|
@ -71,6 +71,9 @@ chown "$app:$app" "$install_dir/backup-with-borg"
|
|||
ynh_add_config --template="sudoer" --destination="/etc/sudoers.d/$app"
|
||||
chown root:root "/etc/sudoers.d/$app"
|
||||
|
||||
ynh_add_config --template="logging.conf" --destination="$install_dir/logging.conf"
|
||||
chown "$app:$app" "$install_dir/logging.conf"
|
||||
|
||||
#=================================================
|
||||
# SYSTEM CONFIGURATION
|
||||
#=================================================
|
||||
|
@ -78,7 +81,7 @@ ynh_script_progression --message="Adding system configurations related to $app..
|
|||
|
||||
# Create a dedicated systemd config
|
||||
ynh_add_systemd_config
|
||||
yunohost service add $app --description="Deduplicating backup program" --test_status="systemctl show $app.service -p ActiveState --value | grep -v failed"
|
||||
yunohost service add $app --description="Deduplicating backup program" --test_status="systemctl show $app.service -p ActiveState --value | grep -v failed" --log "/var/log/$app/borg.log"
|
||||
# Disable the service, this is to prevent the service from being triggered at boot time
|
||||
systemctl disable $app.service --quiet
|
||||
|
||||
|
|
|
@ -37,6 +37,13 @@ chmod go=--- "/etc/yunohost/hooks.d/backup_method/05-${app}_app"
|
|||
ynh_restore_file --origin_path="/etc/sudoers.d/$app"
|
||||
chown root:root "/etc/sudoers.d/$app"
|
||||
|
||||
ynh_restore_file --origin_path="$install_dir/backup-with-borg"
|
||||
chmod u+x "$install_dir/backup-with-borg"
|
||||
chown "$app:$app" "$install_dir/backup-with-borg"
|
||||
|
||||
ynh_restore_file --origin_path="$install_dir/logging.conf"
|
||||
chown "$app:$app" "$install_dir/logging.conf"
|
||||
|
||||
#=================================================
|
||||
# RESTORE SYSTEM CONFIGURATIONS
|
||||
#=================================================
|
||||
|
|
|
@ -93,6 +93,9 @@ chown "$app:$app" "$install_dir/backup-with-borg"
|
|||
ynh_add_config --template="sudoer" --destination="/etc/sudoers.d/$app"
|
||||
chown root:root "/etc/sudoers.d/$app"
|
||||
|
||||
ynh_add_config --template="logging.conf" --destination="$install_dir/logging.conf"
|
||||
chown "$app:$app" "$install_dir/logging.conf"
|
||||
|
||||
#=================================================
|
||||
# REAPPLY SYSTEM CONFIGURATIONS
|
||||
#=================================================
|
||||
|
@ -100,7 +103,7 @@ ynh_script_progression --message="Upgrading system configurations related to $ap
|
|||
|
||||
# Create a dedicated systemd config
|
||||
ynh_add_systemd_config
|
||||
yunohost service add $app --description="Deduplicating backup program" --test_status="systemctl show $app.service -p ActiveState --value | grep -v failed"
|
||||
yunohost service add $app --description="Deduplicating backup program" --test_status="systemctl show $app.service -p ActiveState --value | grep -v failed" --log "/var/log/$app/borg.log"
|
||||
# Disable the service, this is to prevent the service from being triggered at boot time
|
||||
systemctl disable $app.service --quiet
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue