#!/bin/sh #---------------------------------------------------------------------------- # /etc/rc0.d/rc960.umount - unmount all Filesystems except: # '/', '/proc', '/dev/pts' and '/sys' # # Creation: 12.05.2002 rr # Last Update: $Id$ #---------------------------------------------------------------------------- # set -x cat /proc/mounts > /tmp/proc_mounts while read DEV MTPT FSTYPE REST; do case "$MTPT" in /|/proc|/dev/pts|/sys) continue ;; esac case "$FSTYPE" in proc|procfs|linprocfs|devfs|sysfs|usbfs|usbdevfs|devpts) continue ;; *) FILESYSTEMS="$FILESYSTEMS $MTPT"; esac done /tmp/proc_swaps if grep -q /dev /tmp/proc_swaps ; then colecho 'disabling swap' gn swapoff -a fi rm -f /tmp/proc_swaps