Disable pleroma on ARM systems
It requires node-sass which won't install on ARM
This commit is contained in:
parent
4286f536d0
commit
315077c693
|
@ -997,9 +997,13 @@ function install_gnusocial {
|
||||||
#install_gnusocial_plugin_sharings_theme
|
#install_gnusocial_plugin_sharings_theme
|
||||||
#install_gnusocial_plugin_nsfw
|
#install_gnusocial_plugin_nsfw
|
||||||
|
|
||||||
function_check install_nodejs
|
# Currently Pleroma won't install on ARM systems
|
||||||
install_nodejs pleroma-gnusocial
|
# because it uses node-sass which doesn't support ARM
|
||||||
install_pleroma "gnusocial" "$GNUSOCIAL_DOMAIN_NAME" "$GNUSOCIAL_BACKGROUND_IMAGE_URL" "$GNUSOCIAL_TITLE"
|
if [[ "$(arch)" != "arm*" ]]; then
|
||||||
|
function_check install_nodejs
|
||||||
|
install_nodejs pleroma-gnusocial
|
||||||
|
install_pleroma "gnusocial" "$GNUSOCIAL_DOMAIN_NAME" "$GNUSOCIAL_BACKGROUND_IMAGE_URL" "$GNUSOCIAL_TITLE"
|
||||||
|
fi
|
||||||
|
|
||||||
# unleash the daemons!
|
# unleash the daemons!
|
||||||
/etc/cron.hourly/gnusocial-daemons
|
/etc/cron.hourly/gnusocial-daemons
|
||||||
|
|
Loading…
Reference in New Issue