X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=cd584f2e3a3d38449714b1f7cdb0e2e04a85230e;hp=a5a800de8e5ee4149ead547650997a49e61829ed;hb=ec19b33413c8a79c9d65be0f2f4bb62436c690b9;hpb=9adf1670d57462101cc1eeca041f1fc497688aa1 diff --git a/grml-autoconfig b/grml-autoconfig index a5a800d..cd584f2 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -59,7 +59,7 @@ checkvalue $CONFIG_DEBUG && config_debug # update /etc/mtab if running in live-initramfs mode: if [ -z "$INSTALLED" -a -e /live/cow ] ; then if ! grep -q rootfs /etc/mtab ; then - for i in rootfs "none /sys sysfs" proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do + for i in rootfs "none /sys sysfs" proc ${LIVECD_PATH} /live/cow /lib/init/rw /dev/shm /dev/pts ; do grep $i /proc/mounts | grep -v /dev/.static >> /etc/mtab done fi @@ -164,6 +164,8 @@ checkvalue $CONFIG_SERVICES && config_services checkvalue $CONFIG_DEBNET && config_debnet +checkvalue $CONFIG_DISPLAY_SSH_FINGERPRINTS && config_display_ssh_fingerprints + checkvalue $CONFIG_NETCONFIG && config_netconfig checkvalue $CONFIG_NETSCRIPT && config_netscript @@ -201,8 +203,7 @@ if [ -n "$BOOTDEBUG" ] ; then # set only if not already set if [ -z "$CMDLINE" ] ; then CMDLINE="$(cat /proc/cmdline)" - [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" - [ -d /live/image/bootparams/ ] && CMDLINE="$CMDLINE $(cat /live/image/bootparams/*)" + [ -d ${LIVECD_PATH}/bootparams/ ] && CMDLINE="$CMDLINE $(cat ${LIVECD_PATH}/bootparams/*)" fi einfo "Bootoption debug detected. Printing kernel command line:" echo "$CMDLINE"