Merge pull request #3985 from oliverguenther/feature/relative_root

Use repoman URL provided by addon-repositories
pull/4055/head
Oliver Günther 9 years ago
commit e74b0552f2
  1. 10
      packaging/conf/configuration.yml

@ -38,18 +38,20 @@ default:
smtp_password: <%= ENV['SMTP_PASSWORD'] %> smtp_password: <%= ENV['SMTP_PASSWORD'] %>
smtp_enable_starttls_auto: <%= ENV.fetch('SMTP_ENABLE_STARTTLS_AUTO') { "false" } %> smtp_enable_starttls_auto: <%= ENV.fetch('SMTP_ENABLE_STARTTLS_AUTO') { "false" } %>
attachments_storage_path: <%= ENV.fetch('ATTACHMENTS_STORAGE_PATH') { "/var/db/_APP_NAME_/files" } %> attachments_storage_path: <%= ENV.fetch('ATTACHMENTS_STORAGE_PATH') { "/var/db/_APP_NAME_/files" } %>
<% if (ENV['GIT_REPOSITORIES'] || ENV['SVN_REPOSITORIES']).present? %> <% git_configured = ENV['GIT_REPOSITORIES'].present? %>
<% svn_configured = ENV['SVN_REPOSITORIES'].present? %>
<% if git_configured || svn_configured %>
scm: scm:
<% if ENV['GIT_REPOSITORIES'].present? %> <% if git_configured %>
git: git:
manages: <%= ENV['GIT_REPOSITORIES'] %> manages: <%= ENV['GIT_REPOSITORIES'] %>
mode: 0770 mode: 0770
group: <%= ENV['SERVER_GROUP'] %> group: <%= ENV['SERVER_GROUP'] %>
<% end %> <% end %>
<% if ENV['SVN_REPOSITORIES'].present? %> <% if svn_configured %>
subversion: subversion:
# SVN uses Apache repository wrapper due to permission errors in multi-user operation # SVN uses Apache repository wrapper due to permission errors in multi-user operation
manages: http://127.0.0.1/repoman_svn manages: <%= ENV['SVN_REPOMAN_URL'] %>
# Do noot verify SSL certificates when SERVER_PROTOCOL is 'https'. # Do noot verify SSL certificates when SERVER_PROTOCOL is 'https'.
# As we currently only support local repoman installations with packager, # As we currently only support local repoman installations with packager,
# this option is set to true by default. # this option is set to true by default.

Loading…
Cancel
Save