udevil/distros/debian/postinst

42 lines
1023 B
Plaintext
Raw Normal View History

2012-05-23 01:52:47 +08:00
#! /bin/sh
set -e
case "$1" in
configure)
2012-05-30 23:25:09 +08:00
if [ ! -e /media ]; then
mkdir /media
fi
2012-05-23 01:52:47 +08:00
2012-05-30 23:25:09 +08:00
# confine udevil execution to plugdev group members?
UDEVIL_USE_PLUGDEV=0
if [ $UDEVIL_USE_PLUGDEV -ne 0 ]; then
for prog in /usr/bin/udevil; do
if ! dpkg-statoverride --list $prog > /dev/null; then
if ! getent group plugdev > /dev/null; then
addgroup --quiet --system plugdev || true
fi
chown root:plugdev $prog
chmod 4754 $prog
fi
done
else
chmod 4755 /usr/bin/udevil
fi
2012-05-23 01:52:47 +08:00
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
2012-05-30 23:25:09 +08:00
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
2012-05-23 01:52:47 +08:00
#DEBHELPER#
exit 0