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 {
|
||||
if [ ! "$ONION_ONLY" ]; then
|
||||
ONION_ONLY='no'
|
||||
if [[ "$ONION_ONLY" != 'no' ]]; then
|
||||
return
|
||||
fi
|
||||
|
||||
install_gnusocial_main
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue