K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / lib / dpkg / info /
server ip : 104.21.89.46

your ip : 108.162.216.227

H O M E


Filename/var/lib/dpkg/info/grub-pc.config
Size2.26 kb
Permissionrwxr-xr-x
Ownerroot : root
Create time27-Apr-2025 09:58
Last modified23-Mar-2019 03:53
Last accessed27-Apr-2025 09:58
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/bin/sh
set -e

case `dpkg --print-architecture` in
kfreebsd-*)
# No migration from GRUB Legacy, no Linux cmdline
exit 0
;;
esac

. /usr/share/debconf/confmodule

priority=medium

case grub-pc in
grub-pc)
if test -e /boot/grub/stage2 && test -e /boot/grub/menu.lst && ! test -e /boot/grub/core.img ; then

db_input high grub-pc/chainload_from_menu.lst || true

db_get grub-pc/kopt_extracted || true
# this check ensures we only do this once
if [ "$RET" = "false" ] ; then
kopt=`sed -ne "s/^# kopt=//p" /boot/grub/menu.lst | tr -s " " "\n" | grep -vx "\(ro\|root=[^ ]*\)" | paste -s -d ' '` || true
db_set grub2/linux_cmdline "${kopt}" || true
db_set grub-pc/kopt_extracted true || true
if [ "${kopt}" = "" ] ; then
# something smells bad. give user a chance to correct it.
priority=high
else
# if we got something from menu.lst, it must be correct?
priority=medium
fi
timeout=`sed -ne "s/^timeout[[:space:]][[:space:]]*//p" /boot/grub/menu.lst` || true
if [ "${timeout}" != "" ]; then
db_set grub-pc/timeout "${timeout}" || true
fi
if grep -q '^hiddenmenu\([[:space:]]\|$\)' /boot/grub/menu.lst; then
db_set grub-pc/hidden_timeout true || true
else
db_set grub-pc/hidden_timeout false || true
fi
fi
fi
;;
esac

for x in /etc/default/grub /etc/default/grub.d/*.cfg ; do
if [ -e "$x" ]; then
. "$x"
fi
done

if [ "${GRUB_CMDLINE_LINUX+set}" = set ]; then
db_set grub2/linux_cmdline "$GRUB_CMDLINE_LINUX"
fi
if [ "${GRUB_CMDLINE_LINUX_DEFAULT+set}" = set ]; then
db_set grub2/linux_cmdline_default "$GRUB_CMDLINE_LINUX_DEFAULT"
fi

case grub-pc in
grub-pc)
if [ "${GRUB_TIMEOUT}" != "" ]; then
db_set grub-pc/timeout "$GRUB_TIMEOUT"
fi
if [ "${GRUB_HIDDEN_TIMEOUT}" != "" ]; then
db_set grub-pc/hidden_timeout true
elif egrep -qs '^#?[[:space:]]*GRUB_HIDDEN_TIMEOUT=' /etc/default/grub; then
db_set grub-pc/hidden_timeout false
fi
;;
esac
case grub-pc in
grub-*efi*|grub-ieee1275)
db_input low grub2/update_nvram || true
;;
esac

db_input ${priority} grub2/linux_cmdline || true
db_input medium grub2/linux_cmdline_default || true
db_go