mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Maintenance (#680)
This commit is contained in:
		
							parent
							
								
									32cbe55b37
								
							
						
					
					
						commit
						e7ec3d0275
					
				| 
						 | 
				
			
			@ -1,9 +1,9 @@
 | 
			
		|||
#!/usr/bin/env bash
 | 
			
		||||
YW=`echo "\033[33m"`
 | 
			
		||||
BL=`echo "\033[36m"`
 | 
			
		||||
RD=`echo "\033[01;31m"`
 | 
			
		||||
GN=`echo "\033[1;92m"`
 | 
			
		||||
CL=`echo "\033[m"`
 | 
			
		||||
YW=$(echo "\033[33m")
 | 
			
		||||
BL=$(echo "\033[36m")
 | 
			
		||||
RD=$(echo "\033[01;31m")
 | 
			
		||||
GN=$(echo "\033[1;92m")
 | 
			
		||||
CL=$(echo "\033[m")
 | 
			
		||||
CM="${GN}✓${CL}"
 | 
			
		||||
CROSS="${RD}✗${CL}"
 | 
			
		||||
BFR="\\r\\033[K"
 | 
			
		||||
| 
						 | 
				
			
			@ -25,9 +25,15 @@ function msg_error() {
 | 
			
		|||
 | 
			
		||||
msg_info "Validating Storage"
 | 
			
		||||
VALIDCT=$(pvesm status -content rootdir | awk 'NR>1')
 | 
			
		||||
if [ -z "$VALIDCT" ]; then msg_error "Unable to detect a valid Container Storage location."; exit 1; fi;
 | 
			
		||||
if [ -z "$VALIDCT" ]; then
 | 
			
		||||
  msg_error "Unable to detect a valid Container Storage location."
 | 
			
		||||
  exit 1
 | 
			
		||||
fi
 | 
			
		||||
VALIDTMP=$(pvesm status -content vztmpl | awk 'NR>1')
 | 
			
		||||
if [ -z "$VALIDTMP" ]; then msg_error "Unable to detect a valid Template Storage location."; exit 1; fi;
 | 
			
		||||
if [ -z "$VALIDTMP" ]; then
 | 
			
		||||
  msg_error "Unable to detect a valid Template Storage location."
 | 
			
		||||
  exit 1
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
set -o errexit
 | 
			
		||||
set -o errtrace
 | 
			
		||||
| 
						 | 
				
			
			@ -51,8 +57,14 @@ function select_storage() {
 | 
			
		|||
  local CONTENT
 | 
			
		||||
  local CONTENT_LABEL
 | 
			
		||||
  case $CLASS in
 | 
			
		||||
    container) CONTENT='rootdir'; CONTENT_LABEL='Container';;
 | 
			
		||||
    template) CONTENT='vztmpl'; CONTENT_LABEL='Container template';;
 | 
			
		||||
  container)
 | 
			
		||||
    CONTENT='rootdir'
 | 
			
		||||
    CONTENT_LABEL='Container'
 | 
			
		||||
    ;;
 | 
			
		||||
  template)
 | 
			
		||||
    CONTENT='vztmpl'
 | 
			
		||||
    CONTENT_LABEL='Container template'
 | 
			
		||||
    ;;
 | 
			
		||||
  *) false || die "Invalid storage class." ;;
 | 
			
		||||
  esac
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -10,13 +10,13 @@ NSAPP=$(echo ${APP,,} | tr -d ' ')
 | 
			
		|||
var_install="${NSAPP}-install"
 | 
			
		||||
NEXTID=$(pvesh get /cluster/nextid)
 | 
			
		||||
INTEGER='^[0-9]+$'
 | 
			
		||||
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"`
 | 
			
		||||
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")
 | 
			
		||||
BFR="\\r\\033[K"
 | 
			
		||||
HOLD="-"
 | 
			
		||||
CM="${GN}✓${CL}"
 | 
			
		||||
