mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
add backtitle
This commit is contained in:
parent
e52b7872d2
commit
6fae1fc557
53 changed files with 220 additions and 220 deletions
|
@ -57,7 +57,7 @@ function update_script() {
|
|||
fi
|
||||
while true; do
|
||||
CHOICE=$(
|
||||
whiptail --title "SUPPORT" --menu "Select option" 11 58 2 \
|
||||
whiptail --backtitle "Proxmox VE Helper Scripts" --title "SUPPORT" --menu "Select option" 11 58 2 \
|
||||
"1" "Update Vaultwarden" \
|
||||
"2" "Reset ADMIN_TOKEN" 3>&2 2>&1 1>&3
|
||||
)
|
||||
|
@ -73,7 +73,7 @@ function update_script() {
|
|||
exit
|
||||
;;
|
||||
2)
|
||||
if NEWTOKEN=$(whiptail --passwordbox "Setup your ADMIN_TOKEN (make it strong)" 10 58 3>&1 1>&2 2>&3); then
|
||||
if NEWTOKEN=$(whiptail --backtitle "Proxmox VE Helper Scripts" --passwordbox "Setup your ADMIN_TOKEN (make it strong)" 10 58 3>&1 1>&2 2>&3); then
|
||||
if [[ -z "$NEWTOKEN" ]]; then exit-script; fi
|
||||
if ! command -v argon2 >/dev/null 2>&1; then apk add argon2 &>/dev/null; fi
|
||||
TOKEN=$(echo -n ${NEWTOKEN} | argon2 "$(openssl rand -base64 32)" -e -id -k 19456 -t 2 -p 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue