Compare commits
26 Commits
b5484631e2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f4ec66364 | |||
| 5fd99cd900 | |||
| 8c14a8e4b2 | |||
| 084aa6da51 | |||
| f561955072 | |||
| 39fdd33a4f | |||
| d0b80fb2c9 | |||
| 7cf0533fa9 | |||
| 251488ab87 | |||
| 5e7a201486 | |||
| 1833a68cfd | |||
| e4ee7e258f | |||
| c9eb56efc4 | |||
| d05446a96e | |||
| 0f452b323b | |||
| 9ac4868166 | |||
| 74377e2903 | |||
| 7181decda3 | |||
| 3ed352f2b3 | |||
| 904635c346 | |||
| 21bc334cdf | |||
| 3bbde6c733 | |||
| 7154beaf7d | |||
| 0629eadf85 | |||
| 5ecc21bb9d | |||
| bffb3b2853 |
589
debian-12-vm.sh
589
debian-12-vm.sh
@@ -1,589 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2025 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<<$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func)
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
____ __ _ ______
|
||||
/ __ \___ / /_ (_)___ _____ < /__ \
|
||||
/ / / / _ \/ __ \/ / __ `/ __ \ / /__/ /
|
||||
/ /_/ / __/ /_/ / / /_/ / / / / / // __/
|
||||
/_____/\___/_.___/_/\__,_/_/ /_/ /_//____/
|
||||
|
||||
EOF
|
||||
}
|
||||
header_info
|
||||
echo -e "\n Loading..."
|
||||
GEN_MAC=02:$(openssl rand -hex 5 | awk '{print toupper($0)}' | sed 's/\(..\)/\1:/g; s/.$//')
|
||||
RANDOM_UUID="$(cat /proc/sys/kernel/random/uuid)"
|
||||
METHOD=""
|
||||
NSAPP="debian12vm"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
|
||||
YW=$(echo "\033[33m")
|
||||
BL=$(echo "\033[36m")
|
||||
RD=$(echo "\033[01;31m")
|
||||
BGN=$(echo "\033[4;92m")
|
||||
GN=$(echo "\033[1;92m")
|
||||
DGN=$(echo "\033[32m")
|
||||
CL=$(echo "\033[m")
|
||||
|
||||
CL=$(echo "\033[m")
|
||||
BOLD=$(echo "\033[1m")
|
||||
BFR="\\r\\033[K"
|
||||
HOLD=" "
|
||||
TAB=" "
|
||||
|
||||
CM="${TAB}✔️${TAB}${CL}"
|
||||
CROSS="${TAB}✖️${TAB}${CL}"
|
||||
INFO="${TAB}💡${TAB}${CL}"
|
||||
OS="${TAB}🖥️${TAB}${CL}"
|
||||
CONTAINERTYPE="${TAB}📦${TAB}${CL}"
|
||||
DISKSIZE="${TAB}💾${TAB}${CL}"
|
||||
CPUCORE="${TAB}🧠${TAB}${CL}"
|
||||
RAMSIZE="${TAB}🛠️${TAB}${CL}"
|
||||
CONTAINERID="${TAB}🆔${TAB}${CL}"
|
||||
HOSTNAME="${TAB}🏠${TAB}${CL}"
|
||||
BRIDGE="${TAB}🌉${TAB}${CL}"
|
||||
GATEWAY="${TAB}🌐${TAB}${CL}"
|
||||
DEFAULT="${TAB}⚙️${TAB}${CL}"
|
||||
MACADDRESS="${TAB}🔗${TAB}${CL}"
|
||||
VLANTAG="${TAB}🏷️${TAB}${CL}"
|
||||
CREATING="${TAB}🚀${TAB}${CL}"
|
||||
ADVANCED="${TAB}🧩${TAB}${CL}"
|
||||
CLOUD="${TAB}☁️${TAB}${CL}"
|
||||
|
||||
THIN="discard=on,ssd=1,"
|
||||
set -e
|
||||
trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
|
||||
trap cleanup EXIT
|
||||
trap 'post_update_to_api "failed" "INTERRUPTED"' SIGINT
|
||||
trap 'post_update_to_api "failed" "TERMINATED"' SIGTERM
|
||||
function error_handler() {
|
||||
local exit_code="$?"
|
||||
local line_number="$1"
|
||||
local command="$2"
|
||||
local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}"
|
||||
post_update_to_api "failed" "${exit_code}"
|
||||
echo -e "\n$error_message\n"
|
||||
cleanup_vmid
|
||||
}
|
||||
|
||||
function get_valid_nextid() {
|
||||
local try_id
|
||||
try_id=$(pvesh get /cluster/nextid)
|
||||
while true; do
|
||||
if [ -f "/etc/pve/qemu-server/${try_id}.conf" ] || [ -f "/etc/pve/lxc/${try_id}.conf" ]; then
|
||||
try_id=$((try_id + 1))
|
||||
continue
|
||||
fi
|
||||
if lvs --noheadings -o lv_name | grep -qE "(^|[-_])${try_id}($|[-_])"; then
|
||||
try_id=$((try_id + 1))
|
||||
continue
|
||||
fi
|
||||
break
|
||||
done
|
||||
echo "$try_id"
|
||||
}
|
||||
|
||||
function cleanup_vmid() {
|
||||
if qm status $VMID &>/dev/null; then
|
||||
qm stop $VMID &>/dev/null
|
||||
qm destroy $VMID &>/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
function cleanup() {
|
||||
local exit_code=$?
|
||||
popd >/dev/null
|
||||
if [[ "${POST_TO_API_DONE:-}" == "true" && "${POST_UPDATE_DONE:-}" != "true" ]]; then
|
||||
if [[ $exit_code -eq 0 ]]; then
|
||||
post_update_to_api "done" "none"
|
||||
else
|
||||
post_update_to_api "failed" "$exit_code"
|
||||
fi
|
||||
fi
|
||||
rm -rf $TEMP_DIR
|
||||
}
|
||||
|
||||
TEMP_DIR=$(mktemp -d)
|
||||
pushd $TEMP_DIR >/dev/null
|
||||
if whiptail --backtitle "Proxmox VE Helper Scripts" --title "Debian 12 VM" --yesno "This will create a New Debian 12 VM. Proceed?" 10 58; then
|
||||
:
|
||||
else
|
||||
header_info && echo -e "${CROSS}${RD}User exited script${CL}\n" && exit
|
||||
fi
|
||||
|
||||
function msg_info() {
|
||||
local msg="$1"
|
||||
echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}"
|
||||
}
|
||||
|
||||
function msg_ok() {
|
||||
local msg="$1"
|
||||
echo -e "${BFR}${CM}${GN}${msg}${CL}"
|
||||
}
|
||||
|
||||
function msg_error() {
|
||||
local msg="$1"
|
||||
echo -e "${BFR}${CROSS}${RD}${msg}${CL}"
|
||||
}
|
||||
|
||||
function check_root() {
|
||||
if [[ "$(id -u)" -ne 0 || $(ps -o comm= -p $PPID) == "sudo" ]]; then
|
||||
clear
|
||||
msg_error "Please run this script as root."
|
||||
echo -e "\nExiting..."
|
||||
sleep 2
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
# This function checks the version of Proxmox Virtual Environment (PVE) and exits if the version is not supported.
|
||||
# Supported: Proxmox VE 8.0.x – 8.9.x, 9.0 and 9.1
|
||||
pve_check() {
|
||||
local PVE_VER
|
||||
PVE_VER="$(pveversion | awk -F'/' '{print $2}' | awk -F'-' '{print $1}')"
|
||||
|
||||
# Check for Proxmox VE 8.x: allow 8.0–8.9
|
||||
if [[ "$PVE_VER" =~ ^8\.([0-9]+) ]]; then
|
||||
local MINOR="${BASH_REMATCH[1]}"
|
||||
if ((MINOR < 0 || MINOR > 9)); then
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported: Proxmox VE version 8.0 – 8.9"
|
||||
exit 1
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Check for Proxmox VE 9.x: allow 9.0 and 9.1
|
||||
if [[ "$PVE_VER" =~ ^9\.([0-9]+) ]]; then
|
||||
local MINOR="${BASH_REMATCH[1]}"
|
||||
if ((MINOR < 0 || MINOR > 1)); then
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported: Proxmox VE version 9.0 – 9.1"
|
||||
exit 1
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
|
||||
# All other unsupported versions
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported versions: Proxmox VE 8.0 – 8.x or 9.0 – 9.1"
|
||||
exit 1
|
||||
}
|
||||
|
||||
function arch_check() {
|
||||
if [ "$(dpkg --print-architecture)" != "amd64" ]; then
|
||||
echo -e "\n ${INFO}${YWB}This script will not work with PiMox! \n"
|
||||
echo -e "\n ${YWB}Visit https://github.com/asylumexp/Proxmox for ARM64 support. \n"
|
||||
echo -e "Exiting..."
|
||||
sleep 2
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
function ssh_check() {
|
||||
if command -v pveversion >/dev/null 2>&1; then
|
||||
if [ -n "${SSH_CLIENT:+x}" ]; then
|
||||
if whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "SSH DETECTED" --yesno "It's suggested to use the Proxmox shell instead of SSH, since SSH can create issues while gathering variables. Would you like to proceed with using SSH?" 10 62; then
|
||||
echo "you've been warned"
|
||||
else
|
||||
clear
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
function exit-script() {
|
||||
clear
|
||||
echo -e "\n${CROSS}${RD}User exited script${CL}\n"
|
||||
exit
|
||||
}
|
||||
|
||||
function default_settings() {
|
||||
VMID=$(get_valid_nextid)
|
||||
FORMAT=",efitype=4m"
|
||||
MACHINE=""
|
||||
DISK_SIZE="8G"
|
||||
DISK_CACHE=""
|
||||
HN="debian"
|
||||
CPU_TYPE=""
|
||||
CORE_COUNT="2"
|
||||
RAM_SIZE="2048"
|
||||
BRG="vmbr0"
|
||||
MAC="$GEN_MAC"
|
||||
VLAN=""
|
||||
MTU=""
|
||||
START_VM="yes"
|
||||
CLOUD_INIT="no"
|
||||
METHOD="default"
|
||||
echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}${VMID}${CL}"
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}i440fx${CL}"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}${DISK_SIZE}${CL}"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}"
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}${HN}${CL}"
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}"
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}${CORE_COUNT}${CL}"
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}${RAM_SIZE}${CL}"
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}${BRG}${CL}"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}${MAC}${CL}"
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}Default${CL}"
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}Default${CL}"
|
||||
echo -e "${CLOUD}${BOLD}${DGN}Configure Cloud-init: ${BGN}no${CL}"
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}"
|
||||
echo -e "${CREATING}${BOLD}${DGN}Creating a Debian 12 VM using the above default settings${CL}"
|
||||
}
|
||||
|
||||
function advanced_settings() {
|
||||
METHOD="advanced"
|
||||
[ -z "${VMID:-}" ] && VMID=$(get_valid_nextid)
|
||||
while true; do
|
||||
if VMID=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Virtual Machine ID" 8 58 $VMID --title "VIRTUAL MACHINE ID" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$VMID" ]; then
|
||||
VMID=$(get_valid_nextid)
|
||||
fi
|
||||
if pct status "$VMID" &>/dev/null || qm status "$VMID" &>/dev/null; then
|
||||
echo -e "${CROSS}${RD} ID $VMID is already in use${CL}"
|
||||
sleep 2
|
||||
continue
|
||||
fi
|
||||
echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}$VMID${CL}"
|
||||
break
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
done
|
||||
|
||||
if MACH=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "MACHINE TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 10 58 2 \
|
||||
"i440fx" "Machine i440fx" ON \
|
||||
"q35" "Machine q35" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ $MACH = q35 ]; then
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}"
|
||||
FORMAT=""
|
||||
MACHINE=" -machine q35"
|
||||
else
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}"
|
||||
FORMAT=",efitype=4m"
|
||||
MACHINE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if DISK_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Disk Size in GiB (e.g., 10, 20)" 8 58 "$DISK_SIZE" --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
DISK_SIZE=$(echo "$DISK_SIZE" | tr -d ' ')
|
||||
if [[ "$DISK_SIZE" =~ ^[0-9]+$ ]]; then
|
||||
DISK_SIZE="${DISK_SIZE}G"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}"
|
||||
elif [[ "$DISK_SIZE" =~ ^[0-9]+G$ ]]; then
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}"
|
||||
else
|
||||
echo -e "${DISKSIZE}${BOLD}${RD}Invalid Disk Size. Please use a number (e.g., 10 or 10G).${CL}"
|
||||
exit-script
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \
|
||||
"0" "None (Default)" ON \
|
||||
"1" "Write Through" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ $DISK_CACHE = "1" ]; then
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}Write Through${CL}"
|
||||
DISK_CACHE="cache=writethrough,"
|
||||
else
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}"
|
||||
DISK_CACHE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if VM_NAME=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Hostname" 8 58 debian --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $VM_NAME ]; then
|
||||
HN="debian"
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}"
|
||||
else
|
||||
HN=$(echo ${VM_NAME,,} | tr -d ' ')
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if CPU_TYPE1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CPU MODEL" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \
|
||||
"0" "KVM64 (Default)" ON \
|
||||
"1" "Host" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ $CPU_TYPE1 = "1" ]; then
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}Host${CL}"
|
||||
CPU_TYPE=" -cpu host"
|
||||
else
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}"
|
||||
CPU_TYPE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if CORE_COUNT=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate CPU Cores" 8 58 2 --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $CORE_COUNT ]; then
|
||||
CORE_COUNT="2"
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}"
|
||||
else
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if RAM_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate RAM in MiB" 8 58 2048 --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $RAM_SIZE ]; then
|
||||
RAM_SIZE="2048"
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}"
|
||||
else
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $BRG ]; then
|
||||
BRG="vmbr0"
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
||||
else
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if MAC1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $MAC1 ]; then
|
||||
MAC="$GEN_MAC"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC${CL}"
|
||||
else
|
||||
MAC="$MAC1"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if VLAN1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $VLAN1 ]; then
|
||||
VLAN1="Default"
|
||||
VLAN=""
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}"
|
||||
else
|
||||
VLAN=",tag=$VLAN1"
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if MTU1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Interface MTU Size (leave blank for default)" 8 58 --title "MTU SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z $MTU1 ]; then
|
||||
MTU1="Default"
|
||||
MTU=""
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}"
|
||||
else
|
||||
MTU=",mtu=$MTU1"
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "CLOUD-INIT" --yesno "Configure the VM with Cloud-init?" --defaultno 10 58); then
|
||||
echo -e "${CLOUD}${BOLD}${DGN}Configure Cloud-init: ${BGN}yes${CL}"
|
||||
CLOUD_INIT="yes"
|
||||
else
|
||||
echo -e "${CLOUD}${BOLD}${DGN}Configure Cloud-init: ${BGN}no${CL}"
|
||||
CLOUD_INIT="no"
|
||||
fi
|
||||
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "START VIRTUAL MACHINE" --yesno "Start VM when completed?" 10 58); then
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}"
|
||||
START_VM="yes"
|
||||
else
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}no${CL}"
|
||||
START_VM="no"
|
||||
fi
|
||||
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create a Debian 12 VM?" --no-button Do-Over 10 58); then
|
||||
echo -e "${CREATING}${BOLD}${DGN}Creating a Debian 12 VM using the above advanced settings${CL}"
|
||||
else
|
||||
header_info
|
||||
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
||||
advanced_settings
|
||||
fi
|
||||
}
|
||||
|
||||
function start_script() {
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then
|
||||
header_info
|
||||
echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}"
|
||||
default_settings
|
||||
else
|
||||
header_info
|
||||
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
||||
advanced_settings
|
||||
fi
|
||||
}
|
||||
|
||||
check_root
|
||||
arch_check
|
||||
pve_check
|
||||
ssh_check
|
||||
start_script
|
||||
|
||||
post_to_api_vm
|
||||
|
||||
msg_info "Validating Storage"
|
||||
while read -r line; do
|
||||
TAG=$(echo $line | awk '{print $1}')
|
||||
TYPE=$(echo $line | awk '{printf "%-10s", $2}')
|
||||
FREE=$(echo $line | numfmt --field 4-6 --from-unit=K --to=iec --format %.2f | awk '{printf( "%9sB", $6)}')
|
||||
ITEM=" Type: $TYPE Free: $FREE "
|
||||
OFFSET=2
|
||||
if [[ $((${#ITEM} + $OFFSET)) -gt ${MSG_MAX_LENGTH:-} ]]; then
|
||||
MSG_MAX_LENGTH=$((${#ITEM} + $OFFSET))
|
||||
fi
|
||||
STORAGE_MENU+=("$TAG" "$ITEM" "OFF")
|
||||
done < <(pvesm status -content images | awk 'NR>1')
|
||||
VALID=$(pvesm status -content images | awk 'NR>1')
|
||||
if [ -z "$VALID" ]; then
|
||||
msg_error "Unable to detect a valid storage location."
|
||||
exit
|
||||
elif [ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]; then
|
||||
STORAGE=${STORAGE_MENU[0]}
|
||||
else
|
||||
while [ -z "${STORAGE:+x}" ]; do
|
||||
STORAGE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Storage Pools" --radiolist \
|
||||
"Which storage pool would you like to use for ${HN}?\nTo make a selection, use the Spacebar.\n" \
|
||||
16 $(($MSG_MAX_LENGTH + 23)) 6 \
|
||||
"${STORAGE_MENU[@]}" 3>&1 1>&2 2>&3)
|
||||
done
|
||||
fi
|
||||
msg_ok "Using ${CL}${BL}$STORAGE${CL} ${GN}for Storage Location."
|
||||
msg_ok "Virtual Machine ID is ${CL}${BL}$VMID${CL}."
|
||||
msg_info "Retrieving the URL for the Debian 12 Qcow2 Disk Image"
|
||||
if [ "$CLOUD_INIT" == "yes" ]; then
|
||||
URL=https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-genericcloud-amd64.qcow2
|
||||
else
|
||||
URL=https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-nocloud-amd64.qcow2
|
||||
fi
|
||||
sleep 2
|
||||
msg_ok "${CL}${BL}${URL}${CL}"
|
||||
curl -f#SL -o "$(basename "$URL")" "$URL"
|
||||
echo -en "\e[1A\e[0K"
|
||||
FILE=$(basename $URL)
|
||||
msg_ok "Downloaded ${CL}${BL}${FILE}${CL}"
|
||||
|
||||
STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}')
|
||||
case $STORAGE_TYPE in
|
||||
nfs | dir)
|
||||
DISK_EXT=".qcow2"
|
||||
DISK_REF="$VMID/"
|
||||
DISK_IMPORT="-format qcow2"
|
||||
THIN=""
|
||||
;;
|
||||
btrfs)
|
||||
DISK_EXT=".raw"
|
||||
DISK_REF="$VMID/"
|
||||
DISK_IMPORT="-format raw"
|
||||
FORMAT=",efitype=4m"
|
||||
THIN=""
|
||||
;;
|
||||
*)
|
||||
DISK_EXT=""
|
||||
DISK_REF=""
|
||||
DISK_IMPORT="-format raw"
|
||||
;;
|
||||
esac
|
||||
for i in {0,1}; do
|
||||
disk="DISK$i"
|
||||
eval DISK${i}=vm-${VMID}-disk-${i}${DISK_EXT:-}
|
||||
eval DISK${i}_REF=${STORAGE}:${DISK_REF:-}${!disk}
|
||||
done
|
||||
|
||||
msg_info "Creating a Debian 12 VM"
|
||||
qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \
|
||||
-name $HN -tags community-script -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci
|
||||
pvesm alloc $STORAGE $VMID $DISK0 4M 1>&/dev/null
|
||||
qm importdisk $VMID ${FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null
|
||||
if [ "$CLOUD_INIT" == "yes" ]; then
|
||||
qm set $VMID \
|
||||
-efidisk0 ${DISK0_REF}${FORMAT} \
|
||||
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \
|
||||
-scsi1 ${STORAGE}:cloudinit \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket >/dev/null
|
||||
else
|
||||
qm set $VMID \
|
||||
-efidisk0 ${DISK0_REF}${FORMAT} \
|
||||
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket >/dev/null
|
||||
fi
|
||||
DESCRIPTION=$(
|
||||
cat <<EOF
|
||||
<div align='center'>
|
||||
<a href='https://Helper-Scripts.com' target='_blank' rel='noopener noreferrer'>
|
||||
<img src='https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/images/logo-81x112.png' alt='Logo' style='width:81px;height:112px;'/>
|
||||
</a>
|
||||
|
||||
<h2 style='font-size: 24px; margin: 20px 0;'>Debian VM</h2>
|
||||
|
||||
<p style='margin: 16px 0;'>
|
||||
<a href='https://ko-fi.com/community_scripts' target='_blank' rel='noopener noreferrer'>
|
||||
<img src='https://img.shields.io/badge/☕-Buy us a coffee-blue' alt='spend Coffee' />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-github fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>GitHub</a>
|
||||
</span>
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-comments fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE/discussions' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>Discussions</a>
|
||||
</span>
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-exclamation-circle fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE/issues' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>Issues</a>
|
||||
</span>
|
||||
</div>
|
||||
EOF
|
||||
)
|
||||
qm set "$VMID" -description "$DESCRIPTION" >/dev/null
|
||||
if [ -n "$DISK_SIZE" ]; then
|
||||
msg_info "Resizing disk to $DISK_SIZE GB"
|
||||
qm resize $VMID scsi0 ${DISK_SIZE} >/dev/null
|
||||
else
|
||||
msg_info "Using default disk size of $DEFAULT_DISK_SIZE GB"
|
||||
qm resize $VMID scsi0 ${DEFAULT_DISK_SIZE} >/dev/null
|
||||
fi
|
||||
|
||||
msg_ok "Created a Debian 12 VM ${CL}${BL}(${HN})"
|
||||
if [ "$START_VM" == "yes" ]; then
|
||||
msg_info "Starting Debian 12 VM"
|
||||
qm start $VMID
|
||||
msg_ok "Started Debian 12 VM"
|
||||
fi
|
||||
|
||||
msg_ok "Completed successfully!\n"
|
||||
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"
|
||||
377
debian-13-fr-vm-v2.sh
Normal file
377
debian-13-fr-vm-v2.sh
Normal file
@@ -0,0 +1,377 @@
|
||||
#!/usr/bin/env bash
|
||||
# Debian 13 (Trixie) VM - AZYLIS preset
|
||||
# - Bridge par défaut: dhcp
|
||||
# - Cloud-init: activé par défaut
|
||||
# - IPv4: DHCP (ipconfig0)
|
||||
# - Locale/Clavier: FR robuste (kbd + console-setup + loadkeys)
|
||||
# - Agent Proxmox: qemu-guest-agent
|
||||
# - Resize disque: qm resize + growpart/resize_rootfs
|
||||
# - Pas d'auto-start: onboot=0 + ne démarre pas la VM à la fin
|
||||
# - Console noVNC plus confortable: VGA virtio + GRUB_GFXMODE 1920x1080
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
# -----------------------------
|
||||
# Defaults (tu peux changer ici)
|
||||
# -----------------------------
|
||||
HN_DEFAULT="debian13"
|
||||
BRG_DEFAULT="dhcp"
|
||||
CORE_DEFAULT="2"
|
||||
RAM_DEFAULT="2048" # MiB
|
||||
DISK_DEFAULT="20G" # ex: 8G, 20G, 50G
|
||||
START_VM_DEFAULT="no" # yes/no
|
||||
ONBOOT_DEFAULT="1" # 0/1
|
||||
|
||||
# Root access via Proxmox cloud-init fields
|
||||
CI_USER_DEFAULT="root"
|
||||
CI_PASS_DEFAULT="root" # ATTENTION: à adapter en prod
|
||||
|
||||
# Debian 13 cloud image
|
||||
DEBIAN13_URL="https://cloud.debian.org/images/cloud/trixie/latest/debian-13-genericcloud-amd64.qcow2"
|
||||
|
||||
# Notes/logo (Proxmox description)
|
||||
AZYLIS_SITE="https://www.azylis.net"
|
||||
AZYLIS_LOGO="https://www.azylis.net/favicon.ico" # si tu as une URL PNG/SVG directe du logo, remplace ici
|
||||
|
||||
# -----------------------------
|
||||
# Helpers
|
||||
# -----------------------------
|
||||
YW=$'\033[33m'
|
||||
GN=$'\033[1;92m'
|
||||
RD=$'\033[01;31m'
|
||||
BL=$'\033[36m'
|
||||
CL=$'\033[m'
|
||||
TAB=" "
|
||||
|
||||
msg_info(){ echo -e "${TAB}${YW}▶${CL} $*"; }
|
||||
msg_ok(){ echo -e "${TAB}${GN}✔${CL} $*"; }
|
||||
msg_err(){ echo -e "${TAB}${RD}✖${CL} $*" >&2; }
|
||||
|
||||
need_cmd() { command -v "$1" >/dev/null 2>&1 || { msg_err "Commande manquante: $1"; exit 1; }; }
|
||||
|
||||
get_valid_nextid() {
|
||||
local try_id
|
||||
try_id=$(pvesh get /cluster/nextid)
|
||||
while true; do
|
||||
if [ -f "/etc/pve/qemu-server/${try_id}.conf" ] || [ -f "/etc/pve/lxc/${try_id}.conf" ]; then
|
||||
try_id=$((try_id + 1)); continue
|
||||
fi
|
||||
if lvs --noheadings -o lv_name 2>/dev/null | grep -qE "(^|[-_])${try_id}($|[-_])"; then
|
||||
try_id=$((try_id + 1)); continue
|
||||
fi
|
||||
break
|
||||
done
|
||||
echo "$try_id"
|
||||
}
|
||||
|
||||
# -----------------------------
|
||||
# Pre-flight
|
||||
# -----------------------------
|
||||
if [[ "$(id -u)" -ne 0 ]]; then
|
||||
msg_err "Lance ce script en root sur le noeud Proxmox."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
need_cmd pvesh
|
||||
need_cmd pvesm
|
||||
need_cmd qm
|
||||
need_cmd curl
|
||||
need_cmd awk
|
||||
need_cmd sed
|
||||
|
||||
if ! command -v whiptail >/dev/null 2>&1; then
|
||||
msg_err "whiptail n'est pas installé. Installe-le: apt update && apt install -y whiptail"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# -----------------------------
|
||||
# UI
|
||||
# -----------------------------
|
||||
VMID="$(get_valid_nextid)"
|
||||
HN="$HN_DEFAULT"
|
||||
BRG="$BRG_DEFAULT"
|
||||
CORE_COUNT="$CORE_DEFAULT"
|
||||
RAM_SIZE="$RAM_DEFAULT"
|
||||
DISK_SIZE="$DISK_DEFAULT"
|
||||
START_VM="$START_VM_DEFAULT"
|
||||
|
||||
if ! whiptail --backtitle "AZYLIS - Proxmox" --title "Debian 13 VM" --yesno \
|
||||
"Ce script va créer une VM Debian 13 (cloud image) avec presets AZYLIS.\n\nContinuer ?" 12 70; then
|
||||
msg_err "Annulé."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
HN="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Hostname" --inputbox "Hostname VM:" 8 60 "$HN" 3>&1 1>&2 2>&3 || true)"
|
||||
HN="${HN:-$HN_DEFAULT}"
|
||||
|
||||
BRG="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Bridge" --inputbox "Bridge Proxmox (nom Linux):" 8 60 "$BRG" 3>&1 1>&2 2>&3 || true)"
|
||||
BRG="${BRG:-$BRG_DEFAULT}"
|
||||
|
||||
CORE_COUNT="$(whiptail --backtitle "AZYLIS - Proxmox" --title "CPU" --inputbox "vCPU:" 8 60 "$CORE_COUNT" 3>&1 1>&2 2>&3 || true)"
|
||||
CORE_COUNT="${CORE_COUNT:-$CORE_DEFAULT}"
|
||||
|
||||
RAM_SIZE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "RAM" --inputbox "RAM (MiB):" 8 60 "$RAM_SIZE" 3>&1 1>&2 2>&3 || true)"
|
||||
RAM_SIZE="${RAM_SIZE:-$RAM_DEFAULT}"
|
||||
|
||||
DISK_SIZE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Disque" --inputbox "Taille disque (ex: 20G):" 8 60 "$DISK_SIZE" 3>&1 1>&2 2>&3 || true)"
|
||||
DISK_SIZE="${DISK_SIZE:-$DISK_DEFAULT}"
|
||||
|
||||
if whiptail --backtitle "AZYLIS - Proxmox" --title "Démarrage" --defaultno --yesno \
|
||||
"Démarrer la VM automatiquement à la fin ?" 10 70; then
|
||||
START_VM="yes"
|
||||
else
|
||||
START_VM="no"
|
||||
fi
|
||||
|
||||
# -----------------------------
|
||||
# Storage selection (images)
|
||||
# -----------------------------
|
||||
msg_info "Détection des stockages compatibles (content: images)"
|
||||
STORAGE_MENU=()
|
||||
MSG_MAX_LEN=0
|
||||
|
||||
while read -r line; do
|
||||
TAG="$(awk '{print $1}' <<<"$line")"
|
||||
TYPE="$(awk '{print $2}' <<<"$line")"
|
||||
FREE="$(awk '{print $6}' <<<"$(pvesm status -storage "$TAG" | awk 'NR==2{print}')" 2>/dev/null || true)"
|
||||
ITEM="Type: ${TYPE} Free: ${FREE:-?}"
|
||||
(( ${#ITEM} > MSG_MAX_LEN )) && MSG_MAX_LEN=${#ITEM}
|
||||
STORAGE_MENU+=("$TAG" "$ITEM" "OFF")
|
||||
done < <(pvesm status -content images | awk 'NR>1')
|
||||
|
||||
if [[ ${#STORAGE_MENU[@]} -lt 3 ]]; then
|
||||
msg_err "Aucun stockage valide détecté (content images)."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]]; then
|
||||
STORAGE="${STORAGE_MENU[0]}"
|
||||
else
|
||||
STORAGE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Storage" --radiolist \
|
||||
"Choisis le stockage pour la VM:" 16 $((MSG_MAX_LEN + 30)) 6 \
|
||||
"${STORAGE_MENU[@]}" 3>&1 1>&2 2>&3)"
|
||||
fi
|
||||
|
||||
msg_ok "Storage: ${BL}${STORAGE}${CL}"
|
||||
msg_ok "VMID: ${BL}${VMID}${CL} | Hostname: ${BL}${HN}${CL} | Bridge: ${BL}${BRG}${CL}"
|
||||
|
||||
# -----------------------------
|
||||
# Download image
|
||||
# -----------------------------
|
||||
TMPDIR="$(mktemp -d)"
|
||||
cleanup() { rm -rf "$TMPDIR" >/dev/null 2>&1 || true; }
|
||||
trap cleanup EXIT
|
||||
|
||||
cd "$TMPDIR"
|
||||
FILE="$(basename "$DEBIAN13_URL")"
|
||||
msg_info "Téléchargement Debian 13 cloud image: $FILE"
|
||||
curl -fL -o "$FILE" "$DEBIAN13_URL"
|
||||
msg_ok "Image téléchargée"
|
||||
|
||||
# -----------------------------
|
||||
# Create VM
|
||||
# -----------------------------
|
||||
msg_info "Création VM (sans autostart)"
|
||||
qm create "$VMID" \
|
||||
-name "$HN" \
|
||||
-cores "$CORE_COUNT" \
|
||||
-memory "$RAM_SIZE" \
|
||||
-ostype l26 \
|
||||
-scsihw virtio-scsi-pci \
|
||||
-net0 "virtio,bridge=${BRG}" \
|
||||
-agent 1 \
|
||||
-onboot "$ONBOOT_DEFAULT" \
|
||||
-tablet 0 \
|
||||
-localtime 1 >/dev/null
|
||||
|
||||
# Better console for noVNC
|
||||
qm set "$VMID" --vga virtio >/dev/null
|
||||
|
||||
# UEFI (optional, but common)
|
||||
qm set "$VMID" --bios ovmf >/dev/null
|
||||
|
||||
msg_ok "VM créée"
|
||||
|
||||
# -----------------------------
|
||||
# Import disk
|
||||
# -----------------------------
|
||||
msg_info "Import disque dans ${STORAGE}"
|
||||
IMPORT_LOG="$(qm importdisk "$VMID" "$FILE" "$STORAGE" 2>&1 || true)"
|
||||
IMPORT_DISK="$(awk -F"'" '/Successfully imported disk as/ {print $2}' <<<"$IMPORT_LOG" | tail -n1)"
|
||||
if [[ -z "${IMPORT_DISK:-}" ]]; then
|
||||
# Fallback (souvent vrai sur ZFS/LVM)
|
||||
IMPORT_DISK="${STORAGE}:vm-${VMID}-disk-0"
|
||||
fi
|
||||
|
||||
# Attach + cloudinit drive
|
||||
qm set "$VMID" \
|
||||
--scsi0 "${IMPORT_DISK},discard=on,ssd=1" \
|
||||
--scsi1 "${STORAGE}:cloudinit" \
|
||||
--boot order=scsi0 \
|
||||
--serial0 socket >/dev/null
|
||||
|
||||
# Resize disk side (Proxmox)
|
||||
msg_info "Resize disque virtuel à ${DISK_SIZE}"
|
||||
qm resize "$VMID" scsi0 "$DISK_SIZE" >/dev/null
|
||||
msg_ok "Resize Proxmox OK"
|
||||
|
||||
# Cloud-init network: DHCP IPv4
|
||||
qm set "$VMID" --ipconfig0 ip=dhcp >/dev/null
|
||||
|
||||
# Cloud-init root user/password (via Proxmox fields)
|
||||
qm set "$VMID" --ciuser "$CI_USER_DEFAULT" --cipassword "$CI_PASS_DEFAULT" >/dev/null
|
||||
|
||||
# -----------------------------
|
||||
# Cloud-init user-data (FR + guest agent + grow root + 1080p gfx)
|
||||
# -----------------------------
|
||||
SNIPPET_DIR="/var/lib/vz/snippets"
|
||||
mkdir -p "$SNIPPET_DIR"
|
||||
USERDATA_FILE="${SNIPPET_DIR}/${VMID}-user-data.yaml"
|
||||
|
||||
msg_info "Génération cloud-init user-data: ${USERDATA_FILE}"
|
||||
|
||||
cat > "$USERDATA_FILE" <<'EOF'
|
||||
#cloud-config
|
||||
package_update: true
|
||||
|
||||
# Auto-grow partition + filesystem
|
||||
growpart:
|
||||
mode: auto
|
||||
devices: ["/"]
|
||||
ignore_growroot_disabled: false
|
||||
resize_rootfs: true
|
||||
|
||||
packages:
|
||||
- qemu-guest-agent
|
||||
- cloud-guest-utils
|
||||
- locales
|
||||
- kbd
|
||||
- console-setup
|
||||
- keyboard-configuration
|
||||
|
||||
locale: fr_FR.UTF-8
|
||||
|
||||
disable_root: false
|
||||
ssh_pwauth: true
|
||||
|
||||
chpasswd:
|
||||
expire: false
|
||||
list: |
|
||||
root:root
|
||||
|
||||
write_files:
|
||||
# Console keymap FR + police petite
|
||||
- path: /etc/default/console-setup
|
||||
content: |
|
||||
ACTIVE_CONSOLES="/dev/tty[1-6]"
|
||||
CHARMAP="UTF-8"
|
||||
CODESET="Lat15"
|
||||
FONTFACE="Fixed"
|
||||
FONTSIZE="8x16"
|
||||
KEYMAP="fr"
|
||||
|
||||
- path: /etc/default/keyboard
|
||||
content: |
|
||||
XKBLAYOUT="fr"
|
||||
XKBVARIANT=""
|
||||
XKBMODEL="pc105"
|
||||
XKBOPTIONS=""
|
||||
|
||||
# Force GRUB gfxmode 1080p (utile pour noVNC/VGA)
|
||||
- path: /etc/default/grub.d/99-pve-video.cfg
|
||||
content: |
|
||||
GRUB_GFXMODE=1920x1080
|
||||
GRUB_GFXPAYLOAD_LINUX=keep
|
||||
|
||||
runcmd:
|
||||
|
||||
- passwd -u root || true
|
||||
|
||||
# Locale
|
||||
- sed -i 's/^# *fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen || true
|
||||
- locale-gen fr_FR.UTF-8 || true
|
||||
- update-locale LANG=fr_FR.UTF-8 || true
|
||||
|
||||
# Console keymap immédiat
|
||||
- loadkeys fr || true
|
||||
- setupcon -k || true
|
||||
|
||||
# GRUB update (pour prendre le 1080p)
|
||||
- update-grub || true
|
||||
|
||||
# Agent Proxmox
|
||||
- systemctl enable qemu-guest-agent || true
|
||||
- systemctl start qemu-guest-agent || true
|
||||
|
||||
|
||||
EOF
|
||||
|
||||
# Attach snippet to VM (requires 'local' storage with Snippets enabled)
|
||||
qm set "$VMID" --cicustom "user=local:snippets/${VMID}-user-data.yaml" >/dev/null
|
||||
|
||||
msg_ok "Cloud-init user-data appliqué"
|
||||
|
||||
# -----------------------------
|
||||
# Proxmox Notes (Description)
|
||||
# -----------------------------
|
||||
CREATED_AT="$(date -Is)"
|
||||
DESCRIPTION=$(
|
||||
cat <<EOF
|
||||
<div align="center">
|
||||
<a href="${AZYLIS_SITE}" target="_blank" rel="noopener noreferrer">
|
||||
<img src="${AZYLIS_LOGO}" alt="AZYLIS" style="max-width:110px;max-height:110px;margin-bottom:8px;">
|
||||
</a>
|
||||
<h2 style="margin:6px 0;">AZYLIS — Debian 13 VM</h2>
|
||||
</div>
|
||||
|
||||
<b>Infos VM</b>
|
||||
<ul>
|
||||
<li><b>VMID</b> : ${VMID}</li>
|
||||
<li><b>Hostname</b> : ${HN}</li>
|
||||
<li><b>CPU</b> : ${CORE_COUNT} vCPU</li>
|
||||
<li><b>RAM</b> : ${RAM_SIZE} MiB</li>
|
||||
<li><b>Disque</b> : ${DISK_SIZE} (auto-grow activé)</li>
|
||||
<li><b>Bridge</b> : ${BRG}</li>
|
||||
<li><b>IPv4</b> : DHCP (cloud-init ipconfig0)</li>
|
||||
</ul>
|
||||
|
||||
<b>Accès</b>
|
||||
<ul>
|
||||
<li><b>Utilisateur</b> : ${CI_USER_DEFAULT}</li>
|
||||
<li><b>Mot de passe</b> : ${CI_PASS_DEFAULT}</li>
|
||||
</ul>
|
||||
|
||||
<b>Provisioning</b>
|
||||
<ul>
|
||||
<li>Cloud-init: activé</li>
|
||||
<li>Locale/Clavier: FR</li>
|
||||
<li>Console: GRUB 1920x1080 + police 8x16</li>
|
||||
<li>Agent Proxmox: qemu-guest-agent</li>
|
||||
<li>Auto-start Proxmox: onboot=${ONBOOT_DEFAULT}</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<small>Créé le ${CREATED_AT}</small>
|
||||
EOF
|
||||
)
|
||||
qm set "$VMID" -description "$DESCRIPTION" >/dev/null
|
||||
msg_ok "Notes VM (AZYLIS) ajoutées"
|
||||
|
||||
# -----------------------------
|
||||
# Finish
|
||||
# -----------------------------
|
||||
msg_ok "VM Debian 13 prête: ${BL}${VMID}${CL}"
|
||||
|
||||
if [[ "$START_VM" == "yes" ]]; then
|
||||
msg_info "Démarrage VM..."
|
||||
qm start "$VMID" >/dev/null
|
||||
msg_ok "VM démarrée."
|
||||
else
|
||||
msg_ok "VM laissée arrêtée (comme demandé)."
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Commandes utiles :"
|
||||
echo " qm config ${VMID} | egrep 'name:|net0|ipconfig0|ciuser|cipassword|vga|scsi0|scsi1'"
|
||||
echo " qm cloudinit dump ${VMID} user"
|
||||
echo " qm cloudinit dump ${VMID} network"
|
||||
@@ -1,8 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Debian 13 VM – Version FR personnalisée
|
||||
# Basé sur community-scripts + adaptations
|
||||
|
||||
set -e
|
||||
|
||||
VMID=$(pvesh get /cluster/nextid)
|
||||
@@ -10,7 +7,7 @@ HN="debian13"
|
||||
BRG="dhcp"
|
||||
CORE_COUNT="2"
|
||||
RAM_SIZE="2048"
|
||||
DISK_SIZE="8G"
|
||||
DISK_SIZE="40G"
|
||||
|
||||
echo "Création VM Debian 13 ID: $VMID"
|
||||
|
||||
@@ -25,7 +22,6 @@ curl -fLO "$URL"
|
||||
|
||||
STORAGE="local-zfs"
|
||||
|
||||
echo "Création VM..."
|
||||
qm create $VMID \
|
||||
-name "$HN" \
|
||||
-memory $RAM_SIZE \
|
||||
@@ -41,19 +37,40 @@ qm importdisk $VMID "$FILE" $STORAGE
|
||||
qm set $VMID \
|
||||
-scsi0 ${STORAGE}:vm-${VMID}-disk-0 \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket \
|
||||
-scsi1 ${STORAGE}:cloudinit
|
||||
|
||||
# DHCP IPv4 cloud-init
|
||||
qm set $VMID --ipconfig0 ip=dhcp
|
||||
|
||||
# ===== Clavier + Locale FR =====
|
||||
# DHCP IPv4 dans l'UI cloud-init
|
||||
qm set "$VMID" --ipconfig0 ip=dhcp >/dev/null
|
||||
|
||||
# Root user + password via Proxmox cloud-init (fiable)
|
||||
qm set "$VMID" --ciuser root --cipassword "root" >/dev/null
|
||||
|
||||
# Resize disque côté Proxmox
|
||||
qm resize "$VMID" scsi0 "$DISK_SIZE" >/dev/null
|
||||
|
||||
# ===== Cloud-init FR + ROOT PASSWORD + PROXMOX AGENT =====
|
||||
|
||||
SNIPPET_DIR="/var/lib/vz/snippets"
|
||||
mkdir -p "$SNIPPET_DIR"
|
||||
|
||||
cat > "$SNIPPET_DIR/${VMID}-user-data.yaml" <<EOF
|
||||
#cloud-config
|
||||
|
||||
disable_root: false
|
||||
ssh_pwauth: true
|
||||
|
||||
growpart:
|
||||
mode: auto
|
||||
devices: ["/"]
|
||||
ignore_growroot_disabled: false
|
||||
resize_rootfs: true
|
||||
|
||||
chpasswd:
|
||||
list: |
|
||||
root:root
|
||||
expire: false
|
||||
|
||||
locale: fr_FR.UTF-8
|
||||
|
||||
packages:
|
||||
@@ -61,26 +78,87 @@ packages:
|
||||
- kbd
|
||||
- console-setup
|
||||
- keyboard-configuration
|
||||
- qemu-guest-agent
|
||||
|
||||
write_files:
|
||||
|
||||
- path: /etc/default/grub.d/99-resolution.cfg
|
||||
content: |
|
||||
GRUB_GFXMODE=1920x1080
|
||||
GRUB_GFXPAYLOAD_LINUX=keep
|
||||
|
||||
- path: /etc/default/keyboard
|
||||
content: |
|
||||
XKBLAYOUT="fr"
|
||||
XKBMODEL="pc105"
|
||||
|
||||
- path: /etc/default/console-setup
|
||||
content: |
|
||||
ACTIVE_CONSOLES="/dev/tty[1-6]"
|
||||
CHARMAP="UTF-8"
|
||||
CODESET="Lat15"
|
||||
FONTFACE="Fixed"
|
||||
FONTSIZE="8x16"
|
||||
KEYMAP="fr"
|
||||
|
||||
runcmd:
|
||||
|
||||
- update-grub
|
||||
- setupcon -k || true
|
||||
|
||||
# Locale FR
|
||||
- sed -i 's/^# fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen
|
||||
- locale-gen
|
||||
- update-locale LANG=fr_FR.UTF-8
|
||||
|
||||
# Clavier console FR
|
||||
- loadkeys fr || true
|
||||
- setupcon -k || true
|
||||
|
||||
# Activation agent Proxmox
|
||||
- systemctl enable qemu-guest-agent
|
||||
- systemctl start qemu-guest-agent
|
||||
EOF
|
||||
|
||||
qm set $VMID --cicustom "user=local:snippets/${VMID}-user-data.yaml"
|
||||
|
||||
DESCRIPTION=$(cat <<EOF
|
||||
<b>Informations VM</b><br>
|
||||
<ul>
|
||||
<li><b>Hostname :</b> $HN</li>
|
||||
<li><b>VMID :</b> $VMID</li>
|
||||
<li><b>CPU :</b> $CORE_COUNT vCPU</li>
|
||||
<li><b>RAM :</b> ${RAM_SIZE} MB</li>
|
||||
<li><b>Disque :</b> $DISK_SIZE</li>
|
||||
<li><b>Bridge :</b> $BRG</li>
|
||||
<li><b>Réseau :</b> DHCP IPv4</li>
|
||||
</ul>
|
||||
|
||||
<b>Accès</b><br>
|
||||
<ul>
|
||||
<li><b>Utilisateur :</b> root</li>
|
||||
<li><b>Mot de passe :</b> root</li>
|
||||
</ul>
|
||||
|
||||
<b>Configuration</b><br>
|
||||
<ul>
|
||||
<li>Cloud-Init activé</li>
|
||||
<li>Clavier FR</li>
|
||||
<li>Locale FR</li>
|
||||
<li>QEMU Guest Agent installé</li>
|
||||
<li>VM non démarrée automatiquement</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<div align='center'>
|
||||
<small>Provisionné automatiquement par AZYLIS</small>
|
||||
</div>
|
||||
EOF
|
||||
)
|
||||
|
||||
qm set "$VMID" -description "$DESCRIPTION" >/dev/null
|
||||
|
||||
|
||||
echo "VM Debian 13 créée avec succès : $VMID"
|
||||
echo "Bridge : dhcp | DHCP IPv4 activé | FR OK"
|
||||
echo "Bridge : dhcp | DHCP IPv4 | Clavier FR | root/root | Agent Proxmox OK"
|
||||
echo "La VM n'est PAS démarrée automatiquement."
|
||||
652
debian-13-vm.sh
652
debian-13-vm.sh
@@ -1,652 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<<$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func)
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
____ __ _ ________
|
||||
/ __ \___ / /_ (_)___ _____ < /__ /
|
||||
/ / / / _ \/ __ \/ / __ `/ __ \ / / /_ <
|
||||
/ /_/ / __/ /_/ / / /_/ / / / / / /___/ /
|
||||
/_____/\___/_.___/_/\__,_/_/ /_/ /_//____/
|
||||
(Trixie)
|
||||
EOF
|
||||
}
|
||||
header_info
|
||||
echo -e "\n Loading..."
|
||||
GEN_MAC=02:$(openssl rand -hex 5 | awk '{print toupper($0)}' | sed 's/\(..\)/\1:/g; s/.$//')
|
||||
RANDOM_UUID="$(cat /proc/sys/kernel/random/uuid)"
|
||||
METHOD=""
|
||||
NSAPP="debian13vm"
|
||||
var_os="debian"
|
||||
var_version="13"
|
||||
|
||||
YW=$(echo "\033[33m")
|
||||
BL=$(echo "\033[36m")
|
||||
RD=$(echo "\033[01;31m")
|
||||
BGN=$(echo "\033[4;92m")
|
||||
GN=$(echo "\033[1;92m")
|
||||
DGN=$(echo "\033[32m")
|
||||
CL=$(echo "\033[m")
|
||||
|
||||
CL=$(echo "\033[m")
|
||||
BOLD=$(echo "\033[1m")
|
||||
BFR="\\r\\033[K"
|
||||
HOLD=" "
|
||||
TAB=" "
|
||||
|
||||
CM="${TAB}✔️${TAB}${CL}"
|
||||
CROSS="${TAB}✖️${TAB}${CL}"
|
||||
INFO="${TAB}💡${TAB}${CL}"
|
||||
OS="${TAB}🖥️${TAB}${CL}"
|
||||
CONTAINERTYPE="${TAB}📦${TAB}${CL}"
|
||||
DISKSIZE="${TAB}💾${TAB}${CL}"
|
||||
CPUCORE="${TAB}🧠${TAB}${CL}"
|
||||
RAMSIZE="${TAB}🛠️${TAB}${CL}"
|
||||
CONTAINERID="${TAB}🆔${TAB}${CL}"
|
||||
HOSTNAME="${TAB}🏠${TAB}${CL}"
|
||||
BRIDGE="${TAB}🌉${TAB}${CL}"
|
||||
GATEWAY="${TAB}🌐${TAB}${CL}"
|
||||
DEFAULT="${TAB}⚙️${TAB}${CL}"
|
||||
MACADDRESS="${TAB}🔗${TAB}${CL}"
|
||||
VLANTAG="${TAB}🏷️${TAB}${CL}"
|
||||
CREATING="${TAB}🚀${TAB}${CL}"
|
||||
ADVANCED="${TAB}🧩${TAB}${CL}"
|
||||
CLOUD="${TAB}☁️${TAB}${CL}"
|
||||
|
||||
THIN="discard=on,ssd=1,"
|
||||
set -e
|
||||
trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
|
||||
trap cleanup EXIT
|
||||
trap 'post_update_to_api "failed" "INTERRUPTED"' SIGINT
|
||||
trap 'post_update_to_api "failed" "TERMINATED"' SIGTERM
|
||||
function error_handler() {
|
||||
local exit_code="$?"
|
||||
local line_number="$1"
|
||||
local command="$2"
|
||||
local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}"
|
||||
post_update_to_api "failed" "${exit_code}"
|
||||
echo -e "\n$error_message\n"
|
||||
cleanup_vmid
|
||||
}
|
||||
|
||||
function get_valid_nextid() {
|
||||
local try_id
|
||||
try_id=$(pvesh get /cluster/nextid)
|
||||
while true; do
|
||||
if [ -f "/etc/pve/qemu-server/${try_id}.conf" ] || [ -f "/etc/pve/lxc/${try_id}.conf" ]; then
|
||||
try_id=$((try_id + 1))
|
||||
continue
|
||||
fi
|
||||
if lvs --noheadings -o lv_name | grep -qE "(^|[-_])${try_id}($|[-_])"; then
|
||||
try_id=$((try_id + 1))
|
||||
continue
|
||||
fi
|
||||
break
|
||||
done
|
||||
echo "$try_id"
|
||||
}
|
||||
|
||||
function cleanup_vmid() {
|
||||
if qm status $VMID &>/dev/null; then
|
||||
qm stop $VMID &>/dev/null
|
||||
qm destroy $VMID &>/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
function cleanup() {
|
||||
local exit_code=$?
|
||||
popd >/dev/null
|
||||
if [[ "${POST_TO_API_DONE:-}" == "true" && "${POST_UPDATE_DONE:-}" != "true" ]]; then
|
||||
if [[ $exit_code -eq 0 ]]; then
|
||||
post_update_to_api "done" "none"
|
||||
else
|
||||
post_update_to_api "failed" "$exit_code"
|
||||
fi
|
||||
fi
|
||||
rm -rf $TEMP_DIR
|
||||
}
|
||||
|
||||
TEMP_DIR=$(mktemp -d)
|
||||
pushd $TEMP_DIR >/dev/null
|
||||
if whiptail --backtitle "Proxmox VE Helper Scripts" --title "Debian 13 VM" --yesno "This will create a New Debian 13 VM. Proceed?" 10 58; then
|
||||
:
|
||||
else
|
||||
header_info && echo -e "${CROSS}${RD}User exited script${CL}\n" && exit
|
||||
fi
|
||||
|
||||
function msg_info() {
|
||||
local msg="$1"
|
||||
echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}"
|
||||
}
|
||||
|
||||
function msg_ok() {
|
||||
local msg="$1"
|
||||
echo -e "${BFR}${CM}${GN}${msg}${CL}"
|
||||
}
|
||||
|
||||
function msg_error() {
|
||||
local msg="$1"
|
||||
echo -e "${BFR}${CROSS}${RD}${msg}${CL}"
|
||||
}
|
||||
|
||||
function check_root() {
|
||||
if [[ "$(id -u)" -ne 0 || $(ps -o comm= -p $PPID) == "sudo" ]]; then
|
||||
clear
|
||||
msg_error "Please run this script as root."
|
||||
echo -e "\nExiting..."
|
||||
sleep 2
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
# This function checks the version of Proxmox Virtual Environment (PVE) and exits if the version is not supported.
|
||||
# Supported: Proxmox VE 8.0.x – 8.9.x, 9.0 and 9.1
|
||||
pve_check() {
|
||||
local PVE_VER
|
||||
PVE_VER="$(pveversion | awk -F'/' '{print $2}' | awk -F'-' '{print $1}')"
|
||||
|
||||
# Check for Proxmox VE 8.x: allow 8.0–8.9
|
||||
if [[ "$PVE_VER" =~ ^8\.([0-9]+) ]]; then
|
||||
local MINOR="${BASH_REMATCH[1]}"
|
||||
if ((MINOR < 0 || MINOR > 9)); then
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported: Proxmox VE version 8.0 – 8.9"
|
||||
exit 1
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Check for Proxmox VE 9.x: allow 9.0 and 9.1
|
||||
if [[ "$PVE_VER" =~ ^9\.([0-9]+) ]]; then
|
||||
local MINOR="${BASH_REMATCH[1]}"
|
||||
if ((MINOR < 0 || MINOR > 1)); then
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported: Proxmox VE version 9.0 – 9.1"
|
||||
exit 1
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
|
||||
# All other unsupported versions
|
||||
msg_error "This version of Proxmox VE is not supported."
|
||||
msg_error "Supported versions: Proxmox VE 8.0 – 8.x or 9.0 – 9.1"
|
||||
exit 1
|
||||
}
|
||||
|
||||
function arch_check() {
|
||||
if [ "$(dpkg --print-architecture)" != "amd64" ]; then
|
||||
echo -e "\n ${INFO}${YWB}This script will not work with PiMox! \n"
|
||||
echo -e "\n ${YWB}Visit https://github.com/asylumexp/Proxmox for ARM64 support. \n"
|
||||
echo -e "Exiting..."
|
||||
sleep 2
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
function ssh_check() {
|
||||
if command -v pveversion >/dev/null 2>&1; then
|
||||
if [ -n "${SSH_CLIENT:+x}" ]; then
|
||||
if whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "SSH DETECTED" --yesno "It's suggested to use the Proxmox shell instead of SSH, since SSH can create issues while gathering variables. Would you like to proceed with using SSH?" 10 62; then
|
||||
echo "you've been warned"
|
||||
else
|
||||
clear
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
function exit-script() {
|
||||
clear
|
||||
echo -e "\n${CROSS}${RD}User exited script${CL}\n"
|
||||
exit
|
||||
}
|
||||
|
||||
function select_cloud_init() {
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "CLOUD-INIT" \
|
||||
--yesno "Enable Cloud-Init for VM configuration?\n\nCloud-Init allows automatic configuration of:\n- User accounts and passwords\n- SSH keys\n- Network settings (DHCP/Static)\n- DNS configuration\n\nYou can also configure these settings later in Proxmox UI.\n\nNote: Without Cloud-Init, the nocloud image will be used with console auto-login." --defaultno 18 68); then
|
||||
CLOUD_INIT="yes"
|
||||
echo -e "${CLOUD}${BOLD}${DGN}Cloud-Init: ${BGN}yes${CL}"
|
||||
else
|
||||
CLOUD_INIT="no"
|
||||
echo -e "${CLOUD}${BOLD}${DGN}Cloud-Init: ${BGN}no${CL}"
|
||||
fi
|
||||
}
|
||||
|
||||
function default_settings() {
|
||||
VMID=$(get_valid_nextid)
|
||||
FORMAT=",efitype=4m"
|
||||
MACHINE=""
|
||||
DISK_SIZE="8G"
|
||||
DISK_CACHE=""
|
||||
HN="debian"
|
||||
CPU_TYPE=""
|
||||
CORE_COUNT="2"
|
||||
RAM_SIZE="2048"
|
||||
BRG="vmbr0"
|
||||
MAC="$GEN_MAC"
|
||||
VLAN=""
|
||||
MTU=""
|
||||
START_VM="yes"
|
||||
METHOD="default"
|
||||
echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}${VMID}${CL}"
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}i440fx${CL}"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}${DISK_SIZE}${CL}"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}"
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}${HN}${CL}"
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}"
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}${CORE_COUNT}${CL}"
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}${RAM_SIZE}${CL}"
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}${BRG}${CL}"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}${MAC}${CL}"
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}Default${CL}"
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}Default${CL}"
|
||||
select_cloud_init
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}"
|
||||
echo -e "${CREATING}${BOLD}${DGN}Creating a Debian 13 VM using the above default settings${CL}"
|
||||
}
|
||||
|
||||
function advanced_settings() {
|
||||
METHOD="advanced"
|
||||
[ -z "${VMID:-}" ] && VMID=$(get_valid_nextid)
|
||||
while true; do
|
||||
if VMID=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Virtual Machine ID" 8 58 "$VMID" --title "VIRTUAL MACHINE ID" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$VMID" ]; then
|
||||
VMID=$(get_valid_nextid)
|
||||
fi
|
||||
if pct status "$VMID" &>/dev/null || qm status "$VMID" &>/dev/null; then
|
||||
echo -e "${CROSS}${RD} ID $VMID is already in use${CL}"
|
||||
sleep 2
|
||||
continue
|
||||
fi
|
||||
echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}$VMID${CL}"
|
||||
break
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
done
|
||||
|
||||
if MACH=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "MACHINE TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 10 58 2 \
|
||||
"i440fx" "Machine i440fx" ON \
|
||||
"q35" "Machine q35" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ "$MACH" = q35 ]; then
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}"
|
||||
FORMAT=""
|
||||
MACHINE=" -machine q35"
|
||||
else
|
||||
echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}"
|
||||
FORMAT=",efitype=4m"
|
||||
MACHINE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if DISK_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Disk Size in GiB (e.g., 10, 20)" 8 58 "$DISK_SIZE" --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
DISK_SIZE=$(echo "$DISK_SIZE" | tr -d ' ')
|
||||
if [[ "$DISK_SIZE" =~ ^[0-9]+$ ]]; then
|
||||
DISK_SIZE="${DISK_SIZE}G"
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}"
|
||||
elif [[ "$DISK_SIZE" =~ ^[0-9]+G$ ]]; then
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}"
|
||||
else
|
||||
echo -e "${DISKSIZE}${BOLD}${RD}Invalid Disk Size. Please use a number (e.g., 10 or 10G).${CL}"
|
||||
exit-script
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \
|
||||
"0" "None (Default)" ON \
|
||||
"1" "Write Through" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ "$DISK_CACHE" = "1" ]; then
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}Write Through${CL}"
|
||||
DISK_CACHE="cache=writethrough,"
|
||||
else
|
||||
echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}"
|
||||
DISK_CACHE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if VM_NAME=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Hostname" 8 58 debian --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$VM_NAME" ]; then
|
||||
HN="debian"
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}"
|
||||
else
|
||||
HN=$(echo "${VM_NAME,,}" | tr -d ' ')
|
||||
echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if CPU_TYPE1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CPU MODEL" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \
|
||||
"0" "KVM64 (Default)" ON \
|
||||
"1" "Host" OFF \
|
||||
3>&1 1>&2 2>&3); then
|
||||
if [ "$CPU_TYPE1" = "1" ]; then
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}Host${CL}"
|
||||
CPU_TYPE=" -cpu host"
|
||||
else
|
||||
echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}"
|
||||
CPU_TYPE=""
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if CORE_COUNT=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate CPU Cores" 8 58 2 --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$CORE_COUNT" ]; then
|
||||
CORE_COUNT="2"
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}"
|
||||
else
|
||||
echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if RAM_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate RAM in MiB" 8 58 2048 --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$RAM_SIZE" ]; then
|
||||
RAM_SIZE="2048"
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}"
|
||||
else
|
||||
echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$BRG" ]; then
|
||||
BRG="vmbr0"
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
||||
else
|
||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if MAC1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a MAC Address" 8 58 "$GEN_MAC" --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$MAC1" ]; then
|
||||
MAC="$GEN_MAC"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC${CL}"
|
||||
else
|
||||
MAC="$MAC1"
|
||||
echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if VLAN1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$VLAN1" ]; then
|
||||
VLAN1="Default"
|
||||
VLAN=""
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}"
|
||||
else
|
||||
VLAN=",tag=$VLAN1"
|
||||
echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
if MTU1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Interface MTU Size (leave blank for default)" 8 58 --title "MTU SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then
|
||||
if [ -z "$MTU1" ]; then
|
||||
MTU1="Default"
|
||||
MTU=""
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}"
|
||||
else
|
||||
MTU=",mtu=$MTU1"
|
||||
echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}"
|
||||
fi
|
||||
else
|
||||
exit-script
|
||||
fi
|
||||
|
||||
select_cloud_init
|
||||
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "START VIRTUAL MACHINE" --yesno "Start VM when completed?" 10 58); then
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}"
|
||||
START_VM="yes"
|
||||
else
|
||||
echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}no${CL}"
|
||||
START_VM="no"
|
||||
fi
|
||||
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create a Debian 13 VM?" --no-button Do-Over 10 58); then
|
||||
echo -e "${CREATING}${BOLD}${DGN}Creating a Debian 13 VM using the above advanced settings${CL}"
|
||||
else
|
||||
header_info
|
||||
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
||||
advanced_settings
|
||||
fi
|
||||
}
|
||||
|
||||
function start_script() {
|
||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then
|
||||
header_info
|
||||
echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}"
|
||||
default_settings
|
||||
else
|
||||
header_info
|
||||
echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}"
|
||||
advanced_settings
|
||||
fi
|
||||
}
|
||||
|
||||
check_root
|
||||
arch_check
|
||||
pve_check
|
||||
ssh_check
|
||||
start_script
|
||||
|
||||
post_to_api_vm
|
||||
|
||||
msg_info "Validating Storage"
|
||||
while read -r line; do
|
||||
TAG=$(echo "$line" | awk '{print $1}')
|
||||
TYPE=$(echo "$line" | awk '{printf "%-10s", $2}')
|
||||
FREE=$(echo "$line" | numfmt --field 4-6 --from-unit=K --to=iec --format %.2f | awk '{printf( "%9sB", $6)}')
|
||||
ITEM=" Type: $TYPE Free: $FREE "
|
||||
OFFSET=2
|
||||
if [[ $((${#ITEM} + $OFFSET)) -gt ${MSG_MAX_LENGTH:-} ]]; then
|
||||
MSG_MAX_LENGTH=$((${#ITEM} + $OFFSET))
|
||||
fi
|
||||
STORAGE_MENU+=("$TAG" "$ITEM" "OFF")
|
||||
done < <(pvesm status -content images | awk 'NR>1')
|
||||
VALID=$(pvesm status -content images | awk 'NR>1')
|
||||
if [ -z "$VALID" ]; then
|
||||
msg_error "Unable to detect a valid storage location."
|
||||
exit
|
||||
elif [ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]; then
|
||||
STORAGE=${STORAGE_MENU[0]}
|
||||
else
|
||||
while [ -z "${STORAGE:+x}" ]; do
|
||||
STORAGE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Storage Pools" --radiolist \
|
||||
"Which storage pool would you like to use for ${HN}?\nTo make a selection, use the Spacebar.\n" \
|
||||
16 $(($MSG_MAX_LENGTH + 23)) 6 \
|
||||
"${STORAGE_MENU[@]}" 3>&1 1>&2 2>&3)
|
||||
done
|
||||
fi
|
||||
msg_ok "Using ${CL}${BL}$STORAGE${CL} ${GN}for Storage Location."
|
||||
msg_ok "Virtual Machine ID is ${CL}${BL}$VMID${CL}."
|
||||
|
||||
# ==============================================================================
|
||||
# PREREQUISITES
|
||||
# ==============================================================================
|
||||
if ! command -v virt-customize &>/dev/null; then
|
||||
msg_info "Installing libguestfs-tools"
|
||||
apt-get update >/dev/null 2>&1
|
||||
apt-get install -y libguestfs-tools >/dev/null 2>&1
|
||||
msg_ok "Installed libguestfs-tools"
|
||||
fi
|
||||
|
||||
msg_info "Retrieving the URL for the Debian 13 Qcow2 Disk Image"
|
||||
if [ "$CLOUD_INIT" == "yes" ]; then
|
||||
URL=https://cloud.debian.org/images/cloud/trixie/latest/debian-13-genericcloud-amd64.qcow2
|
||||
else
|
||||
URL=https://cloud.debian.org/images/cloud/trixie/latest/debian-13-nocloud-amd64.qcow2
|
||||
fi
|
||||
sleep 2
|
||||
msg_ok "${CL}${BL}${URL}${CL}"
|
||||
curl -f#SL -o "$(basename "$URL")" "$URL"
|
||||
echo -en "\e[1A\e[0K"
|
||||
FILE=$(basename $URL)
|
||||
msg_ok "Downloaded ${CL}${BL}${FILE}${CL}"
|
||||
|
||||
# ==============================================================================
|
||||
# IMAGE CUSTOMIZATION
|
||||
# ==============================================================================
|
||||
msg_info "Customizing ${FILE} image"
|
||||
|
||||
WORK_FILE=$(mktemp --suffix=.qcow2)
|
||||
cp "$FILE" "$WORK_FILE"
|
||||
|
||||
# Set hostname
|
||||
virt-customize -q -a "$WORK_FILE" --hostname "${HN}" >/dev/null 2>&1
|
||||
|
||||
# Prepare for unique machine-id on first boot
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "truncate -s 0 /etc/machine-id" >/dev/null 2>&1
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "rm -f /var/lib/dbus/machine-id" >/dev/null 2>&1
|
||||
|
||||
# Disable systemd-firstboot to prevent interactive prompts blocking the console
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "systemctl disable systemd-firstboot.service 2>/dev/null; rm -f /etc/systemd/system/sysinit.target.wants/systemd-firstboot.service; ln -sf /dev/null /etc/systemd/system/systemd-firstboot.service" >/dev/null 2>&1 || true
|
||||
|
||||
# Pre-seed firstboot settings so it won't prompt even if triggered
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "echo 'Etc/UTC' > /etc/timezone && ln -sf /usr/share/zoneinfo/Etc/UTC /etc/localtime" >/dev/null 2>&1 || true
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "touch /etc/locale.conf" >/dev/null 2>&1 || true
|
||||
|
||||
if [ "$CLOUD_INIT" == "yes" ]; then
|
||||
# Cloud-Init handles SSH and login
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "sed -i 's/^#*PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config" >/dev/null 2>&1 || true
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "sed -i 's/^#*PasswordAuthentication.*/PasswordAuthentication yes/' /etc/ssh/sshd_config" >/dev/null 2>&1 || true
|
||||
else
|
||||
# Configure auto-login on serial console (ttyS0) and virtual console (tty1)
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "mkdir -p /etc/systemd/system/serial-getty@ttyS0.service.d" >/dev/null 2>&1 || true
|
||||
virt-customize -q -a "$WORK_FILE" --run-command 'cat > /etc/systemd/system/serial-getty@ttyS0.service.d/autologin.conf << EOF
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty --autologin root --noclear %I \$TERM
|
||||
EOF' >/dev/null 2>&1 || true
|
||||
virt-customize -q -a "$WORK_FILE" --run-command "mkdir -p /etc/systemd/system/getty@tty1.service.d" >/dev/null 2>&1 || true
|
||||
virt-customize -q -a "$WORK_FILE" --run-command 'cat > /etc/systemd/system/getty@tty1.service.d/autologin.conf << EOF
|
||||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/sbin/agetty --autologin root --noclear %I \$TERM
|
||||
EOF' >/dev/null 2>&1 || true
|
||||
fi
|
||||
|
||||
msg_ok "Customized image"
|
||||
|
||||
STORAGE_TYPE=$(pvesm status -storage "$STORAGE" | awk 'NR>1 {print $2}')
|
||||
case $STORAGE_TYPE in
|
||||
nfs | dir)
|
||||
DISK_EXT=".qcow2"
|
||||
DISK_REF="$VMID/"
|
||||
DISK_IMPORT="-format qcow2"
|
||||
THIN=""
|
||||
;;
|
||||
btrfs)
|
||||
DISK_EXT=".raw"
|
||||
DISK_REF="$VMID/"
|
||||
DISK_IMPORT="-format raw"
|
||||
FORMAT=",efitype=4m"
|
||||
THIN=""
|
||||
;;
|
||||
*)
|
||||
DISK_EXT=""
|
||||
DISK_REF=""
|
||||
DISK_IMPORT="-format raw"
|
||||
;;
|
||||
esac
|
||||
for i in {0,1}; do
|
||||
disk="DISK$i"
|
||||
eval DISK"${i}"=vm-"${VMID}"-disk-"${i}"${DISK_EXT:-}
|
||||
eval DISK"${i}"_REF="${STORAGE}":"${DISK_REF:-}"${!disk}
|
||||
done
|
||||
|
||||
msg_info "Creating a Debian 13 VM"
|
||||
qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \
|
||||
-name $HN -tags community-script -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci
|
||||
pvesm alloc $STORAGE $VMID $DISK0 4M 1>&/dev/null
|
||||
qm importdisk $VMID ${WORK_FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null
|
||||
if [ "$CLOUD_INIT" == "yes" ]; then
|
||||
qm set $VMID \
|
||||
-efidisk0 ${DISK0_REF}${FORMAT} \
|
||||
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \
|
||||
-scsi1 ${STORAGE}:cloudinit \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket >/dev/null
|
||||
else
|
||||
qm set $VMID \
|
||||
-efidisk0 ${DISK0_REF}${FORMAT} \
|
||||
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket >/dev/null
|
||||
fi
|
||||
|
||||
# Clean up work file
|
||||
rm -f "$WORK_FILE"
|
||||
|
||||
DESCRIPTION=$(
|
||||
cat <<EOF
|
||||
<div align='center'>
|
||||
<a href='https://Helper-Scripts.com' target='_blank' rel='noopener noreferrer'>
|
||||
<img src='https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/images/logo-81x112.png' alt='Logo' style='width:81px;height:112px;'/>
|
||||
</a>
|
||||
|
||||
<h2 style='font-size: 24px; margin: 20px 0;'>Debian VM</h2>
|
||||
|
||||
<p style='margin: 16px 0;'>
|
||||
<a href='https://ko-fi.com/community_scripts' target='_blank' rel='noopener noreferrer'>
|
||||
<img src='https://img.shields.io/badge/☕-Buy us a coffee-blue' alt='spend Coffee' />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-github fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>GitHub</a>
|
||||
</span>
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-comments fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE/discussions' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>Discussions</a>
|
||||
</span>
|
||||
<span style='margin: 0 10px;'>
|
||||
<i class="fa fa-exclamation-circle fa-fw" style="color: #f5f5f5;"></i>
|
||||
<a href='https://github.com/community-scripts/ProxmoxVE/issues' target='_blank' rel='noopener noreferrer' style='text-decoration: none; color: #00617f;'>Issues</a>
|
||||
</span>
|
||||
</div>
|
||||
EOF
|
||||
)
|
||||
qm set $VMID -description "$DESCRIPTION" >/dev/null
|
||||
if [ -n "$DISK_SIZE" ]; then
|
||||
msg_info "Resizing disk to $DISK_SIZE GB"
|
||||
qm resize $VMID scsi0 ${DISK_SIZE} >/dev/null
|
||||
else
|
||||
msg_info "Using default disk size of $DEFAULT_DISK_SIZE GB"
|
||||
qm resize $VMID scsi0 ${DEFAULT_DISK_SIZE} >/dev/null
|
||||
fi
|
||||
|
||||
msg_ok "Created a Debian 13 VM ${CL}${BL}(${HN})"
|
||||
if [ "$START_VM" == "yes" ]; then
|
||||
msg_info "Starting Debian 13 VM"
|
||||
qm start $VMID
|
||||
msg_ok "Started Debian 13 VM"
|
||||
fi
|
||||
|
||||
msg_ok "Completed successfully!\n"
|
||||
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"
|
||||
414
unifi-os.sh
Normal file
414
unifi-os.sh
Normal file
@@ -0,0 +1,414 @@
|
||||
#!/usr/bin/env bash
|
||||
# Debian 13 (Trixie) VM - Preset AZYLIS + UniFi OS Server (uosserver)
|
||||
# - Bridge par défaut: dhcp
|
||||
# - Cloud-init: activé + DHCP IPv4 (ipconfig0)
|
||||
# - root/root fonctionnel (unlock root sur Debian cloud)
|
||||
# - QEMU guest agent
|
||||
# - Resize disque (qm resize + growpart/resize_rootfs)
|
||||
# - Console noVNC plus confortable: VGA virtio + GRUB 1920x1080 + police 8x16
|
||||
# - Notes Proxmox + logo AZYLIS
|
||||
# - Installation UniFi OS Server (podman + slirp4netns + installer + service uosserver)
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
# -----------------------------
|
||||
# Defaults (modifiable)
|
||||
# -----------------------------
|
||||
HN_DEFAULT="azylis-unifios"
|
||||
BRG_DEFAULT="dhcp"
|
||||
CORE_DEFAULT="2"
|
||||
RAM_DEFAULT="2048" # MiB (reco 4G mini pour UOS)
|
||||
DISK_DEFAULT="30G" # ex: 20G, 30G, 50G
|
||||
START_VM_DEFAULT="no" # yes/no
|
||||
ONBOOT_DEFAULT="1" # 0/1
|
||||
|
||||
# Root access (LAB / template)
|
||||
CI_USER_DEFAULT="root"
|
||||
CI_PASS_DEFAULT="root" # ⚠️ à changer en prod
|
||||
|
||||
# Debian 13 cloud image
|
||||
DEBIAN13_URL="https://cloud.debian.org/images/cloud/trixie/latest/debian-13-genericcloud-amd64.qcow2"
|
||||
|
||||
# UniFi OS Server (linux x64) - DEFAULT demandé
|
||||
UOS_URL_DEFAULT="https://fw-download.ubnt.com/data/unifi-os-server/1856-linux-x64-5.0.6-33f4990f-6c68-4e72-9d9c-477496c22450.6-x64"
|
||||
|
||||
# Notes/logo (Proxmox description)
|
||||
AZYLIS_SITE="https://www.azylis.net"
|
||||
AZYLIS_LOGO="https://www.azylis.net/favicon.ico" # remplace par une URL directe PNG/SVG si tu as mieux
|
||||
|
||||
# -----------------------------
|
||||
# Helpers
|
||||
# -----------------------------
|
||||
YW=$'\033[33m'
|
||||
GN=$'\033[1;92m'
|
||||
RD=$'\033[01;31m'
|
||||
BL=$'\033[36m'
|
||||
CL=$'\033[m'
|
||||
TAB=" "
|
||||
|
||||
msg_info(){ echo -e "${TAB}${YW}▶${CL} $*"; }
|
||||
msg_ok(){ echo -e "${TAB}${GN}✔${CL} $*"; }
|
||||
msg_err(){ echo -e "${TAB}${RD}✖${CL} $*" >&2; }
|
||||
|
||||
need_cmd() { command -v "$1" >/dev/null 2>&1 || { msg_err "Commande manquante: $1"; exit 1; }; }
|
||||
|
||||
get_valid_nextid() {
|
||||
local try_id
|
||||
try_id=$(pvesh get /cluster/nextid)
|
||||
while true; do
|
||||
if [ -f "/etc/pve/qemu-server/${try_id}.conf" ] || [ -f "/etc/pve/lxc/${try_id}.conf" ]; then
|
||||
try_id=$((try_id + 1)); continue
|
||||
fi
|
||||
if lvs --noheadings -o lv_name 2>/dev/null | grep -qE "(^|[-_])${try_id}($|[-_])"; then
|
||||
try_id=$((try_id + 1)); continue
|
||||
fi
|
||||
break
|
||||
done
|
||||
echo "$try_id"
|
||||
}
|
||||
|
||||
# -----------------------------
|
||||
# Pre-flight
|
||||
# -----------------------------
|
||||
if [[ "$(id -u)" -ne 0 ]]; then
|
||||
msg_err "Lance ce script en root sur le noeud Proxmox."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
need_cmd pvesh
|
||||
need_cmd pvesm
|
||||
need_cmd qm
|
||||
need_cmd curl
|
||||
need_cmd awk
|
||||
need_cmd sed
|
||||
need_cmd whiptail
|
||||
|
||||
# -----------------------------
|
||||
# UI
|
||||
# -----------------------------
|
||||
VMID="$(get_valid_nextid)"
|
||||
HN="$HN_DEFAULT"
|
||||
BRG="$BRG_DEFAULT"
|
||||
CORE_COUNT="$CORE_DEFAULT"
|
||||
RAM_SIZE="$RAM_DEFAULT"
|
||||
DISK_SIZE="$DISK_DEFAULT"
|
||||
START_VM="$START_VM_DEFAULT"
|
||||
|
||||
UOS_URL="$UOS_URL_DEFAULT"
|
||||
|
||||
if ! whiptail --backtitle "AZYLIS - Proxmox" --title "Debian 13 VM + UniFi OS Server" --yesno \
|
||||
"Ce script va créer une VM Debian 13 (cloud image) avec presets AZYLIS + UniFi OS Server (uosserver).\n\nContinuer ?" 12 78; then
|
||||
msg_err "Annulé."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
HN="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Hostname" --inputbox "Hostname VM:" 8 70 "$HN" 3>&1 1>&2 2>&3 || true)"
|
||||
HN="${HN:-$HN_DEFAULT}"
|
||||
|
||||
BRG="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Bridge" --inputbox "Bridge Proxmox (nom Linux):" 8 70 "$BRG" 3>&1 1>&2 2>&3 || true)"
|
||||
BRG="${BRG:-$BRG_DEFAULT}"
|
||||
|
||||
CORE_COUNT="$(whiptail --backtitle "AZYLIS - Proxmox" --title "CPU" --inputbox "vCPU:" 8 70 "$CORE_COUNT" 3>&1 1>&2 2>&3 || true)"
|
||||
CORE_COUNT="${CORE_COUNT:-$CORE_DEFAULT}"
|
||||
|
||||
RAM_SIZE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "RAM" --inputbox "RAM (MiB) (reco 4096+ pour UOS):" 8 70 "$RAM_SIZE" 3>&1 1>&2 2>&3 || true)"
|
||||
RAM_SIZE="${RAM_SIZE:-$RAM_DEFAULT}"
|
||||
|
||||
DISK_SIZE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Disque" --inputbox "Taille disque (ex: 30G):" 8 70 "$DISK_SIZE" 3>&1 1>&2 2>&3 || true)"
|
||||
DISK_SIZE="${DISK_SIZE:-$DISK_DEFAULT}"
|
||||
|
||||
# UOS URL - pré-remplie avec ta version 5.0.6
|
||||
UOS_URL="$(whiptail --backtitle "AZYLIS - Proxmox" --title "UniFi OS Server (uosserver)" \
|
||||
--inputbox "URL DIRECTE installeur Linux x64 (prérempli).\n\nTu peux la laisser telle quelle, ou coller une autre version depuis UI Releases/Download." 14 110 \
|
||||
"$UOS_URL" 3>&1 1>&2 2>&3 || true)"
|
||||
UOS_URL="${UOS_URL:-$UOS_URL_DEFAULT}"
|
||||
|
||||
if whiptail --backtitle "AZYLIS - Proxmox" --title "Démarrage" --defaultno --yesno \
|
||||
"Démarrer la VM automatiquement à la fin ?" 10 70; then
|
||||
START_VM="yes"
|
||||
else
|
||||
START_VM="no"
|
||||
fi
|
||||
|
||||
# -----------------------------
|
||||
# Storage selection (images)
|
||||
# -----------------------------
|
||||
msg_info "Détection des stockages compatibles (content: images)"
|
||||
STORAGE_MENU=()
|
||||
MSG_MAX_LEN=0
|
||||
|
||||
while read -r line; do
|
||||
TAG="$(awk '{print $1}' <<<"$line")"
|
||||
TYPE="$(awk '{print $2}' <<<"$line")"
|
||||
ITEM="Type: ${TYPE}"
|
||||
(( ${#ITEM} > MSG_MAX_LEN )) && MSG_MAX_LEN=${#ITEM}
|
||||
STORAGE_MENU+=("$TAG" "$ITEM" "OFF")
|
||||
done < <(pvesm status -content images | awk 'NR>1')
|
||||
|
||||
if [[ ${#STORAGE_MENU[@]} -lt 3 ]]; then
|
||||
msg_err "Aucun stockage valide détecté (content images)."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]]; then
|
||||
STORAGE="${STORAGE_MENU[0]}"
|
||||
else
|
||||
STORAGE="$(whiptail --backtitle "AZYLIS - Proxmox" --title "Storage" --radiolist \
|
||||
"Choisis le stockage pour la VM:" 16 $((MSG_MAX_LEN + 30)) 6 \
|
||||
"${STORAGE_MENU[@]}" 3>&1 1>&2 2>&3)"
|
||||
fi
|
||||
|
||||
msg_ok "Storage: ${BL}${STORAGE}${CL}"
|
||||
msg_ok "VMID: ${BL}${VMID}${CL} | Hostname: ${BL}${HN}${CL} | Bridge: ${BL}${BRG}${CL}"
|
||||
|
||||
# -----------------------------
|
||||
# Download image
|
||||
# -----------------------------
|
||||
TMPDIR="$(mktemp -d)"
|
||||
cleanup() { rm -rf "$TMPDIR" >/dev/null 2>&1 || true; }
|
||||
trap cleanup EXIT
|
||||
|
||||
cd "$TMPDIR"
|
||||
FILE="$(basename "$DEBIAN13_URL")"
|
||||
msg_info "Téléchargement Debian 13 cloud image: $FILE"
|
||||
curl -fL -o "$FILE" "$DEBIAN13_URL"
|
||||
msg_ok "Image téléchargée"
|
||||
|
||||
# -----------------------------
|
||||
# Create VM
|
||||
# -----------------------------
|
||||
msg_info "Création VM"
|
||||
qm create "$VMID" \
|
||||
-name "$HN" \
|
||||
-cores "$CORE_COUNT" \
|
||||
-memory "$RAM_SIZE" \
|
||||
-ostype l26 \
|
||||
-scsihw virtio-scsi-pci \
|
||||
-net0 "virtio,bridge=${BRG}" \
|
||||
-agent 1 \
|
||||
-onboot "$ONBOOT_DEFAULT" \
|
||||
-tablet 0 \
|
||||
-localtime 1 >/dev/null
|
||||
|
||||
# noVNC console comfort
|
||||
qm set "$VMID" --vga virtio >/dev/null
|
||||
qm set "$VMID" --bios ovmf >/dev/null
|
||||
qm set "$VMID" --serial0 socket >/dev/null
|
||||
|
||||
msg_ok "VM créée"
|
||||
|
||||
# -----------------------------
|
||||
# Import disk
|
||||
# -----------------------------
|
||||
msg_info "Import disque dans ${STORAGE}"
|
||||
IMPORT_LOG="$(qm importdisk "$VMID" "$FILE" "$STORAGE" 2>&1 || true)"
|
||||
IMPORT_DISK="$(awk -F"'" '/Successfully imported disk as/ {print $2}' <<<"$IMPORT_LOG" | tail -n1)"
|
||||
if [[ -z "${IMPORT_DISK:-}" ]]; then
|
||||
IMPORT_DISK="${STORAGE}:vm-${VMID}-disk-0"
|
||||
fi
|
||||
|
||||
qm set "$VMID" \
|
||||
--scsi0 "${IMPORT_DISK},discard=on,ssd=1" \
|
||||
--scsi1 "${STORAGE}:cloudinit" \
|
||||
--boot order=scsi0 >/dev/null
|
||||
|
||||
# Resize disk on Proxmox side
|
||||
msg_info "Resize disque virtuel à ${DISK_SIZE}"
|
||||
qm resize "$VMID" scsi0 "$DISK_SIZE" >/dev/null
|
||||
msg_ok "Resize Proxmox OK"
|
||||
|
||||
# Cloud-init network: DHCP IPv4 (affiché dans UI)
|
||||
qm set "$VMID" --ipconfig0 ip=dhcp >/dev/null
|
||||
|
||||
# Cloud-init user/password (Proxmox fields)
|
||||
qm set "$VMID" --ciuser "$CI_USER_DEFAULT" --cipassword "$CI_PASS_DEFAULT" >/dev/null
|
||||
|
||||
# -----------------------------
|
||||
# Cloud-init user-data (FR + guest agent + grow root + 1080p + UOS Server)
|
||||
# -----------------------------
|
||||
SNIPPET_DIR="/var/lib/vz/snippets"
|
||||
mkdir -p "$SNIPPET_DIR"
|
||||
USERDATA_FILE="${SNIPPET_DIR}/${VMID}-user-data.yaml"
|
||||
|
||||
msg_info "Génération cloud-init user-data: ${USERDATA_FILE}"
|
||||
|
||||
cat > "$USERDATA_FILE" <<EOF
|
||||
#cloud-config
|
||||
package_update: true
|
||||
|
||||
# Auto-grow partition + filesystem
|
||||
growpart:
|
||||
mode: auto
|
||||
devices: ["/"]
|
||||
ignore_growroot_disabled: false
|
||||
resize_rootfs: true
|
||||
|
||||
# Root: Debian cloud lock root par défaut -> on force un root/root utilisable (LAB)
|
||||
disable_root: false
|
||||
ssh_pwauth: true
|
||||
chpasswd:
|
||||
expire: false
|
||||
list: |
|
||||
root:${CI_PASS_DEFAULT}
|
||||
|
||||
packages:
|
||||
- qemu-guest-agent
|
||||
- cloud-guest-utils
|
||||
- locales
|
||||
- kbd
|
||||
- console-setup
|
||||
- keyboard-configuration
|
||||
- curl
|
||||
- ca-certificates
|
||||
- podman
|
||||
- slirp4netns
|
||||
- expect
|
||||
|
||||
locale: fr_FR.UTF-8
|
||||
|
||||
write_files:
|
||||
# Console keymap FR + police petite
|
||||
- path: /etc/default/console-setup
|
||||
content: |
|
||||
ACTIVE_CONSOLES="/dev/tty[1-6]"
|
||||
CHARMAP="UTF-8"
|
||||
CODESET="Lat15"
|
||||
FONTFACE="Fixed"
|
||||
FONTSIZE="8x16"
|
||||
KEYMAP="fr"
|
||||
|
||||
- path: /etc/default/keyboard
|
||||
content: |
|
||||
XKBLAYOUT="fr"
|
||||
XKBVARIANT=""
|
||||
XKBMODEL="pc105"
|
||||
XKBOPTIONS=""
|
||||
|
||||
# Force GRUB gfxmode 1080p (utile pour noVNC/VGA)
|
||||
- path: /etc/default/grub.d/99-pve-video.cfg
|
||||
content: |
|
||||
GRUB_GFXMODE=1920x1080
|
||||
GRUB_GFXPAYLOAD_LINUX=keep
|
||||
|
||||
- path: /root/uos/install.exp
|
||||
permissions: "0755"
|
||||
content: |
|
||||
set timeout -1
|
||||
spawn ./uos-installer.bin
|
||||
expect {
|
||||
-re {Proceed\?\s*\(y/N\):} { send "y\r"; exp_continue }
|
||||
eof
|
||||
}
|
||||
|
||||
runcmd:
|
||||
# Root unlock (Debian cloud) + s'assurer que le mot de passe est bien actif
|
||||
- passwd -u root || true
|
||||
- echo "root:root" | chpasswd
|
||||
|
||||
# Réseau: petite attente (DHCP)
|
||||
- bash -lc 'for i in {1..30}; do ping -c1 1.1.1.1 >/dev/null 2>&1 && break; sleep 2; done'
|
||||
|
||||
# Locale FR
|
||||
- sed -i 's/^# *fr_FR.UTF-8 UTF-8/fr_FR.UTF-8 UTF-8/' /etc/locale.gen || true
|
||||
- locale-gen fr_FR.UTF-8 || true
|
||||
- update-locale LANG=fr_FR.UTF-8 || true
|
||||
|
||||
# Clavier console FR immédiat
|
||||
- loadkeys fr || true
|
||||
- setupcon -k || true
|
||||
|
||||
# GRUB update (pour 1080p)
|
||||
- update-grub || true
|
||||
|
||||
# Agent Proxmox
|
||||
- systemctl enable qemu-guest-agent || true
|
||||
- systemctl start qemu-guest-agent || true
|
||||
|
||||
# --- UniFi OS Server (uosserver) ---
|
||||
- bash -lc 'set -e; mkdir -p /root/uos && cd /root/uos && curl -fL -o uos-installer.bin "https://fw-download.ubnt.com/data/unifi-os-server/1856-linux-x64-5.0.6-33f4990f-6c68-4e72-9d9c-477496c22450.6-x64"'
|
||||
|
||||
# droits d'exécution
|
||||
- bash -lc 'chmod +x /root/uos/uos-installer.bin /root/uos/install.exp'
|
||||
|
||||
# lancement install
|
||||
- bash -lc 'cd /root/uos && expect /root/uos/install.exp | tee /root/uos/uos-install.log || true'
|
||||
|
||||
# service
|
||||
- systemctl enable --now uosserver || true
|
||||
- systemctl status uosserver --no-pager -l || true
|
||||
- systemctl start uosserver
|
||||
EOF
|
||||
|
||||
# Attach snippet to VM (requires 'local' storage with Snippets enabled)
|
||||
qm set "$VMID" --cicustom "user=local:snippets/${VMID}-user-data.yaml" >/dev/null
|
||||
msg_ok "Cloud-init user-data appliqué"
|
||||
|
||||
# -----------------------------
|
||||
# Proxmox Notes (Description)
|
||||
# -----------------------------
|
||||
CREATED_AT="$(date -Is)"
|
||||
DESCRIPTION=$(
|
||||
cat <<EOF
|
||||
<div align="center">
|
||||
<a href="${AZYLIS_SITE}" target="_blank" rel="noopener noreferrer">
|
||||
<img src="${AZYLIS_LOGO}" alt="AZYLIS" style="max-width:110px;max-height:110px;margin-bottom:8px;">
|
||||
</a>
|
||||
<h2 style="margin:6px 0;">AZYLIS — Debian 13 VM</h2>
|
||||
</div>
|
||||
|
||||
<b>Infos VM</b>
|
||||
<ul>
|
||||
<li><b>VMID</b> : ${VMID}</li>
|
||||
<li><b>Hostname</b> : ${HN}</li>
|
||||
<li><b>CPU</b> : ${CORE_COUNT} vCPU</li>
|
||||
<li><b>RAM</b> : ${RAM_SIZE} MiB</li>
|
||||
<li><b>Disque</b> : ${DISK_SIZE} (auto-grow activé)</li>
|
||||
<li><b>Bridge</b> : ${BRG}</li>
|
||||
<li><b>IPv4</b> : DHCP (cloud-init ipconfig0)</li>
|
||||
</ul>
|
||||
|
||||
<b>Accès (LAB)</b>
|
||||
<ul>
|
||||
<li><b>Utilisateur</b> : ${CI_USER_DEFAULT}</li>
|
||||
<li><b>Mot de passe</b> : ${CI_PASS_DEFAULT}</li>
|
||||
</ul>
|
||||
|
||||
<b>Provisioning</b>
|
||||
<ul>
|
||||
<li>Cloud-init: activé</li>
|
||||
<li>Locale/Clavier: FR</li>
|
||||
<li>Console: GRUB 1920x1080 + police 8x16</li>
|
||||
<li>Agent Proxmox: qemu-guest-agent</li>
|
||||
<li>UniFi OS Server: install auto (uosserver) - 5.0.6</li>
|
||||
</ul>
|
||||
|
||||
<b>Accès UniFi OS</b>
|
||||
<ul>
|
||||
<li>URL: <code>https://<IP_VM>:11443</code></li>
|
||||
<li>Service: <code>systemctl status uosserver</code></li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<small>Créé le ${CREATED_AT}</small>
|
||||
EOF
|
||||
)
|
||||
qm set "$VMID" -description "$DESCRIPTION" >/dev/null
|
||||
msg_ok "Notes VM (AZYLIS) ajoutées"
|
||||
|
||||
# -----------------------------
|
||||
# Finish
|
||||
# -----------------------------
|
||||
msg_ok "VM Debian 13 prête: ${BL}${VMID}${CL}"
|
||||
|
||||
if [[ "$START_VM" == "yes" ]]; then
|
||||
msg_info "Démarrage VM..."
|
||||
qm start "$VMID" >/dev/null
|
||||
msg_ok "VM démarrée."
|
||||
else
|
||||
msg_ok "VM laissée arrêtée (comme demandé)."
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "Commandes utiles :"
|
||||
echo " Dans la VM: systemctl status uosserver"
|
||||
echo " Dashboard: https://<IP_VM>:11443"
|
||||
Reference in New Issue
Block a user