| 
						 | 
				
			
			@ -107,7 +107,8 @@ fi
 | 
			
		|||
  PW1=$(whiptail --inputbox "Set Root Password" 8 58 --title "PASSWORD(leave blank for automatic login)" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
  if [ $exitstatus = 0 ]; then
 | 
			
		||||
  if [ -z $PW1 ]; then PW1="Automatic Login" PW=" ";
 | 
			
		||||
    if [ -z $PW1 ]; then
 | 
			
		||||
      PW1="Automatic Login" PW=" "
 | 
			
		||||
      echo -e "${DGN}Using Root Password: ${BGN}$PW1${CL}"
 | 
			
		||||
    else
 | 
			
		||||
      PW="-password $PW1"
 | 
			
		||||
| 
						 | 
				
			
			@ -116,51 +117,72 @@ else
 | 
			
		|||
  fi
 | 
			
		||||
  CT_ID=$(whiptail --inputbox "Set Container ID" 8 58 $NEXTID --title "CONTAINER ID" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $CT_ID ]; then CT_ID="$NEXTID"; echo -e "${DGN}Container ID: ${BGN}$CT_ID${CL}";
 | 
			
		||||
  if [ -z $CT_ID ]; then
 | 
			
		||||
    CT_ID="$NEXTID"
 | 
			
		||||
    echo -e "${DGN}Container ID: ${BGN}$CT_ID${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Container ID: ${BGN}$CT_ID${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Container ID: ${BGN}$CT_ID${CL}"; fi
 | 
			
		||||
  fi
 | 
			
		||||
  CT_NAME=$(whiptail --inputbox "Set Hostname" 8 58 $NSAPP --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $CT_NAME ]; then HN="$NSAPP"; echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}";
 | 
			
		||||
  if [ -z $CT_NAME ]; then
 | 
			
		||||
    HN="$NSAPP"
 | 
			
		||||
    echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then HN=$(echo ${CT_NAME,,} | tr -d ' '); echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then
 | 
			
		||||
      HN=$(echo ${CT_NAME,,} | tr -d ' ')
 | 
			
		||||
      echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}"
 | 
			
		||||
    fi
 | 
			
		||||
  fi
 | 
			
		||||
  DISK_SIZE=$(whiptail --inputbox "Set Disk Size in GB" 8 58 $var_disk --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $DISK_SIZE ]; then DISK_SIZE="$var_disk"; echo -e "${DGN}Using Disk Size: ${BGN}$DISK_SIZE${CL}";
 | 
			
		||||
  if [ -z $DISK_SIZE ]; then
 | 
			
		||||
    DISK_SIZE="$var_disk"
 | 
			
		||||
    echo -e "${DGN}Using Disk Size: ${BGN}$DISK_SIZE${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Disk Size: ${BGN}$DISK_SIZE${CL}"; fi;
 | 
			
		||||
    if ! [[ $DISK_SIZE =~ $INTEGER ]] ; then echo -e "${RD}⚠ DISK SIZE MUST BE A INTEGER NUMBER!${CL}"; advanced_settings; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Disk Size: ${BGN}$DISK_SIZE${CL}"; fi
 | 
			
		||||
    if ! [[ $DISK_SIZE =~ $INTEGER ]]; then
 | 
			
		||||
      echo -e "${RD}⚠ DISK SIZE MUST BE A INTEGER NUMBER!${CL}"
 | 
			
		||||
      advanced_settings
 | 
			
		||||
    fi
 | 
			
		||||
  fi
 | 
			
		||||
  CORE_COUNT=$(whiptail --inputbox "Allocate CPU Cores" 8 58 $var_cpu --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $CORE_COUNT ]; then CORE_COUNT="$var_cpu"; echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}";
 | 
			
		||||
  if [ -z $CORE_COUNT ]; then
 | 
			
		||||
    CORE_COUNT="$var_cpu"
 | 
			
		||||
    echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}"; fi
 | 
			
		||||
  fi
 | 
			
		||||
  RAM_SIZE=$(whiptail --inputbox "Allocate RAM in MiB" 8 58 $var_ram --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $RAM_SIZE ]; then RAM_SIZE="$var_ram"; echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}";
 | 
			
		||||
  if [ -z $RAM_SIZE ]; then
 | 
			
		||||
    RAM_SIZE="$var_ram"
 | 
			
		||||
    echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}"; fi
 | 
			
		||||
  fi
 | 
			
		||||
  BRG=$(whiptail --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $BRG ]; then BRG="vmbr0"; echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}";
 | 
			
		||||
  if [ -z $BRG ]; then
 | 
			
		||||
    BRG="vmbr0"
 | 
			
		||||
    echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}"; fi
 | 
			
		||||
  fi
 | 
			
		||||
  NET=$(whiptail --inputbox "Set a Static IPv4 CIDR Address(/24)" 8 58 dhcp --title "IP ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
if [ -z $NET ]; then NET="dhcp"; echo -e "${DGN}Using IP Address: ${BGN}$NET${CL}";
 | 
			
		||||
  if [ -z $NET ]; then
 | 
			
		||||
    NET="dhcp"
 | 
			
		||||
    echo -e "${DGN}Using IP Address: ${BGN}$NET${CL}"
 | 
			
		||||
  else
 | 
			
		||||
  if [ $exitstatus = 0 ]; then echo -e "${DGN}Using IP Address: ${BGN}$NET${CL}"; fi;
 | 
			
		||||
    if [ $exitstatus = 0 ]; then echo -e "${DGN}Using IP Address: ${BGN}$NET${CL}"; fi
 | 
			
		||||
  fi
 | 
			
		||||
  GATE1=$(whiptail --inputbox "Set a Gateway IP (mandatory if Static IP was used)" 8 58 --title "GATEWAY IP" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
  if [ $exitstatus = 0 ]; then
 | 
			
		||||
  if [ -z $GATE1 ]; then GATE1="Default" GATE="";
 | 
			
		||||
    if [ -z $GATE1 ]; then
 | 
			
		||||
      GATE1="Default" GATE=""
 | 
			
		||||
      echo -e "${DGN}Using Gateway IP Address: ${BGN}$GATE1${CL}"
 | 
			
		||||
    else
 | 
			
		||||
      GATE=",gw=$GATE1"
 | 
			
		||||
| 
						 | 
				
			
			@ -170,7 +192,8 @@ fi
 | 
			
		|||
  MAC1=$(whiptail --inputbox "Set a MAC Address(leave blank for default)" 8 58 --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
  if [ $exitstatus = 0 ]; then
 | 
			
		||||
  if [ -z $MAC1 ]; then MAC1="Default" MAC="";
 | 
			
		||||
    if [ -z $MAC1 ]; then
 | 
			
		||||
      MAC1="Default" MAC=""
 | 
			
		||||
      echo -e "${DGN}Using MAC Address: ${BGN}$MAC1${CL}"
 | 
			
		||||
    else
 | 
			
		||||
      MAC=",hwaddr=$MAC1"
 | 
			
		||||
| 
						 | 
				
			
			@ -180,7 +203,8 @@ fi
 | 
			
		|||
  VLAN1=$(whiptail --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" --cancel-button Exit-Script 3>&1 1>&2 2>&3)
 | 
			
		||||
  exitstatus=$?
 | 
			
		||||
  if [ $exitstatus = 0 ]; then
 | 
			
		||||
  if [ -z $VLAN1 ]; then VLAN1="Default" VLAN="";
 | 
			
		||||
    if [ -z $VLAN1 ]; then
 | 
			
		||||
      VLAN1="Default" VLAN=""
 | 
			
		||||
      echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}"
 | 
			
		||||
    else
 | 
			
		||||
      VLAN=",tag=$VLAN1"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue