Files
systemback/debian/libsystemback.postrm
2021-04-14 16:09:07 +09:00

21 lines
663 B
Bash

#!/bin/sh -e
if [ "$1" = purge ] && [ -d /etc/systemback ]
then
echo "Deleting Systemback configuration files ..."
if [ -f /etc/systemback/systemback.conf ]
then
sdir="$(grep ^storage_directory= /etc/systemback/systemback.conf | tail -c +19)"
rm /etc/systemback/systemback.conf
if [ "$sdir" ] && [ -d "$sdir"/Systemback ] && [ ! -d "$sdir"/Systemback/S01_* ] && [ ! -d "$sdir"/Systemback/H01_* ]
then
[ ! -e "$sdir"/Systemback/.sbschedule ] || rm "$sdir"/Systemback/.sbschedule
! rm -d "$sdir"/Systemback 2>/dev/null || echo "Deleting empty Systemback storage directory ..."
fi
fi
rm -r /etc/systemback
fi
#DEBHELPER#