summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2008-06-01 00:44:03 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:47:59 +0100
commitea030e6fbe844a8472ccbcd0108da68e1061fdde (patch)
tree8642c216c78b932e3a7b5580dc0eda585e918aee
parentaab75484c29a3c2ce95d2e23148970debfbd2a69 (diff)
downloadlive-boot-ea030e6fbe844a8472ccbcd0108da68e1061fdde.tar.gz
live-boot-ea030e6fbe844a8472ccbcd0108da68e1061fdde.zip
Removing useless whitespaces and empty lines.
-rwxr-xr-xbin/live-snapshot10
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/live-snapshot b/bin/live-snapshot
index 70073fc..199718f 100755
--- a/bin/live-snapshot
+++ b/bin/live-snapshot
@@ -95,7 +95,6 @@ Usage ()
exit 0
}
-
Version ()
{
@@ -197,7 +196,6 @@ Parse_args ()
esac
done
-
}
Defaults ()
@@ -229,7 +227,6 @@ Defaults ()
Error "unrecognized resync string"
;;
esac
-
else
# Set target file based on image
case "${SNAP_TYPE}" in
@@ -246,14 +243,14 @@ Defaults ()
;;
esac
fi
-
}
Validate_input ()
{
- case "${SNAP_TYPE}" in
+ case "${SNAP_TYPE}" in
cpio|squashfs|jffs2|ext2|ext3)
;;
+
*)
Error "invalid filesystem type \"${SNAP_TYPE}\""
;;
@@ -279,6 +276,7 @@ Mount_device ()
# create a temp
mount -t tmpfs -o rw tmpfs "${MOUNTP}"
;;
+
*)
if [ -b "${SNAP_DEV}" ]
then
@@ -333,7 +331,7 @@ Main ()
Parse_args "${@}"
Defaults
Validate_input
- trap 'Clean' EXIT
+ trap 'Clean' EXIT
Mount_device
Do_snapshot
}