bugfix __qemu_img

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-11-19 17:42:39 +01:00
parent 8408f433e9
commit b996dcbae1
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
# not existing and state != absent # not existing and state != absent
# #
state="present" state="present"
[ -f "$__object/parameter/state" ] state="$(cat "$__object/parameter/state")" [ -f "$__object/parameter/state" ] && state="$(cat "$__object/parameter/state")"
[ "$state" = "absent" ] && exit 0 [ "$state" = "absent" ] && exit 0
exists="$(cat "$__object/explorer/exists")" exists="$(cat "$__object/explorer/exists")"