From: Daniel Baumann Date: Fri, 28 May 2010 06:16:50 +0000 (+0200) Subject: Removing umountfs bottom script, not needed anymore. X-Git-Tag: debian/2.0_a3-1~1 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=a4f942e8459ab4e9fdf06d7cbb4f1aeeb65a99e5;hp=dffe620db62510760b62ea8c2e949be0d7663de8;p=live-boot-grml.git Removing umountfs bottom script, not needed anymore. --- diff --git a/scripts/live-bottom/16umountfs b/scripts/live-bottom/16umountfs deleted file mode 100755 index 055c3f6..0000000 --- a/scripts/live-bottom/16umountfs +++ /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