X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=bin%2Flive-snapshot;h=b803b159be9ca10b890700c7f7126e9623a5f82e;hb=3d52fbcb4fe70132ade14759d76573b471294800;hp=e3e05fef6111461fce567d9ba6b88de342cb4e17;hpb=9fc9e2a1a11b0edada38cb501fefe4f58aa414ac;p=live-boot-grml.git diff --git a/bin/live-snapshot b/bin/live-snapshot index e3e05fe..b803b15 100755 --- a/bin/live-snapshot +++ b/bin/live-snapshot @@ -1,10 +1,10 @@ #! /bin/bash -# casper-snapshot - utility to manage Debian Live systems snapshots +# live-snapshot - utility to manage Debian Live systems snapshots # # This program mount a device (fallback to /tmpfs under /mnt/snapshot # and save the /cow (or a different dir) filesystem in it for reusing -# in another casper session. Look at manpage for more info. +# in another live-initramfs session. Look at manpage for more info. # # Copyright (C) 2006 Marco Amadori # @@ -122,7 +122,7 @@ Version () echo "On Debian systems, the complete text of the GNU General Public License" echo "can be found in /usr/share/common-licenses/GPL file." echo - echo "Homepage: " + echo "Homepage: " exit 0 } @@ -234,7 +234,7 @@ Defaults () COW=$(echo "${SNAP_RSTRING}" | cut -f1 -d ':') DEV=$(echo "${SNAP_RSTRING}" | cut -f2 -d ':') DEST=$(echo "${SNAP_RSTRING}" | cut -f3 -d ':') - + case "${DEST}" in *.cpio.gz) TYPE="cpio" ;; @@ -255,7 +255,7 @@ Defaults () else COW="${SNAP_COW}" fi - + case "${SNAP_TYPE}" in "cpio"|"squashfs"|"ext2") TYPE="${SNAP_TYPE}" @@ -266,8 +266,8 @@ Defaults () Usage "Error: unrecognized snapshot type" ;; esac - #if [ -d - #if Is_same_mount + #if [ -d + #if Is_same_mount fi # check vars @@ -284,7 +284,7 @@ Clean () if [ -n "$DEV" ]; then umount "${MOUNTP}" rmdir "${MOUNTP}" - rm + #rm fi }