11 lines
179 B
Plaintext
11 lines
179 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
case $1 in
|
||
|
(configure)
|
||
|
[ -x /usr/share/update-notifier/notify-reboot-required ] \
|
||
|
&& /usr/share/update-notifier/notify-reboot-required
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|