Removing umountfs bottom script, not needed anymore.
authorDaniel Baumann <daniel@debian.org>
Fri, 28 May 2010 06:16:50 +0000 (08:16 +0200)
committerDaniel Baumann <daniel@debian.org>
Wed, 9 Mar 2011 16:53:26 +0000 (17:53 +0100)
scripts/live-bottom/16umountfs [deleted file]

diff --git a/scripts/live-bottom/16umountfs b/scripts/live-bottom/16umountfs
deleted file mode 100755 (executable)
index 055c3f6..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-#set -e
-
-# initramfs-tools header
-
-PREREQ=""
-
-prereqs()
-{
-       echo "${PREREQ}"
-}
-
-case "${1}" in
-       prereqs)
-               prereqs
-               exit 0
-               ;;
-esac
-
-# live-boot header
-
-. /live.vars
-
-. /scripts/live-functions
-
-log_begin_msg "Disabling umountfs for live specific filesystems"
-
-# live-boot script
-
-if [ -e /root/etc/init.d/umountfs ]
-then
-       sed -i  -e 's#pioodl $TMPFS_MTPTS)#pioodl $TMPFS_MTPTS | sed -e "s@\\ @\\n@" | grep -v ^/live)#' \
-               -e 's#pioodl $REG_MTPTS)#pioodl $REG_MTPTS | sed -e "s@\\ @\\n@" | grep -v ^/live | grep -v ^/filesystem) /#' \
-       /root/etc/init.d/umountfs
-fi
-
-log_end_msg