#!/bin/sh set -e DIVERT_LIST="/usr/share/sounds/question.wav /usr/share/sounds/shutdown.wav /usr/share/sounds/startup.wav" case "$1" in configure) for f in $DIVERT_LIST ; do if dpkg-divert --package lliurex-sounds --rename --quiet --add --divert ${f}.ubuntu ${f} ; then ln -fs ${f}.lliurex ${f} else echo "Unable to divert file \"$f\"" >&2 fi done ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argumente\`$1'" >&2 exit 1 ;; esac #DEBHELPER#