File: console-common.postinst

package info (click to toggle)
console-common 0.7.91
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,052 kB
  • sloc: perl: 526; sh: 198; awk: 134; makefile: 117
file content (10 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/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

#DEBHELPER#