Skip to content
Snippets Groups Projects
Commit b669d6be authored by jurgenhaas's avatar jurgenhaas
Browse files

customer/schloesslekeller#3 Handle Drupal 9 as sub-status of d8

parent d59beca8
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,13 @@ $settings['trusted_host_patterns'] = array(
// As soon as Drupal 8.8+ will be used everywhere, the following line can be removed.
$config['system.file']['path']['temporary'] = {% if drupal.jail is defined %}is_dir('{{ jailroot }}/{{ drupal.jail.name }}/tmp') ? '{{ jailroot }}/{{ drupal.jail.name }}/tmp' : '/tmp'{% else %}'/tmp'{% endif %};
{% if drupal.isversion9|default(no) %}
$settings['config_sync_directory'] = 'sites/{{ item.shortname|default("default") }}/files/{{ item.config|default("config") }}/sync';
{% else %}
{% for key in drupal_config_directories %}
$config_directories['{{ key }}'] = 'sites/{{ item.shortname|default("default") }}/files/{{ item.config|default("config") }}/{{ drupal_config_directories[key] }}';
{% endfor %}
{% endif %}
{% for line in item.extra_settings|default([]) %}
{{ line }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment