home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- everything() {
- # set ownership for ppp options files
- for f in /etc/ppp/peers/barry-*
- do
- chown root:dip "$f"
- done
-
- # set permissions for chatscripts
- for f in /etc/chatscripts/barry-*.chat
- do
- chown root:dip "$f"
- chmod 0640 "$f"
- done
- }
-
- case "$1" in
- configure)
- everything
-
- if [ -e "/etc/modprobe.d/blacklist-berry_charge" ]; then
- echo "Preserving user changes to /etc/modprobe.d/blacklist-berry_charge.conf ..."
- if [ -e "/etc/modprobe.d/blacklist-berry_charge.conf" ]; then
- mv -f "/etc/modprobe.d/blacklist-berry_charge.conf" "/etc/modprobe.d/blacklist-berry_charge.conf.dpkg-new"
- fi
- mv -f "/etc/modprobe.d/blacklist-berry_charge" "/etc/modprobe.d/blacklist-berry_charge.conf"
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument '$1'" >&2
- exit 1
- ;;
- esac
-
-
-
- exit 0
-
-