Matrix not available on onion only installs
This commit is contained in:
parent
1dedb0cec9
commit
35c6a6f9e2
|
@ -626,6 +626,10 @@ function install_home_server {
|
|||
}
|
||||
|
||||
function install_matrix {
|
||||
if [[ $ONION_ONLY != 'no' ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
check_ram_availability 1500
|
||||
|
||||
if [ ! -d $INSTALL_DIR ]; then
|
||||
|
|
|
@ -207,6 +207,10 @@ function remove_riot {
|
|||
}
|
||||
|
||||
function install_riot {
|
||||
if [[ $ONION_ONLY != 'no' ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
# check that matrix has been installed
|
||||
if [ ! $MATRIX_DOMAIN_NAME ]; then
|
||||
exit 687292
|
||||
|
|
Loading…
Reference in New Issue