mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
#2354 add info about credential storage
This commit is contained in:
parent
4d5d98af61
commit
19a349bc8c
1 changed files with 2 additions and 2 deletions
|
@ -25,12 +25,12 @@ on() {
|
|||
fi
|
||||
|
||||
if [ -z "${user}" ]; then
|
||||
whiptail --title "Static Channel Backup on Nextcloud" --inputbox "Enter your Nextcloud username" 11 70 2>/home/admin/.tmp
|
||||
whiptail --title "Static Channel Backup on Nextcloud" --inputbox "\nEnter your Nextcloud username:\n(best to use a dedicated user for backup)" 10 70 2>/home/admin/.tmp
|
||||
user=$(cat /home/admin/.tmp)
|
||||
fi
|
||||
|
||||
if [ -z "${password}" ]; then
|
||||
whiptail --title "Static Channel Backup on Nextcloud" --inputbox "Enter your Nextcloud password" 11 70 2>/home/admin/.tmp
|
||||
whiptail --title "Static Channel Backup on Nextcloud" --inputbox "\nEnter your Nextcloud password:\n(will get stored in cleartext on raspiblitz)" 10 70 2>/home/admin/.tmp
|
||||
password=$(cat /home/admin/.tmp)
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue