blob: e4c28cb8120f38cc5e1f14ca888ff2ec26aa0619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# arg 1: the new package version
post_install() {
echo "==> Run 'hwd -u' to update xorgtable, pci-, and usb.ids."
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
echo "==> Run 'hwd -u' to update xorgtable, pci-, and usb.ids."
}
# arg 1: the old package version
pre_remove() {
rm -R /etc/hwd >/dev/null 2>&1
}
|