File: libhamlib4t64.postinst

package info (click to toggle)
hamlib 4.6.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,984 kB
  • sloc: ansic: 262,996; sh: 6,135; cpp: 1,578; perl: 876; makefile: 855; python: 148; awk: 58; xml: 26
file content (15 lines) | stat: -rw-r--r-- 380 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -eu

case $1 in
    configure)
        # remove leftover protective diversion for trixie upgrades
        # (this code can be removed in forky)
        dpkg-divert --package usr-is-merged --no-rename \
            --divert /lib/udev/rules.d/60-libhamlib4.rules.usr-is-merged \
            --remove /lib/udev/rules.d/60-libhamlib4.rules
        ;;
esac

#DEBHELPER#