Pleroma social type

This commit is contained in:
Bob Mottram 2017-11-06 12:15:56 +00:00
parent 0c78e12bf1
commit ecac6e9e7f
1 changed files with 9 additions and 2 deletions

View File

@ -1553,18 +1553,25 @@ function image_preinstall_repos {
git clone $INADYN_REPO $rootdir/repos/inadyn
git clone $TOMB_REPO $rootdir/repos/tomb
if [[ $SOCIALINSTANCE == "pleroma" ]]; then
git clone $PLEROMA_REPO $rootdir/repos/pleroma
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
git clone $PLEROMA_FRONTEND_REPO $rootdir/repos/pleroma-fe
return
fi
if [[ $SOCIALINSTANCE == "gnusocial" ]]; then
git clone $GNUSOCIAL_REPO $rootdir/repos/gnusocial
git clone $GNUSOCIAL_MARKDOWN_REPO $rootdir/repos/gnusocial-markdown
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
git clone $PLEROMA_REPO $rootdir/repos/pleroma
git clone $PLEROMA_FRONTEND_REPO $rootdir/repos/pleroma-fe
return
fi
if [[ $SOCIALINSTANCE == "postactiv" ]]; then
git clone $GNUSOCIAL_MARKDOWN_REPO $rootdir/repos/gnusocial-markdown
#git clone $QVITTER_THEME_REPO $rootdir/repos/qvitter
git clone $PLEROMA_REPO $rootdir/repos/pleroma
git clone $PLEROMA_FRONTEND_REPO $rootdir/repos/pleroma-fe
#git clone $POSTACTIV_REPO $rootdir/repos/postactiv
return
fi