ports/sysutils/backuppc-devel/files/pkg-deinstall.in
Kurt Jaeger 8c87610bf5 New port: sysutils/backuppc-devel
BackupPC is a high-performance, enterprise-grade system for backing up
Linux, WinXX and MacOSX PCs and laptops to a server's disk.
BackupPC is highly configurable and easy to install and maintain.

WWW: http://backuppc.sourceforge.net

This is Version 4.0.0alpha3, please use with caution. On the other
hand, it is 10 month old, and the submitter is also the maintainer of
sysutils/backuppc.

PR:		183241
Submitted by:	Alexander Moisseev <moiseev@mezonplus.ru>
2014-10-23 17:48:35 +00:00

21 lines
653 B
Bash

#! /bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
echo
echo "======================================================================="
echo " If you are permanently removing BackupPC, you should manually delete:"
echo " - the backuppc user/group: pw userdel backuppc"
if [ -d %%ETCDIR%% ]; then
echo " - BackupPC configuration: rm -r %%ETCDIR%%"
fi
if [ -d /var/db/BackupPC ]; then
echo " - BackupPC data directory: rm -r /var/db/BackupPC"
fi
if [ -d /var/log/BackupPC ]; then
echo " - BackupPC logs directory: rm -r /var/log/BackupPC"
fi
echo "======================================================================="
echo