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_nsfw
|
||||
|
||||
function_check install_nodejs
|
||||
install_nodejs pleroma-gnusocial
|
||||
install_pleroma "gnusocial" "$GNUSOCIAL_DOMAIN_NAME" "$GNUSOCIAL_BACKGROUND_IMAGE_URL" "$GNUSOCIAL_TITLE"
|
||||
# Currently Pleroma won't install on ARM systems
|
||||
# because it uses node-sass which doesn't support ARM
|
||||
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!
|
||||
/etc/cron.hourly/gnusocial-daemons
|
||||
|
|
Loading…
Reference in New Issue