borgmatic-base/scripts/os_debian

73 lines
1.7 KiB
Plaintext
Raw Normal View History

2021-09-04 09:17:00 -04:00
#!/bin/bash
restoreDir="/etc/restore"
2023-09-17 16:43:29 -04:00
function is_bin_in_path {
builtin type -P "$1" &>/dev/null
}
2021-09-04 09:17:00 -04:00
hook_check() {
2023-09-17 16:43:29 -04:00
if ! is_bin_in_path aptitude; then
echo "aptitude needs to be installed for backups to work properly."
exit 1
fi
2021-09-04 09:17:00 -04:00
}
hook_pre() {
mkdir -p "$restoreDir" || exit 1
pushd "$restoreDir" || exit 2
dpkg --get-selections > Package.list
aptitude search --disable-columns -F%p '~i!~M!~v' > InstallOnly.list
#apt-key exportall > /etc/restore/Repo.keys
2023-09-17 16:43:29 -04:00
cp -a /etc/apt/sources.list "$restoreDir/"
rsync -avhHi /etc/apt/sources.list.d "$restoreDir/"
rsync -avhHi /etc/apt/trusted.gpg.d "$restoreDir/"
2021-09-04 09:17:00 -04:00
cat > restore.sh <<EOF
#!/bin/bash
if [[ ! -f "InstallOnly.list" ]]; then
echo "This needs to be run inside the restore directory."
exit 1
fi
if [[ ! -d "trusted.gpg.d" ]]; then
echo "This needs to be run inside the restore directory."
exit 1
fi
#apt-key add /etc/restore/Repo.keys
#dpkg --set-selections < /etc/restore/Package.list
#apt-get dselect-upgrade
install=""
dpkg-query -l 'rsync' &>/dev/null || install+=" rsync"
dpkg-query -l 'aptitude' &>/dev/null || install+=" aptitude"
dpkg-query -l 'borgbackup' &>/dev/null || install+=" borgbackup"
dpkg-query -l 'borgmatic' &>/dev/null || install+=" borgmatic"
if [[ -n "\$install" ]]; then
apt -y install \$install
fi
2023-09-17 16:43:29 -04:00
rsync --ignore-existing -raz sources.list.d/ /etc/apt/sources.list.d/
2021-09-04 09:17:00 -04:00
rsync --ignore-existing -raz trusted.gpg.d/ /etc/apt/trusted.gpg.d/
xargs aptitude --schedule-only install < InstallOnly.list
aptitude install
EOF
popd || exit 2
}
hook_post() {
:
2021-09-04 09:17:00 -04:00
}
case "$1" in
before_check) hook_check || exit $?;;
before_backup) hook_pre || exit $?;;
after_backup) hook_post || exit $?;;
esac