grml-reboot: detect virtual machines + assume noprompt for them, add imvirt to Depends
[grml-etc.git] / etc / init.d / grml-reboot
index dd65d63..c90fa8c 100755 (executable)
@@ -1,57 +1,86 @@
-#!/bin/sh
+#!/bin/bash
 # Filename:      grml-reboot
 # Purpose:       reboot grml system
-# Authors:       grml-team (grml.org), (c) Klaus Knopper, (c) Michael Prokop <mika@grml.org>
+# Authors:       grml-team (grml.org)
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Sam Sep 30 13:48:17 CEST 2006 [mika]
 ################################################################################
 
-PATH=/sbin:/bin:/usr/bin:/usr/sbin
-export PATH
+export PATH=/sbin:/bin:/usr/bin:/usr/sbin
+
+. /etc/grml_colors
+. /etc/grml/lsb-functions
 
-[ -r /etc/grml_colors ] && . /etc/grml_colors
-                           . /etc/grml/lsb-functions
 cd /
 
 # Clean input/output
-exec >/dev/console 2>&1 </dev/console
+CONSOLE=/dev/console
+[ -c "$CONSOLE" ] && exec >"$CONSOLE" 2>&1 <"$CONSOLE"
+
+# default variables
+INSTALLED=false
+REMOVABLE=false
+USB_DEVICE=false
+NOPROMPT=${NOPROMPT:-false}
+NOEJECT=${NOEJECT:-false}
+CMDLINE="$(cat /proc/cmdline 2>/dev/null)"
 
 # Check if we are running from a GRML-CD or HD
-INSTALLED=""
-[ -e /GRML/etc/grml_cd ] || INSTALLED=yes
-grep -q 'toram ' /proc/cmdline && INSTALLED=yes
+[ -e /etc/grml_cd ] || INSTALLED=true
+
+# Assume that we don't want the eject+prompt stuff when running in one
+# of the special modes:
+grep -qe 'toram' -qe '2ram' -qe 'usb' -qe 'serial' \
+     -qe 'fromhd' -qe 'isofrom' -qe 'fromiso' -qe 'findiso' \
+     /proc/cmdline && INSTALLED=true
+
+# detect cdrom device
+if ! $INSTALLED ; then
+   # new live-initramfs layout:
+   if [ -d /live/image ] ; then
+      CDROM="$(awk '/ \/live\/image /{print $1;exit 0;}' /proc/mounts)"
+      MOUNTPATH="/live/image"
+   else # old unionfs layout:
+      CDROM="$(awk '/ \/cdrom /{print $1;exit 0;}' /proc/mounts)"
+      MOUNTPATH="/cdrom"
+   fi
+
+   # try to remove only removable devices
+   DEVICE=""
+   if [ -n "$CDROM" ] ; then
+     DEVICE="${CDROM##/dev/}"
+     [ -d /sys/block/${DEVICE} ] || DEVICE="${DEVICE%%[0-9]*}"
+
+     if [ -n "$DEVICE" ] ; then
+       # is it a removable device?
+       [ "$(cat /sys/block/${DEVICE}/removable 2>/dev/null)" = "1" ] && REMOVABLE=true
+       # is it a usb device?
+       readlink /sys/block/${DEVICE} 2>/dev/null | grep -q '/usb' && USB_DEVICE=true
+       $USB_DEVICE && USB_INFO=" ($(cat /sys/block/${DEVICE}/device/model 2>/dev/null))"
+     fi
+   fi
+fi
 
 case "$0" in
   *halt)
         level=0
-        message="
-${YELLOW}GRML halted.${NORMAL}"
+        message="grml system will be halted..."
         command="halt"
-        options="-p -d -i -f"
         ;;
   *reboot)
         level=6
-        message="${GREEN}Preparing for reboot...${NORMAL}"
+        message="Preparing for reboot..."
         command="reboot"
-        if [[ `readlink /sbin/reboot` == 'halt' ]] ; then
-          options="-d -i -f" # this is sysvinit of debian
-        else
-          options="-r -d -i -f" # this is sysvinit of grml
-        fi
         ;;
   *)
-        echo "$0: call this script as \"halt\" or \"reboot\" please!"
+        echo "Usage: call this script as \"halt\" or \"reboot\" please.">&2
         exit 1
         ;;
 esac
 
