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:
parent
4321313922
commit
1eaefd9c36
|
@ -912,8 +912,8 @@ function install_gnusocial_main {
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_gnusocial {
|
function install_gnusocial {
|
||||||
if [ ! "$ONION_ONLY" ]; then
|
if [[ "$ONION_ONLY" != 'no' ]]; then
|
||||||
ONION_ONLY='no'
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_gnusocial_main
|
install_gnusocial_main
|
||||||
|
|
|
@ -927,8 +927,8 @@ function install_postactiv_main {
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_postactiv {
|
function install_postactiv {
|
||||||
if [ ! "$ONION_ONLY" ]; then
|
if [[ "$ONION_ONLY" != 'no' ]]; then
|
||||||
ONION_ONLY='no'
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_postactiv_main
|
install_postactiv_main
|
||||||
|
|
Loading…
Reference in New Issue