deploy.pl/relaunch.sh

46 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/sh
#
# Copyright (c) 2019-2021 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"
exit 1
fi
if [[ ! -f "${VMS}/${1}.txt" ]]; then
echo "unable to find ${VMS}/${1}"
exit 1
fi
if [[ ! -f "${IMAGES}/${1}.qcow2" ]]; then
echo "unable to find ${IMAGES}/${1}.qcow2"
exit 1
fi
/home/mischa/bin/deploy.pl
rcctl restart dhcpd
vmctl reload
vmctl start ${1}
sleep 30
echo "SUCCES! - deployed ${1}"
2021-05-02 19:39:49 +02:00
cp -v /home/mischa/templates/email-deployed.txt-redeploy /home/mischa/templates/email-deployed.txt
/home/mischa/bin/notify.pl deployed ${1}
2021-05-02 19:39:49 +02:00
cp -v /home/mischa/templates/email-deployed.txt-orig /home/mischa/templates/email-deployed.txt