ancient-weatherstation/debian/weatherstation-weatherd.postrm

10 lines
197 B
Bash

#!/bin/sh
#DEBHELPER#
if getent passwd weatherstation >/dev/null 2>&1; then
echo -n "delete user weatherstation ... "
deluser --quiet weatherstation 2>/dev/null || true
echo "done"
fi