mutter/debian/gnome-shell.postinst
Ward from fusion-voyager-3 bf81b2b904 commit
2023-10-15 20:21:17 +03:00

19 lines
451 B
Bash

#!/bin/sh
set -e
case "$1" in
configure)
# trigger an update notification that recommends a reboot
# (used by unattended-upgrades etc.)
touch /var/run/reboot-required || true
# same thing for the older update-notifier interface
if [ -x /usr/share/update-notifier/notify-reboot-required ]; then
/usr/share/update-notifier/notify-reboot-required || true
fi
;;
esac
#DEBHELPER#