udevil/distros/debian/postinst
2013-02-11 06:22:43 -07:00

42 lines
1023 B
Bash
Executable File

#! /bin/sh
set -e
case "$1" in
configure)
if [ ! -e /media ]; then
mkdir /media
fi
# 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
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0