Random password
外部サイトに頼らず、OS からパスワードを生成する仕組み。
外部サイトがコンプライアンスに違反していた場合に、この方法に乗り換えることが可能です。
Ref: https://serverfault.com/questions/283294/how-to-read-in-n-random-characters-from-dev-urandom
# the first argument: char count
randpw() {
local COUNT=$1
head -c 1000 /dev/random | tr -dc '!-~' | fold -w "${COUNT}" | head -n 1
}
12 文字のパスワードを生成する場合は randpw 12
を実行します。
Shutdown All VMs
VM を自動的にすべて終了させるスクリプト
すべての VM が終了するまで待ちます。
#!/usr/bin/env bash
INTERVAL=3
VBoxManage list runningvms | cut -d' ' -f1 | xargs -I{} VBoxManage controlvm {} acpipowerbutton
while [ $(VBoxManage list runningvms | wc -l) -ne 0 ]
do
echo "shutting down all VMs..."
sleep ${INTERVAL}
done