mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
17 lines
230 B
Plaintext
17 lines
230 B
Plaintext
|
#!/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
|