Files
mirror_zfs/contrib/debian/openzfs-zfs-modules-_KVERS_.postinst.in
T

17 lines
230 B
Bash
Raw Normal View History

2022-10-28 03:38:45 +05:00
#!/bin/sh
set -e
# Run depmod first
depmod -a _KVERS_
#DEBHELPER#
case $1 in
(configure)
if [ -x /usr/share/update-notifier/notify-reboot-required ]; then
/usr/share/update-notifier/notify-reboot-required
fi
;;
esac