mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
3c52e079f4
svn path=/trunk/icecast/; revision=5190
28 lines
411 B
Bash
28 lines
411 B
Bash
#! /bin/sh
|
|
# preinst script for icecast2
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
install|upgrade)
|
|
if [ "$1" = "upgrade" ]
|
|
then
|
|
start-stop-daemon --stop --quiet --oknodo \
|
|
--exec /usr/bin/icecast2 2>/dev/null || true
|
|
fi
|
|
;;
|
|
|
|
abort-upgrade)
|
|
;;
|
|
|
|
*)
|
|
echo "preinst called with unknown argument \`$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|