|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] Fix blktap script
Hi,
I believe that we should use fatal() in xen-hotplug-common.sh if the
file does not exist.
Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx>
Best regards,
Kan
diff -r 1c826ea72a80 tools/examples/blktap
--- a/tools/examples/blktap Wed Jan 23 15:42:52 2008 +0000
+++ b/tools/examples/blktap Thu Jan 24 14:57:48 2008 +0900
@@ -71,9 +71,9 @@ fi
fi
# some versions of readlink cannot be passed a regular file
if [ -L "$p" ]; then
- file=$(readlink -f "$p") || ebusy "$p link does not exist."
+ file=$(readlink -f "$p") || fatal "$p link does not exist."
else
- [ -f "$p" ] || { ebusy "$p file does not exist."; }
+ [ -f "$p" ] || { fatal "$p file does not exist."; }
file="$p"
fi
@@ -85,7 +85,7 @@ fi
if [ "$command" = 'add' ]
then
- [ -e "$file" ] || { ebusy $file does not exist; }
+ [ -e "$file" ] || { fatal $file does not exist; }
success
fi
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH] Fix blktap script,
Masaki Kanno <=
|
|
|
|
|