From ed006a8eb44831189e152826c692330d0a0cfe3b Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Mon, 18 Jul 2011 14:00:12 +0200 Subject: delete beagle-dir Signed-off-by: Manuel Traut --- beagle/debian-rfs/etc/init.d/umountfs | 144 ---------------------------------- 1 file changed, 144 deletions(-) delete mode 100755 beagle/debian-rfs/etc/init.d/umountfs (limited to 'beagle/debian-rfs/etc/init.d/umountfs') diff --git a/beagle/debian-rfs/etc/init.d/umountfs b/beagle/debian-rfs/etc/init.d/umountfs deleted file mode 100755 index 7df5e3f..0000000 --- a/beagle/debian-rfs/etc/init.d/umountfs +++ /dev/null @@ -1,144 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: umountfs -# Required-Start: -# Required-Stop: umountroot -# Default-Start: -# Default-Stop: 0 6 -# Short-Description: Turn off swap and unmount all local file systems. -# Description: -### END INIT INFO - -PATH=/sbin:/usr/sbin:/bin:/usr/bin -. /lib/init/vars.sh - -. /lib/lsb/init-functions - -umask 022 - -do_stop () { - exec 9<&0 /dev/null - log_action_end_msg $? - else - log_daemon_msg "Will now deactivate swap" - swapoff -a -v - log_end_msg $? - fi - - # - # Unmount local filesystems - # - if [ "$WEAK_MTPTS" ]; then - # Do not use -f umount option for WEAK_MTPTS - if [ "$VERBOSE" = no ] - then - log_action_begin_msg "Unmounting weak filesystems" - fstab-decode umount -r -d $WEAK_MTPTS - log_action_end_msg $? - else - log_daemon_msg "Will now unmount weak filesystems" - fstab-decode umount -v -r -d $WEAK_MTPTS - log_end_msg $? - fi - fi - if [ "$REG_MTPTS" ] - then - if [ "$VERBOSE" = no ] - then - log_action_begin_msg "Unmounting local filesystems" - fstab-decode umount -f -r -d $REG_MTPTS - log_action_end_msg $? - else - log_daemon_msg "Will now unmount local filesystems" - fstab-decode umount -f -v -r -d $REG_MTPTS - log_end_msg $? - fi - fi -} - -case "$1" in - start) - # No-op - ;; - restart|reload|force-reload) - echo "Error: argument '$1' not supported" >&2 - exit 3 - ;; - stop) - do_stop - ;; - *) - echo "Usage: $0 start|stop" >&2 - exit 3 - ;; -esac - -: -- cgit v1.2.3