a33ba74399
This patch removes the drush make site building function from groups-dev instance, and now directly fetch release tarballs from http://tarballs.openstack.org/groups repository. With an advanced multi-slot deployment architecture it prevents the typical Drupal WSOD issues that randomly caused site malfunction when a request arrived during installation. It also simplifies the deployment steps using the standard drush aliases and drush-dsd extension and supports local configuration variables in local_settings.php file. Change-Id: I73976a60e080d15b6f513db79fee46bcf468e302
14 lines
262 B
Plaintext
14 lines
262 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Drupal configuration overrides
|
|
*
|
|
*/
|
|
|
|
<% if @conf_cron_key %>
|
|
$conf['cron_key'] = '<%= @conf_cron_key %>';
|
|
<% end %>
|
|
<% if @conf_markdown_directory %>
|
|
$conf['groups_feeds_markdown_directory'] = '<%= @conf_markdown_directory %>';
|
|
<% end %> |