mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 13:40:34 -04:00
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>
21 lines
653 B
Bash
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
|