diff options
author | mischa <mischa@rx.high5.nl> | 2020-05-26 22:57:39 +0200 |
---|---|---|
committer | mischa <mischa@rx.high5.nl> | 2020-05-26 22:57:39 +0200 |
commit | ce71f0994d6b6c50a001ea97e1be542c969ae85b (patch) | |
tree | a863c7054dfb56e736de68e3057edc2bc1157d1e | |
parent | 1408dd210beae0866eeeb810633e6536c815acc5 (diff) |
added cease.sh
-rwxr-xr-x | cease.sh | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/cease.sh b/cease.sh new file mode 100755 index 0000000..b63d225 --- /dev/null +++ b/cease.sh @@ -0,0 +1,45 @@ +#!/bin/sh +# +# Copyright (c) 2019 Mischa Peters <mischa @ openbsd.amsterdam> +# +# Permission to use, copy, modify, and distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# +CONF_FILE="${PWD}/_deploy.conf" +if [[ -f "${CONF_FILE}" ]]; then + . "${CONF_FILE}" +else + echo "unable to find _deploy.conf" + exit 1 +fi +if [[ -z ${1} ]]; then + echo "usage: ${0##*/} vmXX.txt" + exit 1 +fi +if [[ ! -f "${VMS}/${1}" ]]; then + echo "unable to find ${VMS}/${1}" + exit 1 +fi + +if vmctl show ${1%.txt} >/dev/null 2>&1; then + if vmctl show ${1%.txt} | grep running >/dev/null 2>&1; then + echo "ERR: VM ${1%.txt} is still running..." + exit 1 + fi + if vmctl show ${1%.txt} | grep stopped >/dev/null 2>&1; then + remove.pl ${1} + deploy.pl + rcctl restart dhcpd + vmctl reload + fi +fi + |