diff options
author | Chris Lord <chris@openedhand.com> | 2005-02-11 02:12:28 +0000 |
---|---|---|
committer | Chris Lord <chris@openedhand.com> | 2005-02-11 02:12:28 +0000 |
commit | 792fc8350fd48705f2bd245299650c8aefa66450 (patch) | |
tree | 9aa24ef258388e327f15d92228d47cdfa77cf13e /packages/unionfs/unionroot-utils/umount.unionroot | |
parent | 5dadbaf0cdcd910bab780161eb56aef547bd6a64 (diff) |
Merge
2005/02/11 02:10:47+00:00 (none)!cwiiis
Rewrite of unionroot and unionroot-utils - Same functionality as before, but less errors and more efficient.
BKrev: 420c148c_dTY2QW3_z_MW-o2SF9Sag
Diffstat (limited to 'packages/unionfs/unionroot-utils/umount.unionroot')
-rw-r--r-- | packages/unionfs/unionroot-utils/umount.unionroot | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/packages/unionfs/unionroot-utils/umount.unionroot b/packages/unionfs/unionroot-utils/umount.unionroot index e69de29bb2..df0eccb353 100644 --- a/packages/unionfs/unionroot-utils/umount.unionroot +++ b/packages/unionfs/unionroot-utils/umount.unionroot @@ -0,0 +1,86 @@ +#!/bin/sh + +#set -x + +ROOTMOUNTPT=/media/realroot +REALUMOUNT=/bin/umount.busybox +UNIONUMOUNT=$0 +INCDIRS="^/media/\|^/mnt/" +DEVICE="\/dev\/" + +newargs="" + +ONESHIFTARGS='adflnrv' +TWOSHIFTARGS="tO" + +resolvelink () { + if test -h $1; then + echo `readlink $1` + else + echo $1 + fi +} + +# Retrieves arguments/mount-point +for var in $@; do + if [ -z "$SKIP" ]; then + if echo $var | grep -q "^-.*"; then + if echo $var | grep -q "[$TWOSHIFTARGS]"; then + SKIP="yes" + fi + if echo $var | grep -q "^-[^- ]*a"; then + DO_FSTAB="yes" + fi + ARGS="$ARGS $var" + else + if [ -z "$MOUNT_POINT" ]; then + MOUNT_POINT=$var + else + # This really shouldn't happen when unmounting + DEV_PATH="$MOUNT_POINT" + MOUNT_POINT="$var" + fi + fi + else + ARGS="$ARGS $var" + unset SKIP + fi +done + +# Parse fstab if -a is used +if ! [ -z "$DO_FSTAB" ]; then + # FIXME: This doesn't handle -t or -O + awk '/^[^ #]/ {print $1}' /etc/fstab | + while read line; do + ${UNIONUMOUNT} $line + done + exit 0 +fi + +# Get mount-point for device name, if device name is given +if echo "$MOUNT_POINT" | grep -q "^${DEVICE}"; then + MOUNT_POINT_TEMP=`echo $MOUNT_POINT | sed -e "s/\//\\\\\\\\\//g"` + NEW_MOUNT_POINT=`awk "/$MOUNT_POINT_TEMP/ {print "'$2'"}" /etc/fstab` + if ! [ -z "$NEW_MOUNT_POINT" ]; then + MOUNT_POINT=$NEW_MOUNT_POINT + fi +fi + +if ! (echo "$MOUNT_POINT" | grep -q "$INCDIRS"||[ "$MOUNT_POINT" = "/" ]); then + exec ${REALMOUNT} $@ +fi + +# Replace requests to mount '/' (from init scripts and such) +# with mount ROOTMOUNTPT (the real-root mount point for the +# unionfs'd system). +packagedir="" +if ([ "$MOUNT_POINT" = "/" ]||[ "$MOUNT_POINT" = "${ROOTMOUNTPT}" ]); then + MOUNT_POINT=${ROOTMOUNTPT} +else + PACKAGE_DIR="/packages" +fi + +# Finally, umount and union-umount +unionctl /. --remove `resolvelink $MOUNT_POINT`$PACKAGE_DIR +exec ${REALUMOUNT} $ARGS $MOUNT_POINT + |