Update debian-v3.sh

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

View File

@ -7,6 +7,8 @@ RD=`echo "\033[01;31m"`
BGN=`echo "\033[4;92m"`
GN=`echo "\033[32m"`
CL=`echo "\033[m"`
BFR="\\r\\033[K"
HOLD="[-]"
CM="${GN}${CL}"
APP="Debian"
NSAPP=$(echo ${APP,,} | tr -d ' ')
@ -32,6 +34,16 @@ ${CL}"
header_info
msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}
function PVE_CHECK() {
PVE=$(pveversion | grep "pve-manager/7" | wc -l)
@ -318,9 +330,9 @@ if [ "$STORAGE_TYPE" == "zfspool" ]; then
warn "Some applications may not work properly due to ZFS not supporting 'fallocate'."
fi
echo -en "${GN} Starting LXC Container... "
msg_info "Starting LXC Container"
pct start $CTID
echo -e "${CM}${CL} \r"
msg_ok "Starting LXC Container"
alias lxc-cmd="lxc-attach -n $CTID --"