Update create_lxc.sh

This commit is contained in:
tteckster 2022-04-16 09:52:57 -04:00 committed by GitHub
parent cfa2ab2bda
commit b907db97f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 4 deletions

View File

@ -11,8 +11,20 @@ RD=`echo "\033[01;31m"`
GN=`echo "\033[1;92m"`
CL=`echo "\033[m"`
CM="${GN}${CL}"
BFR="\\r\\033[K"
HOLD="[-]"
trap die ERR
msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
function error_exit() {
trap - ERR
local DEFAULT='Unknown failure occured.'
@ -92,9 +104,9 @@ info "Using ${BL}$TEMPLATE_STORAGE${CL} for Template Storage."
CONTAINER_STORAGE=$(select_storage container) || exit
info "Using ${BL}$CONTAINER_STORAGE${CL} for Container Storage."
echo -en "${GN} Updating LXC Template List... "
msg_info "Updating LXC Template List"
pveam update >/dev/null
echo -e "${CM}${CL} \r"
msg_ok "Updating LXC Template List"
TEMPLATE_SEARCH=${PCT_OSTYPE}-${PCT_OSVERSION:-}
mapfile -t TEMPLATES < <(pveam available -section system | sed -n "s/.*\($TEMPLATE_SEARCH.*\)/\1/p" | sort -t - -k 2 -V)
@ -102,8 +114,8 @@ mapfile -t TEMPLATES < <(pveam available -section system | sed -n "s/.*\($TEMPLA
TEMPLATE="${TEMPLATES[-1]}"
if ! pveam list $TEMPLATE_STORAGE | grep -q $TEMPLATE; then
echo -en "${GN} Downloading LXC Template... "
echo -e "${CM}${CL} \r"
msg_info "Downloading LXC Template"
msg_ok "Downloading LXC Template"
pveam download $TEMPLATE_STORAGE $TEMPLATE >/dev/null ||
die "A problem occured while downloading the LXC template."
fi