bundlewrap/bundles/apt/files/kernel-postinst.d
Franzi fbb8840dff
All checks were successful
bundlewrap/pipeline/head This commit looks good
add .editorconfig, format files correctly
2021-02-17 10:56:18 +01:00

16 lines
413 B
Bash

#!/bin/sh
# /etc/kernel/postinst.d/unattended-upgrades
case "$DPKG_MAINTSCRIPT_PACKAGE::$DPKG_MAINTSCRIPT_NAME" in
linux-image-extra*::postrm)
exit 0;;
esac
if [ -d /var/run ]; then
touch /var/run/reboot-required
if ! grep -q "^$DPKG_MAINTSCRIPT_PACKAGE$" /var/run/reboot-required.pkgs 2> /dev/null ; then
echo "$DPKG_MAINTSCRIPT_PACKAGE" >> /var/run/reboot-required.pkgs
fi
fi