|
|
@ -72,6 +72,15 @@ function PVE_CHECK() { |
|
|
|
exit |
|
|
|
exit |
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
function ARCH_CHECK() { |
|
|
|
|
|
|
|
ARCH=$(dpkg --print-architecture) |
|
|
|
|
|
|
|
if [[ "$ARCH" != "amd64" ]]; then |
|
|
|
|
|
|
|
echo -e "\n ❌ This script will not work with PiMox! \n" |
|
|
|
|
|
|
|
echo -e "Exiting..." |
|
|
|
|
|
|
|
sleep 2 |
|
|
|
|
|
|
|
exit |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
} |
|
|
|
if command -v pveversion >/dev/null 2>&1; then |
|
|
|
if command -v pveversion >/dev/null 2>&1; then |
|
|
|
if (whiptail --title "${APP} LXC" --yesno "This will create a New ${APP} LXC. Proceed?" 10 58); then |
|
|
|
if (whiptail --title "${APP} LXC" --yesno "This will create a New ${APP} LXC. Proceed?" 10 58); then |
|
|
|
NEXTID=$(pvesh get /cluster/nextid) |
|
|
|
NEXTID=$(pvesh get /cluster/nextid) |
|
|
@ -339,6 +348,7 @@ msg_ok "Updated ${APP} LXC" |
|
|
|
exit |
|
|
|
exit |
|
|
|
} |
|
|
|
} |
|
|
|
clear |
|
|
|
clear |
|
|
|
|
|
|
|
ARCH_CHECK |
|
|
|
if ! command -v pveversion >/dev/null 2>&1; then update_script; else install_script; fi |
|
|
|
if ! command -v pveversion >/dev/null 2>&1; then update_script; else install_script; fi |
|
|
|
if [ "$VERB" == "yes" ]; then set -x; fi |
|
|
|
if [ "$VERB" == "yes" ]; then set -x; fi |
|
|
|
if [ "$FUSE" == "yes" ]; then |
|
|
|
if [ "$FUSE" == "yes" ]; then |
|
|
|