catch unsupported state cases in __dog_vdi und __qemu_img

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
remotes/origin/feature_files_export
Nico Schottelius 11 years ago
parent b22b581b67
commit b7f8b5e339
  1. 18
      cdist/conf/type/__dog_vdi/manifest
  2. 22
      cdist/conf/type/__qemu_img/manifest
  3. 1
      cdist/conf/type/__qemu_img/parameter/required

@ -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

@ -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

Loading…
Cancel
Save