-# No sync and no wtmp entry if running from CD
-[ -n "$INSTALLED" ] || options="$options -n"
-
 mysleep() {
-  for i in `seq 1 40` ; do
-    usleep 75000
+  for i in $(seq 1 30) ; do
+    sleep 0.1
     echo -n "$1.${NORMAL}"
   done
   echo ""
@@ -60,20 +89,26 @@ mysleep() {
 # Disable kernel messages
 echo "0" > /proc/sys/kernel/printk
 
+# make sure halt/reboot commands are available even if
+# someone is using shutdown command or nfsroot is used:
+cat /sbin/halt /sbin/reboot /etc/init.d/$command /etc/init.d/ups-monitor \
+       /etc/apcupsd/powerfail >/dev/null 2>&1
+
 # We may kill our network connection here before unmounting NFS. Bad luck.
-# poweroff pcmcia devices
-if pidof cardmgr >/dev/null 2>&1; then
-  log_begin_msg "Shutting down PCMCIA devices..."
-  cardctl eject >/dev/null 2>&1 && sleep 3
-  killall cardmgr && sleep 3 ; log_end_msg $?
+if [ -d /sys/bus/pcmcia -a -x /sbin/pccardctl ] ; then
+   # make sure we don't lose any data, see issue219 for details
+   log_begin_msg "Syncing devices..."
+   sync ; log_end_msg $?
+   log_begin_msg "Shutting down PCMCIA devices..."
+   pccardctl eject >/dev/null 2>&1
+   log_end_msg $?
 fi
 
-if [ -n "$INSTALLED" ] ; then
-  echo
-  log_begin_msg_nn "Running /etc/init.d/rc ${level}: "
-  /etc/init.d/rc $level 1>/dev/null 2>&1 &
-  mysleep "$GREEN"
-  log_end_msg 0
+if $INSTALLED ; then
+   log_begin_msg_nn "Running /etc/init.d/rc ${level}: "
+   /etc/init.d/rc $level 1>/dev/null 2>&1 &
+   mysleep "$GREEN"
+   log_end_msg 0
 fi
 
 # Remove all truecrypt mappings...
@@ -97,82 +132,43 @@ sleep 1
 log_begin_msg_nn "Sending all processes the KILL signal: "
 mysleep "$RED" ; log_end_msg $?
 
-# check for nfsdir
-if grep -q nfsdir /proc/cmdline ; then
-  log_begin_msg "Bootoption nfsdir detected, syncing filesystems"
-  sync && sleep 1 ; log_end_msg $?
-else
-  # Unmount network filesystems first before shutting down network
-  NETMOUNTS="$(awk '{if($1~/:/){print $2}}' /proc/mounts 2>/dev/null)"
-  if [ -n "$NETMOUNTS" ]; then
-    log_begin_msg "Unmounting network filesystems."
-    umount -t nfs -arvf 2>/dev/null ; log_end_msg $?
-  fi
-  # Shutdown network
-  NETDEVICES="$(awk -F: '/eth.:/{print $1}' /proc/net/dev 2>/dev/null)"
-  if [ -n "$NETDEVICES" ]; then
-    pidof pump >/dev/null 2>&1 && { pump -k ; sleep 2; }
-    log_begin_msg "Shutting down network device..."
-    for n in $NETDEVICES; do
-      echo "${SUBMSG} ${WHITE}$n${NORMAL}"
-      ifconfig $n down
-    done ; log_end_msg $?
-  fi
-  log_begin_msg "Syncing local filesystems..."
-  sync && sleep 1 ; log_end_msg $?
-fi
-
 # Turn off swap, then unmount file systems.
 log_begin_msg "Turning off swap."
 swapoff -a >/dev/null 2>&1 ; log_end_msg $?
 
+# Udev
 log_begin_msg "Deactivating udev:"
 echo -n "   ${GREEN}-${NORMAL} "
 /etc/init.d/udev stop ; log_end_msg $?
-[ -n $INSTALLED ] || mkdir -p /dev/pts
-[ -n $INSTALLED ] || cp -a /GRML/dev/console /GRML/dev/tty[0-9]* /GRML/dev/loop* /GRML/dev/initctl /GRML/dev/null /dev/
-[ -n $INSTALLED ] || ln -s /GRML/dev/* /dev/ 2>/dev/null
-
-# Read in boot parameters
-CMDLINE="`cat /proc/cmdline 2>/dev/null`"
-# noprompt or noeject option given?
-NOPROMPT=${NOPROMPT:-''}
-case "$CMDLINE" in *noprompt*) NOPROMPT="yes"; ;; esac
-# NOEJECT=""
-NOEJECT=${NOEJECT:-''}
-case "$CMDLINE" in *noeject*) NOEJECT="yes"; ;; esac
-[ -r /etc/noprompt ] && NOPROMPT='yes'
-[ -r /etc/noeject ]  && NOPROMPT='yes' && NOEJECT='yes'
-
-# No sync and no wtmp entry if running from CD
-[ -n "$INSTALLED" ] || options="$options -n"
-
-if [ -z "$NOEJECT" ]; then
-# Turn on autoeject of CD-ROMs
-  for dev in /proc/sys/dev/cdrom*/lock;      do [ -f "$dev" ] && echo 0 > "$dev"; done
-  for dev in /proc/sys/dev/cdrom*/autoeject; do [ -f "$dev" ] && echo 1 > "$dev"; done
+
+# noprompt and noeject handling
+case "$CMDLINE" in
+  *noprompt*) NOPROMPT=true ; ;;
+  *noeject*)  NOEJECT=true ; ;;
+esac
+[ -r /etc/noprompt ] && NOPROMPT=true
+[ -r /etc/noeject ]  && NOPROMPT=true && NOEJECT=true
+
+if [ "$(/usr/bin/imvirt 2>/dev/null)" != "Physical" ] ; then
+  log_begin_msg "System seems to be a virtual machine, assuming noprompt as default."
+  NOPROMPT=true
+  log_end_msg 0
 fi
 
