Disable gnusocial and postactiv on onion only installs

There are database problems possibly related to being primarily on an onion address
This commit is contained in:
Bob Mottram 2018-05-09 13:08:53 +01:00
parent 4321313922
commit 1eaefd9c36
2 changed files with 4 additions and 4 deletions

View File

@ -912,8 +912,8 @@ function install_gnusocial_main {
}
function install_gnusocial {
if [ ! "$ONION_ONLY" ]; then
ONION_ONLY='no'
if [[ "$ONION_ONLY" != 'no' ]]; then
return
fi
install_gnusocial_main

View File

@ -927,8 +927,8 @@ function install_postactiv_main {
}
function install_postactiv {
if [ ! "$ONION_ONLY" ]; then
ONION_ONLY='no'
if [[ "$ONION_ONLY" != 'no' ]]; then
return
fi
install_postactiv_main