1
0
Fork 0
frr/debian/frr.postrm
Daniel Baumann 5c8cf7dd3d
Making maintainer scripts executable in debian directory.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 10:16:12 +01:00

15 lines
306 B
Bash
Executable file

#!/bin/sh
set -e
rm -f /etc/frr/.pkg.frr.nointegrated
if [ "$1" = "purge" ]; then
rm -rf /run/frr || true
rm -rf /var/lib/frr || true
# "purge" does not remove logfiles. therefore we shouldn't delete
# the "frr" user/group since that would leave files with "dangling"
# ownership.
fi
#DEBHELPER#