mirror of https://github.com/tteck/Proxmox.git
Update technitiumdns-v3.sh
This commit is contained in:
parent
93234cd36c
commit
bba671fd04
|
@ -209,6 +209,29 @@ header_info
|
|||
echo -e "${DGN}Using ${BGN}${CORE_COUNT}vCPU${CL}"
|
||||
echo -e "${DGN}Using ${BGN}${RAM_SIZE}MiB${CL}${DGN} RAM${CL}"
|
||||
echo -e "${DGN}Using IP Address ${BGN}$NET${CL}"
|
||||
echo -e "${YW}Enter a Gateway IP, or Press [ENTER] for Default: NONE "
|
||||
read GATE1
|
||||
if [ -z $GATE1 ]; then GATE1="NONE" GATE=" ";
|
||||
echo -en "${DGN}Set Gateway IP To ${BL}$GATE1${CL}"
|
||||
else
|
||||
GATE="-gw=$GATE1"
|
||||
echo -en "${DGN}Set Gateway IP To ${BL}$GATE1${CL}"
|
||||
fi;
|
||||
echo -e " ${CM}${CL} \n"
|
||||
sleep 1
|
||||
clear
|
||||
header_info
|
||||
|
||||
echo -e "${RD}Using Advanced Settings${CL}"
|
||||
echo -e "${DGN}Using CT Type ${BGN}$CT_TYPE1${CL}"
|
||||
echo -e "${DGN}Using CT Password ${BGN}$PW1${CL}"
|
||||
echo -e "${DGN}Using ID ${BGN}$CT_ID${CL}"
|
||||
echo -e "${DGN}Using CT Name ${BGN}$HN${CL}"
|
||||
echo -e "${DGN}Using Disk Size ${BGN}$DISK_SIZE${CL}"
|
||||
echo -e "${DGN}Using ${BGN}${CORE_COUNT}vCPU${CL}"
|
||||
echo -e "${DGN}Using ${BGN}${RAM_SIZE}MiB${CL}${DGN} RAM${CL}"
|
||||
echo -e "${DGN}Using IP Address ${BGN}$NET${CL}"
|
||||
echo -e "${DGN}Using Gateway IP Address ${BGN}$GATE1${CL}"
|
||||
echo -e "${YW}Enter a VLAN Tag, or Press [ENTER] for Default: NONE "
|
||||
read VLAN1
|
||||
if [ -z $VLAN1 ]; then VLAN1="NONE" VLAN=" ";
|
||||
|
@ -230,6 +253,7 @@ header_info
|
|||
echo -e "${DGN}Using ${BGN}${CORE_COUNT}vCPU${CL}"
|
||||
echo -e "${DGN}Using ${BGN}${RAM_SIZE}MiB${CL}${DGN} RAM${CL}"
|
||||
echo -e "${DGN}Using IP Address ${BGN}$NET${CL}"
|
||||
echo -e "${DGN}Using Gateway IP Address ${BGN}$GATE1${CL}"
|
||||
echo -e "${DGN}Using VLAN Tag ${BGN}$VLAN1${CL}"
|
||||
|
||||
read -p "Are these settings correct(y/n)? " -n 1 -r
|
||||
|
@ -267,7 +291,7 @@ export PCT_DISK_SIZE=$DISK_SIZE
|
|||
export PCT_OPTIONS="
|
||||
-features $FEATURES
|
||||
-hostname $HN
|
||||
-net0 name=eth0,bridge=vmbr0,ip=$NET
|
||||
-net0 name=eth0,bridge=vmbr0,$GATE,ip=$NET
|
||||
$VLAN
|
||||
-onboot 1
|
||||
-cores $CORE_COUNT
|
||||
|
|
Loading…
Reference in New Issue