Ignore /dev/.static/dev for /etc/mtab in live-mode
[grml-autoconfig.git] / grml-autoconfig
index 581c989..8b63ea1 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Sam Sep 08 12:15:12 CEST 2007 [mika]
+# Latest change: Sam Nov 03 17:22:09 CET 2007 [mika]
 ################################################################################
 
 # http://wiki.debian.org/LSBInitScripts =>
@@ -70,21 +70,12 @@ fi
 # 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 sysfs proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do
-          grep $i /proc/mounts >> /etc/mtab
+      for i in rootfs "none /sys sysfs" proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do
+          grep $i /proc/mounts | grep -v /dev/.static >> /etc/mtab
       done
    fi
 fi
 
-# make sure /etc/resolv.conf points to /dev/shm/resolvconf
-# and /dev/shm/resolvconf exists:
-if [ -z "$INSTALLED" ] ; then
-   if [[ $(readlink /etc/resolv.conf) == /etc/resolvconf/run/resolv.conf ]] && \
-      [[ $(readlink /etc/resolvconf/run) == /dev/shm/resolvconf ]] ; then
-      mkdir /dev/shm/resolvconf
-   fi
-fi
-
 if [ -z "$SPLASH" ] ; then
   stage=5
   rundebugshell
@@ -98,6 +89,8 @@ else
   echo "6" > /proc/sys/kernel/printk ; eend $?
 fi
 
+checkvalue $CONFIG_SYSLOG && config_syslog
+
 if checkbootparam "forensic" ; then
    eerror "Bootopion forensic found. Important notice!"
    eerror " Do *not* boot with something like 'grml forensic ...' but with 'forensic ...' instead!"
@@ -211,8 +204,6 @@ checkvalue $CONFIG_DHCP && config_dhcp
 
 [ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty14
 
-checkvalue $CONFIG_SYSLOG && config_syslog
-
 checkvalue $CONFIG_CPU && config_cpu
 
 checkvalue $CONFIG_SSH && config_ssh