Change password functions
This commit is contained in:
parent
71b9d16580
commit
110564dc89
|
@ -53,6 +53,10 @@ etherpad_variables=(ETHERPAD_COMMIT
|
|||
DDNS_PROVIDER
|
||||
MY_USERNAME)
|
||||
|
||||
function change_password_etherpad {
|
||||
echo -n ''
|
||||
}
|
||||
|
||||
function etherpad_create_database {
|
||||
if [ ! $ETHERPAD_ADMIN_PASSWORD ]; then
|
||||
if [ -f $IMAGE_PASSWORD_FILE ]; then
|
||||
|
|
|
@ -72,6 +72,10 @@ jitsi_variables=(ONION_ONLY
|
|||
JITSI_VIDEOBRIDGE_ONION_HOSTNAME
|
||||
MY_USERNAME)
|
||||
|
||||
function change_password_jitsi {
|
||||
echo -n ''
|
||||
}
|
||||
|
||||
function can_install_videobridge {
|
||||
check_architecture=$(uname -a)
|
||||
if [[ "$check_architecture" == *"amd64"* || "$check_architecture" == *"i386"* ]]; then
|
||||
|
|
Loading…
Reference in New Issue