Newer
Older
openstack-caracal-ipv4 / tests / phase-00-teardown / fakebin / juju
@JesseA123 JesseA123 18 hours ago 242 bytes Teardown scripts
#!/usr/bin/env bash
# fake juju: models --format=json from fixture; destroy-model succeeds.
sub="${1:-}"
case "$sub" in
  models) cat "${FIX_MODELS:?}"; exit 0 ;;
  destroy-model) echo "destroying model: $*"; exit 0 ;;
esac
echo "{}"; exit 0