-# Turn on auto-eject feature of cdrom (2.2 kernel)
- if [ -z "$INSTALLED" ]; then
- CDROM="$(awk '/ \/cdrom /{print $1;exit 0;}' /proc/mounts)"
-# [ -n "$CDROM" ] && eject -s -a on "$CDROM" 2>/dev/null
- fi
-
-# Note: This needs the static version of "init" which contains
-# the "halt" command plus rmmod/umount calls
-FINALCMD="/sbin/$command"
-if [ -z "$INSTALLED" -a -z "$NOPROMPT" ]; then
-   [ -L /etc/init ] && rm -f /etc/init
-   [ -x /etc/init ] || cp -p /sbin/init /etc/
-   [ -x /etc/init ] && FINALCMD="/etc/init"
+# Turn on autoeject of CD-ROMs
+if $NOEJECT ; then
+   for dev in /proc/sys/dev/cdrom*/lock;      do [ -f "$dev" ] && echo 0 > "$dev"; done
+   for dev in /proc/sys/dev/cdrom*/autoeject; do [ -f "$dev" ] && echo 1 > "$dev"; done
 fi
 
-# Now umount everything but root
+# Umount file systems
+log_begin_msg "Syncing local filesystems..."
+sync && sleep 1 ; log_end_msg $?
+
 log_begin_msg "Unmounting file systems."
 
 # Be safe in case someone messed with /etc/mtab
-if [ -z "$INSTALLED" ] ; then
+if ! $INSTALLED ; then
    rm -f /etc/mtab
    ln -snf /proc/mounts /etc/mtab
 fi
@@ -180,25 +176,55 @@ fi
 # Free loopback devices if necessary, so we can unmount the host media
 for i in /dev/loop*; do losetup -d $i 2>/dev/null; done
 
-# Remove remaining unused modules (Kernel 2.4)
-rmmod -a >/dev/null 2>&1
+umount -t notmpfs,nosysfs,noproc,nousbfs -adrvf 1>/dev/null 2>&1
 
 log_end_msg 0
 
-# For a harddisk installation: mount / ro
-[ -n "$INSTALLED" ] && mount -n -o remount,ro / 2>/dev/null
+# Network stuff
+log_begin_msg "Unmounting network filesystems"
+umount -t nfs,nfs4,smbfs -alvf 2>/dev/null ; log_end_msg $?
+
+NETDEVICES="$(/sbin/ifconfig | awk '/^[^ ]+/ {print $1}' | grep -v '^lo$')"
+if [ -n "$NETDEVICES" ]; then
+   pidof pump >/dev/null 2>&1 && { pump -k ; sleep 2; }
+   killall dhclient dhclient3 2>/dev/null
+   log_begin_msg "Shutting down network device..."
+   for n in $NETDEVICES; do
+       echo "${SUBMSG} ${WHITE}$n${NORMAL}"
+       ifdown $n 1>/dev/null 2>&1
+       ifconfig $n down
+   done ; log_end_msg $?
+fi
 
-if [ -z "$INSTALLED" -a -z "$NOPROMPT" ]; then
-  umount -l /cdrom
-  [ -n "$CDROM" -a -z "$NOEJECT" ] && eject -p "$CDROM" 2>/dev/null
-  echo ""
-  echo "${CYAN}Please remove CD, close cdrom drive and hit return.${NORMAL}"
-  read
+# For a harddisk installation: mount / ro
+$INSTALLED && mount -n -o remount,ro / 2>/dev/null
+
+# Prompt for removal of live system device
+if ! $INSTALLED && ! $NOPROMPT ; then
+   # do not prompt for removal when running in grml2ram mode:
+   if ! mount | grep -qe 'on /cdrom' -qe 'on /live/image' ; then
+      echo "Live System not mounted, nothing to eject therefore."
+   else
+      [ -d "$MOUNTPATH" ] && umount -l "$MOUNTPATH"
+      if ! $NOEJECT && [ -n "$CDROM" ]  ; then
+         $REMOVABLE && eject -p "$CDROM" 2>/dev/null
+      fi
+      echo
+      if $USB_DEVICE ; then
+        # if we do not have any information about the usb model then fallback to the device name instead
+        [ -n "$USB_INFO" ] || USB_INFO=" (${CDROM})"
+        read -s -p "${GREEN}Please remove the USB device${USB_INFO} and press ENTER to continue [auto 2 minutes].${NORMAL}" -t 120 a
+      else
+        [ -n "$CDROM" ] && CDROM=" (${CDROM})"
+        read -s -p "${GREEN}Please remove the live system${CDROM}, close the tray (if any) and press ENTER to continue [auto 2 minutes].${NORMAL}" -t 120 a
+      fi
+   fi
 fi
 
+echo
 echo "$message" >/dev/console
 
-# Now halt or reboot.
-exec $FINALCMD $options >/dev/console 2>&1 </dev/console
+# Finally halt or reboot
+/etc/init.d/$command stop
 
 ## END OF FILE #################################################################