| Current Path : /var/lib/dpkg/info/ |
| Current File : //var/lib/dpkg/info/kbd.postrm |
#!/bin/sh
set -e
case "$1" in
remove)
for file in dumpkeys loadkeys; do
if [ -L /usr/bin/$file ]; then
rm /usr/bin/$file
fi
done
;;
esac
# vim:sw=4:sts=4:et: