mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
23 lines
378 B
Plaintext
23 lines
378 B
Plaintext
|
#! /bin/sh
|
||
|
# postrm script for icecast2
|
||
|
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
purge)
|
||
|
rm -rf /var/log/icecast2
|
||
|
deluser --system --quiet icecast2 || true
|
||
|
delgroup --system --quiet --only-if-empty icecast || true
|
||
|
;;
|
||
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||
|
|
||
|
;;
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|