1
0
Fork 0
gnome-initial-setup/debian/postrm
Daniel Baumann e414215ac4
Adding debian version 48.1-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 23:03:10 +02:00

13 lines
331 B
Bash

#!/bin/sh
set -e
if [ "$1" = "purge" ] ; then
if getent passwd gnome-initial-setup >/dev/null; then
if which deluser >/dev/null 2>&1; then
deluser --system gnome-initial-setup || echo "Could not remove gnome-initial-setup user."
fi
fi
fi
#DEBHELPER#
exit 0