catch unsupported state cases in __dog_vdi und __qemu_img

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
Nico Schottelius 2014-03-31 21:22:15 +02:00
parent b22b581b67
commit b7f8b5e339
3 changed files with 30 additions and 11 deletions

View File

@ -20,9 +20,17 @@
state_should="$(cat "$__object/parameter/state")"
if [ "$state_should" = "present" ]; then
if [ ! -f "$__object/parameter/size" ]; then
echo "Size is required when state is present" >&2
case "$state_should" in
present)
if [ ! -f "$__object/parameter/size" ]; then
echo "Size is required when state is present" >&2
exit 1
fi
absent)
:
;;
*)
echo "Unsupported state: $state_should" >&2
exit 1
fi
fi
;;
esac

View File

@ -3,11 +3,23 @@
#
format="$(cat "$__object/parameter/format")"
state="$(cat "$__object/parameter/state")"
state_should="$(cat "$__object/parameter/state")"
diskimage="/$__object_id"
# Absent is ensured by __file, present by gencode-remote
if [ "$state" = "absent" ]; then
__file "$diskimage" --state absent
fi
case "$state_should" in
present)
if [ ! -f "$__object/parameter/size" ]; then
echo "Size is required when state is present" >&2
exit 1
fi
;;
absent)
# Absent is ensured by __file, present by gencode-remote
__file "$diskimage" --state absent
;;
*)
echo "Unsupported state: $state_should" >&2
exit 1
;;
esac

View File

@ -1 +0,0 @@
size