diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-01-21 21:40:29 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-01-21 21:40:29 -0500 |
commit | b368e0a1f9715c6360748e9107f47bb5b117f04b (patch) | |
tree | dfc3d91e4fad927c12ddb6fcedf5cacc32a402bb /.openshift/action_hooks/deploy | |
parent | dff2cdc650cd3e0fc706640c01492fce2d9640f7 (diff) | |
parent | dcaef756e7f9531bc4d1353b04ff44736032ffda (diff) | |
download | volse-hubzilla-b368e0a1f9715c6360748e9107f47bb5b117f04b.tar.gz volse-hubzilla-b368e0a1f9715c6360748e9107f47bb5b117f04b.tar.bz2 volse-hubzilla-b368e0a1f9715c6360748e9107f47bb5b117f04b.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla into activitystreams
Diffstat (limited to '.openshift/action_hooks/deploy')
-rwxr-xr-x | .openshift/action_hooks/deploy | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.openshift/action_hooks/deploy b/.openshift/action_hooks/deploy index 1dca4a5e8..06a2440a0 100755 --- a/.openshift/action_hooks/deploy +++ b/.openshift/action_hooks/deploy @@ -179,8 +179,10 @@ echo "chmod done, permissions set to 777 on poller script." # Hubzilla configuration - changes to default settings # to make Hubzilla on OpenShift a more pleasant experience -echo "Changing default configuration to conserve space" +echo "Changing default configuration to conserve space and autocreate a social private channel upon account registration" cd ${OPENSHIFT_REPO_DIR} +util/config system default_permissions_role social_private +util/config system workflow_channel_next channel util/config system expire_delivery_reports 3 util/config system feed_contacts 0 util/config system diaspora_enabled 0 @@ -197,7 +199,7 @@ util/add_addon_repo https://github.com/redmatrix/hubzilla-addons.git HubzillaAdd # Hubzilla themes echo "Try to add or update Hubzilla themes" cd ${OPENSHIFT_REPO_DIR} -util/add_theme_repo https://github.com/DeadSuperHero/redmatrix-themes.git DeadSuperHeroThemes +util/add_theme_repo https://github.com/DeadSuperHero/hubzilla-themes.git DeadSuperHeroThemes # Hubzilla ownMapp echo "Try to add or update Hubzilla ownMapp" @@ -205,6 +207,11 @@ cd ${OPENSHIFT_REPO_DIR} util/add_addon_repo https://gitlab.com/zot/ownmapp.git ownMapp # Hubzilla Chess -echo "Try to add or update Hubzilla chess to Hubzilla on OpenShift" +echo "Try to add or update Hubzilla chess " cd ${OPENSHIFT_REPO_DIR} util/add_addon_repo https://gitlab.com/zot/hubzilla-chess.git Chess + +# Hubzilla Hubsites +echo "Try to add or update Hubzilla Hubsites" +cd ${OPENSHIFT_REPO_DIR} +util/add_addon_repo https://gitlab.com/zot/hubsites.git Hubsites |