This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
wcsinst/debian/wcsinstd.postrm

15 lines
175 B
Bash

#!/bin/sh
# postrm script for passerelle
#
# see: dh_installdeb(1)
set -e
case "$1" in purge)
deluser --quiet --system wcsinstd > /dev/null || true
;;
esac
exit 0