Adding live-initramfs 1.87.3-1.
[live-boot-grml.git] / bin / live-snapshot
index e3e05fe..b803b15 100755 (executable)
@@ -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 <marco.amadori@gmail.com>
 #
@@ -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: <http://live.debian.net/>"
+       echo "Homepage: <http://debian-live.alioth.debian.org/>"
        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
 }