summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-11-13 09:00:29 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:31:06 +0100
commit798715de7e444ceaae86e8cd4c7416a05b626392 (patch)
tree390ea327343d0e01c445022416513fde5c4ce9c0 /bin
parent30a2472d1e59cbc937fac6862529214a8a5a41d6 (diff)
downloadlive-boot-798715de7e444ceaae86e8cd4c7416a05b626392.tar.gz
live-boot-798715de7e444ceaae86e8cd4c7416a05b626392.zip
Fixed a few bashisms, thanks to Trent W. Buck <trentbuck@gmail.com>.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/live-snapshot6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/live-snapshot b/bin/live-snapshot
index a6b4154..3d0183d 100755
--- a/bin/live-snapshot
+++ b/bin/live-snapshot
@@ -83,7 +83,7 @@ Usage ()
if [ ! -z "${MESSAGE}" ]
then
- echo -e "${MESSAGE}"
+ /bin/echo -e "${MESSAGE}"
exit 1
else
exit 0
@@ -99,9 +99,9 @@ Help ()
echo " -c, --cow: specifies the copy on write directory (default: /live/cow)."
echo " -d, --device: specifies the output snapshot device (default: none)."
echo " -o, --output: specifies the output image file (default: ${type} dependent)."
- echo " -r, --resync-string: internally used to resync previous made snapshots."
+ echo " -r, --resync-string: internally used to resync previous made snapshots."
echo " -t, --type: specifies the snapshot type between \"squashfs\", \"ext2\", \"ext3\" or \"cpio\".gz archive (default: cpio)"
- echo -e "\nLook at live-snapshot(1) man page for more information."
+ /bin/echo -e "\nLook at live-snapshot(1) man page for more information."
exit 0
}