diff options
author | Daniel Baumann <daniel@debian.org> | 2010-05-28 08:16:50 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:53:26 +0100 |
commit | 8dee18b086d99d1d5e3319fce8ff6047aeffa15a (patch) | |
tree | 1f7bcea776083eedbe52fd9d97feac8c4df6b58d /scripts | |
parent | 3260fec82497dccb9633ef344dfa06d8dc718163 (diff) | |
download | live-boot-8dee18b086d99d1d5e3319fce8ff6047aeffa15a.tar.gz live-boot-8dee18b086d99d1d5e3319fce8ff6047aeffa15a.zip |
Removing umountfs bottom script, not needed anymore.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/live-bottom/16umountfs | 38 |
1 files changed, 0 insertions, 38 deletions
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 |