2020-11-01 09:40:08 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2021-01-03 22:02:58 +01:00
|
|
|
# Copyright (c) 2019-2021 Mischa Peters <mischa @ openbsd.amsterdam>
|
2020-11-01 09:40:08 +01:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2020-11-01 12:11:28 +01:00
|
|
|
SLEEP=30
|
2020-11-25 11:10:29 +01:00
|
|
|
CPU=$(($(sysctl -n hw.ncpuonline)-2))
|
2020-11-01 09:40:08 +01:00
|
|
|
|
|
|
|
COUNTER=0
|
|
|
|
for i in $(vmctl show | sort | awk '/ running / {print $9}' | xargs); do
|
|
|
|
VMS[${COUNTER}]=${i}
|
|
|
|
COUNTER=$((${COUNTER}+1))
|
|
|
|
done
|
|
|
|
|
2021-01-12 18:49:49 +01:00
|
|
|
echo -n "Are you sure you want to power off ${COUNTER} vms? Press any key to continue... "
|
2020-11-01 09:40:08 +01:00
|
|
|
read input
|
|
|
|
echo -n "Are you really sure? Press any key to continue... "
|
|
|
|
read input
|
|
|
|
|
|
|
|
CYCLES=$((${#VMS[*]}/${CPU}+1))
|
|
|
|
echo "Stopping ${#VMS[*]} VMs on ${CPU} CPUs in ${CYCLES} cycle(s), waiting ${SLEEP} seconds after each cycle."
|
|
|
|
|
|
|
|
COUNTER=0
|
|
|
|
for i in ${VMS[*]}; do
|
|
|
|
COUNTER=$((${COUNTER}+1))
|
|
|
|
vmctl stop ${i}
|
|
|
|
if [ $COUNTER -eq $CPU ]; then
|
|
|
|
sleep ${SLEEP}
|
|
|
|
COUNTER=0
|
|
|
|
fi
|
|
|
|
done
|
2020-11-01 12:11:28 +01:00
|
|
|
sleep 30
|