Compare commits

..

No commits in common. "7c1a73dfdcbe08b8548fdc2c53f57ed7d380a26d" and "2a069f6f9442d357a659b04abd2f01ca49cac2d5" have entirely different histories.

View File

@ -42,3 +42,12 @@ description
msg_ok "Completed Successfully!\n" msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
read -p "Remove this Container? <y/N> " prompt
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
pct stop "$CTID"
pct destroy "$CTID"
msg_ok "Removed this script"
else
msg_warn "Did not remove this script"
fi