Add files via upload

This commit is contained in:
2019-03-28 13:35:54 +03:00
committed by GitHub
commit e8ebfe59c5
8 changed files with 168 additions and 0 deletions

29
60-lxd Normal file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
# set column width
COLUMNS=2
# colors
green="\e[1;32m"
red="\e[1;31m"
undim="\e[0m"
mapfile -t containers < <(lxc list -c ns | awk '{ print $2,$4 }' | sed '/^\s*$/d' | tail -n +2)
out=""
for i in "${!containers[@]}"; do
IFS=" " read name status <<< ${containers[i]}
# color green if service is active, else red
if [[ "${status}" == "RUNNING" ]]; then
out+="${name}:,${green}${status,,}${undim},"
else
out+="${name}:,${red}${status,,}${undim},"
fi
# insert \n every $COLUMNS column
if [ $((($i+1) % $COLUMNS)) -eq 0 ]; then
out+="\n"
fi
done
out+="\n"
printf "\nlxd status:\n"
printf "$out" | column -ts $',' | sed -e 's/^/ /'