#!/bin/sh 

set -e

# remove stale keymap.sh links
if [ "$1" = configure ] && dpkg --compare-versions "$2" lt "0.7.88+nmu1~" ; then
    update-rc.d -f keymap.sh remove > /dev/null || true
fi

# Automatically added by dh_installdeb/12.7ubuntu1
dpkg-maintscript-helper rm_conffile /etc/init.d/keymap.sh 0.7.88\+nmu1\~ -- "$@"
# End automatically added section

