Skip to content
Snippets Groups Projects
Commit 35c6a6f9 authored by Bob Mottram's avatar Bob Mottram
Browse files

Matrix not available on onion only installs

parent 1dedb0ce
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment