|
@@ -771,11 +771,21 @@ function install_postactiv {
|
771
|
771
|
fi
|
772
|
772
|
|
773
|
773
|
install_postactiv_main
|
|
774
|
+ install_qvitter "$POSTACTIV_DOMAIN_NAME" "postactiv"
|
774
|
775
|
|
775
|
|
- #install_qvitter "$POSTACTIV_DOMAIN_NAME" "postactiv"
|
776
|
776
|
#function_check install_nodejs
|
777
|
777
|
#install_nodejs pleroma-postactiv
|
778
|
|
- #install_pleroma "postactiv" "$POSTACTIV_DOMAIN_NAME" "$POSTACTIV_BACKGROUND_IMAGE_URL" "$POSTACTIV_TITLE"
|
|
778
|
+
|
|
779
|
+ # Currently Pleroma won't install on ARM systems
|
|
780
|
+ # because it uses node-sass which doesn't support ARM
|
|
781
|
+ if [[ "$(arch)" == "arm"* ]]; then
|
|
782
|
+ echo -m $'WARNING: Pleroma currently does not support ARM '
|
|
783
|
+ echo $'architecture, so it will not be installed'
|
|
784
|
+ else
|
|
785
|
+ function_check install_nodejs
|
|
786
|
+ install_nodejs pleroma-gnusocial
|
|
787
|
+ install_pleroma "postactiv" "$POSTACTIV_DOMAIN_NAME" "$POSTACTIV_BACKGROUND_IMAGE_URL" "$POSTACTIV_TITLE"
|
|
788
|
+ fi
|
779
|
789
|
|
780
|
790
|
expire_postactiv_posts
|
781
|
791
|
|