freebsd-ports/sysutils/bacula11-server/files/pkg-deinstall.client.in
Dan Langille b288ebcfaf Add Bacula 11.0.1
NOTE: New Catalog format in version 11.0 and greater
The upgrade process will require more or less twice the
size of the actual database.

see update_bacula_tables

re https://www.bacula.org/bacula-release-11-0-1/

While here, update Bacula 9 conflicts.
2021-02-24 02:33:02 +00:00

30 lines
717 B
Bash

#!/bin/sh
PATH=/bin:/usr/bin:/usr/sbin
# Note how to delete UID/GID
USER=%%BACULA_USER%%
GROUP=%%BACULA_GROUP%%
UID=%%BACULA_UID%%
GID=%%BACULA_UID%%
BACULA_DIR=%%BACULA_DIR%%
TMPFILE=/tmp/services-$RANDOM-$$
case "$2" in
"DEINSTALL")
# Delete entries in /etc/services
sed -e '/# Bacula port start/,/# Bacula port end/{' \
-e 'd' \
-e '}' /etc/services > $TMPFILE
mv -f $TMPFILE /etc/services
if [ -d ${BACULA_DIR} ]; then
echo "Check if ${BACULA_DIR} is empty and delete it to permanently remove the bacula port."
fi
if pw groupshow "${USER}" 2>/dev/null 1>&2; then
echo "To delete Bacula group permanently, use 'pw groupdel ${GROUP}'"
fi
;;
esac