summarylogtreecommitdiffstats
path: root/thinkpad-scripts.install
blob: 51774db9f61406a179e6801e3ce5112d980ba279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    udevadm hwdb --update
    echo "udev rules, udev hwdb, and ACPI hooks updated."
    echo "You need to restart acpid and reload the udev rules/hwdb for these"
    echo "changes to take effect. To reload the udev rules, you can reboot,"
    echo "restart udev, or run as root:"
    echo "    udevadm trigger --action=change"
}

post_upgrade() {
    post_install $1
}

post_remove() {
    post_install $1
}