2023-08-29 22:07:38 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2023 tteck
|
|
|
|
# Author: tteck (tteckster)
|
|
|
|
# License: MIT
|
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
|
|
|
|
# Setup script environment
|
2023-08-30 01:17:30 +02:00
|
|
|
NAME="observium"
|
2023-08-29 22:07:38 +02:00
|
|
|
PASS="$(openssl rand -base64 8)"
|
2023-08-30 01:17:30 +02:00
|
|
|
CTID=$(pvesh get /cluster/nextid)
|
2023-08-30 20:04:52 +02:00
|
|
|
TEMPLATE_SEARCH="debian-11-turnkey-${NAME}"
|
2023-08-30 01:17:30 +02:00
|
|
|
PCT_DISK_SIZE="4"
|
2023-08-29 22:07:38 +02:00
|
|
|
PCT_OPTIONS="
|
|
|
|
-features keyctl=1,nesting=1
|
2023-08-30 01:17:30 +02:00
|
|
|
-hostname turnkey-${NAME}
|
2023-08-29 22:07:38 +02:00
|
|
|
-tags proxmox-helper-scripts
|
|
|
|
-onboot 1
|
|
|
|
-cores 2
|
|
|
|
-memory 2048
|
|
|
|
-password $PASS
|
|
|
|
-net0 name=eth0,bridge=vmbr0,ip=dhcp
|
|
|
|
-unprivileged 1
|
|
|
|
"
|
|
|
|
DEFAULT_PCT_OPTIONS=(
|
|
|
|
-arch $(dpkg --print-architecture)
|
|
|
|
)
|
|
|
|
function header_info {
|
|
|
|
clear
|
|
|
|
cat <<"EOF"
|
|
|
|
______ __ __ ____ __ _
|
|
|
|
/_ __/_ _________ / //_/__ __ __ / __ \/ / ___ ___ _____ __(_)_ ____ _
|
|
|
|
/ / / // / __/ _ \/ ,< / -_) // / / /_/ / _ \(_-</ -_) __/ |/ / / // / ' \
|
|
|
|
/_/ \_,_/_/ /_//_/_/|_|\__/\_, / \____/_.__/___/\__/_/ |___/_/\_,_/_/_/_/
|
|
|
|
/___/
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
header_info
|
2023-08-30 11:33:03 +02:00
|
|
|
read -p "Press ENTER to continue..."
|
2023-08-30 22:00:13 +02:00
|
|
|
header_info
|
2023-08-31 20:21:31 +02:00
|
|
|
set -eEuo pipefail
|
2023-08-29 22:07:38 +02:00
|
|
|
shopt -s expand_aliases
|
|
|
|
alias die='EXIT=$? LINE=$LINENO error_exit'
|
|
|
|
trap die ERR
|
|
|
|
|
|
|
|
function error_exit() {
|
|
|
|
trap - ERR
|
|
|
|
local DEFAULT='Unknown failure occured.'
|
|
|
|
local REASON="\e[97m${1:-$DEFAULT}\e[39m"
|
|
|
|
local FLAG="\e[91m[ERROR] \e[93m$EXIT@$LINE"
|
|
|
|
msg "$FLAG $REASON" 1>&2
|
|
|
|
[ ! -z ${CTID-} ] && cleanup_ctid
|
|
|
|
exit $EXIT
|
|
|
|
}
|
|
|
|
function warn() {
|
|
|
|
local REASON="\e[97m$1\e[39m"
|
|
|
|
local FLAG="\e[93m[WARNING]\e[39m"
|
|
|
|
msg "$FLAG $REASON"
|
|
|
|
}
|
|
|
|
function info() {
|
|
|
|
local REASON="$1"
|
|
|
|
local FLAG="\e[36m[INFO]\e[39m"
|
|
|
|
msg "$FLAG $REASON"
|
|
|
|
}
|
|
|
|
function msg() {
|
|
|
|
local TEXT="$1"
|
|
|
|
echo -e "$TEXT"
|
|
|
|
}
|
|
|
|
function cleanup_ctid() {
|
|
|
|
if pct status $CTID &>/dev/null; then
|
|
|
|
if [ "$(pct status $CTID | awk '{print $2}')" == "running" ]; then
|
|
|
|
pct stop $CTID
|
|
|
|
fi
|
|
|
|
pct destroy $CTID
|
|
|
|
fi
|
|
|
|
}
|
2023-08-31 14:48:11 +02:00
|
|
|
|
|
|
|
# Stop Proxmox VE Monitor-All if running
|
2023-08-29 22:07:38 +02:00
|
|
|
if systemctl is-active -q ping-instances.service; then
|
|
|
|
systemctl stop ping-instances.service
|
|
|
|
fi
|
2023-08-31 20:21:31 +02:00
|
|
|
|
|
|
|
# Set the CONTENT and CONTENT_LABEL variables
|
2023-08-29 22:07:38 +02:00
|
|
|
function select_storage() {
|
|
|
|
local CLASS=$1
|
|
|
|
local CONTENT
|
|
|
|
local CONTENT_LABEL
|
|
|
|
case $CLASS in
|
|
|
|
container) CONTENT='rootdir'; CONTENT_LABEL='Container';;
|
|
|
|
template) CONTENT='vztmpl'; CONTENT_LABEL='Container template';;
|
|
|
|
*) false || die "Invalid storage class.";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Query all storage locations
|
|
|
|
local -a MENU
|
|
|
|
while read -r line; do
|
|
|
|
local TAG=$(echo $line | awk '{print $1}')
|
|
|
|
local TYPE=$(echo $line | awk '{printf "%-10s", $2}')
|
|
|
|
local FREE=$(echo $line | numfmt --field 4-6 --from-unit=K --to=iec --format %.2f | awk '{printf( "%9sB", $6)}')
|
|
|
|
local ITEM=" Type: $TYPE Free: $FREE "
|
|
|
|
local OFFSET=2
|
|
|
|
if [[ $((${#ITEM} + $OFFSET)) -gt ${MSG_MAX_LENGTH:-} ]]; then
|
|
|
|
local MSG_MAX_LENGTH=$((${#ITEM} + $OFFSET))
|
|
|
|
fi
|
2023-08-31 20:21:31 +02:00
|
|
|
MENU+=("$TAG" "$ITEM" "OFF")
|
2023-08-29 22:07:38 +02:00
|
|
|
done < <(pvesm status -content $CONTENT | awk 'NR>1')
|
|
|
|
|
|
|
|
# Select storage location
|
2023-08-31 20:21:31 +02:00
|
|
|
if [ $((${#MENU[@]} / 3)) -eq 0 ]; then
|
2023-08-29 22:07:38 +02:00
|
|
|
warn "'$CONTENT_LABEL' needs to be selected for at least one storage location."
|
|
|
|
die "Unable to detect valid storage location."
|
2023-08-31 20:21:31 +02:00
|
|
|
elif [ $((${#MENU[@]} / 3)) -eq 1 ]; then
|
2023-08-29 22:07:38 +02:00
|
|
|
printf ${MENU[0]}
|
2023-08-31 20:21:31 +02:00
|
|
|
else
|
2023-08-29 22:07:38 +02:00
|
|
|
local STORAGE
|
2023-08-31 20:21:31 +02:00
|
|
|
while [ -z "${STORAGE:+x}" ]; do
|
2023-08-29 22:07:38 +02:00
|
|
|
STORAGE=$(whiptail --title "Storage Pools" --radiolist \
|
2023-08-31 20:21:31 +02:00
|
|
|
"Which storage pool you would like to use for the ${CONTENT_LABEL,,}?\n\n" \
|
|
|
|
16 $(($MSG_MAX_LENGTH + 23)) 6 \
|
|
|
|
"${MENU[@]}" 3>&1 1>&2 2>&3) || die "Menu aborted."
|
2023-08-29 22:07:38 +02:00
|
|
|
done
|
|
|
|
printf $STORAGE
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get template storage
|
|
|
|
TEMPLATE_STORAGE=$(select_storage template) || exit
|
|
|
|
info "Using '$TEMPLATE_STORAGE' for template storage."
|
|
|
|
|
|
|
|
# Get container storage
|
|
|
|
CONTAINER_STORAGE=$(select_storage container) || exit
|
|
|
|
info "Using '$CONTAINER_STORAGE' for container storage."
|
|
|
|
|
|
|
|
# Update LXC template list
|
|
|
|
msg "Updating LXC template list..."
|
|
|
|
pveam update >/dev/null
|
|
|
|
|
|
|
|
# Get LXC template string
|
|
|
|
mapfile -t TEMPLATES < <(pveam available -section turnkeylinux | sed -n "s/.*\($TEMPLATE_SEARCH.*\)/\1/p" | sort -t - -k 2 -V)
|
|
|
|
[ ${#TEMPLATES[@]} -gt 0 ] || die "Unable to find a template when searching for '$TEMPLATE_SEARCH'."
|
|
|
|
TEMPLATE="${TEMPLATES[-1]}"
|
|
|
|
|
|
|
|
# Download LXC template
|
|
|
|
if ! pveam list $TEMPLATE_STORAGE | grep -q $TEMPLATE; then
|
|
|
|
msg "Downloading LXC template (Patience)..."
|
|
|
|
pveam download $TEMPLATE_STORAGE $TEMPLATE >/dev/null ||
|
|
|
|
die "A problem occured while downloading the LXC template."
|
|
|
|
fi
|
|
|
|
|
2023-08-31 14:48:11 +02:00
|
|
|
# Create variable for 'pct' options
|
2023-08-31 20:21:31 +02:00
|
|
|
PCT_OPTIONS=(${PCT_OPTIONS[@]:-${DEFAULT_PCT_OPTIONS[@]}})
|
|
|
|
[[ " ${PCT_OPTIONS[@]} " =~ " -rootfs " ]] || PCT_OPTIONS+=(-rootfs $CONTAINER_STORAGE:${PCT_DISK_SIZE:-8})
|
2023-08-29 22:07:38 +02:00
|
|
|
|
|
|
|
# Create LXC
|
|
|
|
msg "Creating LXC container..."
|
|
|
|
pct create $CTID ${TEMPLATE_STORAGE}:vztmpl/${TEMPLATE} ${PCT_OPTIONS[@]} >/dev/null ||
|
|
|
|
die "A problem occured while trying to create container."
|
|
|
|
|
2023-08-31 14:48:11 +02:00
|
|
|
# Save password
|
|
|
|
echo "TurnKey ${NAME} password: ${PASS}" >>~/turnkey-${NAME}.creds # file is located in the Proxmox root directory
|
|
|
|
|
|
|
|
# Start container
|
2023-08-29 22:07:38 +02:00
|
|
|
msg "Starting LXC Container..."
|
|
|
|
pct start "$CTID"
|
2023-08-30 22:00:13 +02:00
|
|
|
sleep 5
|
2023-08-31 14:48:11 +02:00
|
|
|
|
|
|
|
# Get container IP
|
2023-08-31 20:21:31 +02:00
|
|
|
max_attempts=5
|
2023-08-31 14:48:11 +02:00
|
|
|
attempt=1
|
|
|
|
IP=""
|
|
|
|
while [[ $attempt -le $max_attempts ]]; do
|
2023-08-31 20:21:31 +02:00
|
|
|
IP=$(pct exec $CTID ip route get 8.8.8.8 | sed -n '/src/{s/.*src *\([^ ]*\).*/\1/p;q}')
|
|
|
|
if [[ -n $IP ]]; then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
warn "Attempt $attempt: IP address not found. Pausing for 5 seconds..."
|
|
|
|
sleep 5
|
|
|
|
((attempt++))
|
|
|
|
fi
|
2023-08-31 14:48:11 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -z $IP ]]; then
|
2023-08-31 20:21:31 +02:00
|
|
|
warn "Maximum number of attempts reached. IP address not found."
|
|
|
|
IP="NOT FOUND"
|
2023-08-31 14:48:11 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start Proxmox VE Monitor-All if available
|
2023-08-29 22:07:38 +02:00
|
|
|
if [[ -f /etc/systemd/system/ping-instances.service ]]; then
|
|
|
|
systemctl start ping-instances.service
|
|
|
|
fi
|
2023-08-31 14:48:11 +02:00
|
|
|
|
|
|
|
# Success message
|
2023-08-30 22:00:13 +02:00
|
|
|
header_info
|
|
|
|
echo
|
|
|
|
info "LXC container '$CTID' was successfully created, and its IP address is ${IP}."
|
|
|
|
echo
|
2023-08-29 22:07:38 +02:00
|
|
|
info "Proceed to the LXC console to complete the setup."
|
2023-08-30 22:00:13 +02:00
|
|
|
echo
|
2023-08-29 22:07:38 +02:00
|
|
|
info "login: root"
|
|
|
|
info "password: $PASS"
|
2023-08-31 20:21:31 +02:00
|
|
|
echo
|