1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
case "$1" in
configure|reconfigure) ;;
*) exit 0 ;;
esac
# add the approx user
adduser --quiet --system --group --no-create-home --home /var/cache/approx approx
# create the approx cache directory if necessary
if [ ! -d /var/cache/approx ]; then
mkdir /var/cache/approx
chown approx:approx /var/cache/approx
fi
if dpkg --compare-versions "$2" lt "4.0"; then
if [ -f /etc/default/approx ]; then
rm -f /etc/default/approx
fi
if [ -f /etc/init.d/approx ]; then
rm -f /etc/init.d/approx
update-rc.d approx remove >/dev/null
fi
fi
#DEBHELPER#
|