mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
Update vaultwarden-v3.sh
Update default configuration for : vCPU (1 rather 4) and RAM (512Mib rather than 4096Mib).
This commit is contained in:
parent
95096cc89c
commit
a230c91cdf
1 changed files with 8 additions and 8 deletions
|
@ -87,10 +87,10 @@ function default_settings() {
|
|||
HN=$NSAPP
|
||||
echo -e "${DGN}Using Disk Size ${BGN}8${CL}${DGN}GB${CL}"
|
||||
DISK_SIZE="8"
|
||||
echo -e "${DGN}Using ${BGN}4${CL}${DGN}vCPU${CL}"
|
||||
CORE_COUNT="4"
|
||||
echo -e "${DGN}Using ${BGN}4096${CL}${DGN}MiB RAM${CL}"
|
||||
RAM_SIZE="4096"
|
||||
echo -e "${DGN}Using ${BGN}1${CL}${DGN}vCPU${CL}"
|
||||
CORE_COUNT="1"
|
||||
echo -e "${DGN}Using ${BGN}512${CL}${DGN}MiB RAM${CL}"
|
||||
RAM_SIZE="512"
|
||||
echo -e "${DGN}Using Bridge ${BGN}vmbr0${CL}"
|
||||
BRG="vmbr0"
|
||||
echo -e "${DGN}Using Static IP Address ${BGN}DHCP${CL}"
|
||||
|
@ -179,9 +179,9 @@ header_info
|
|||
echo -e "${DGN}Using CT ID ${BGN}$CT_ID${CL}"
|
||||
echo -e "${DGN}Using CT Name ${BGN}$HN${CL}"
|
||||
echo -e "${DGN}Using Disk Size ${BGN}$DISK_SIZE${CL}${DGN}GB${CL}"
|
||||
echo -e "${YW}Allocate CPU cores, or Press [ENTER] for Default: 4 "
|
||||
echo -e "${YW}Allocate CPU cores, or Press [ENTER] for Default: 1 "
|
||||
read CORE_COUNT
|
||||
if [ -z $CORE_COUNT ]; then CORE_COUNT="4"; fi;
|
||||
if [ -z $CORE_COUNT ]; then CORE_COUNT="1"; fi;
|
||||
echo -en "${DGN}Set Cores To ${BL}$CORE_COUNT${CL}${DGN}vCPU${CL}"
|
||||
echo -e " ${CM}${CL} \r"
|
||||
sleep 1
|
||||
|
@ -194,9 +194,9 @@ header_info
|
|||
echo -e "${DGN}Using CT Name ${BGN}$HN${CL}"
|
||||
echo -e "${DGN}Using Disk Size ${BGN}$DISK_SIZE${CL}${DGN}GB${CL}"
|
||||
echo -e "${DGN}Using ${BGN}${CORE_COUNT}${CL}${DGN}vCPU${CL}"
|
||||
echo -e "${YW}Allocate RAM in MiB, or Press [ENTER] for Default: 4096 "
|
||||
echo -e "${YW}Allocate RAM in MiB, or Press [ENTER] for Default: 512 "
|
||||
read RAM_SIZE
|
||||
if [ -z $RAM_SIZE ]; then RAM_SIZE="4096"; fi;
|
||||
if [ -z $RAM_SIZE ]; then RAM_SIZE="512"; fi;
|
||||
echo -en "${DGN}Set RAM To ${BL}$RAM_SIZE${CL}${DGN}MiB RAM${CL}"
|
||||
echo -e " ${CM}${CL} \n"
|
||||
sleep 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue