diff options
author | redmatrix <git@macgirvin.com> | 2016-01-18 19:08:26 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-01-18 19:08:26 -0800 |
commit | 1e523414f8a7949f4f685a8cd960c2352ac94e0d (patch) | |
tree | d0132bddc92a964c6e92a18163da7b7eab39af4b /.openshift | |
parent | 190f78fb5a7310c794f04c2e515a415b5e4c6d38 (diff) | |
parent | 64acf3acbcf7d0d0eac1299d23ad180af7877a7d (diff) | |
download | volse-hubzilla-1e523414f8a7949f4f685a8cd960c2352ac94e0d.tar.gz volse-hubzilla-1e523414f8a7949f4f685a8cd960c2352ac94e0d.tar.bz2 volse-hubzilla-1e523414f8a7949f4f685a8cd960c2352ac94e0d.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to '.openshift')
-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 |