![]() Server : Apache/2.4.52 (Ubuntu) System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64 User : www-data ( 33) PHP Version : 8.1.2-1ubuntu2.21 Disable Function : NONE Directory : /var/lib/dpkg/info/ |
#! /bin/sh set -e . /usr/share/debconf/confmodule case $1 in configure) target=x86_64-efi # Check /boot/grub to see if we previously installed to an ESP. We don't # want to trigger the install code just by installing the package, # normally the installer installs grub itself first. if test -e /boot/grub/$target/core.efi; then if [ -x /usr/share/grub/grub-check-signatures ]; then /usr/share/grub/grub-check-signatures fi if [ -x /usr/lib/grub/grub-multi-install ]; then /usr/lib/grub/grub-multi-install --target=$target elif grub-install --help | grep -q 'auto-nvram'; then grub-install --target=$target --auto-nvram else grub-install --target=$target fi fi ;; esac exit 0