Commit 3c971e6e authored by Vincent Pelletier's avatar Vincent Pelletier

Ignore case in storage families.

This value is used as a directory name, so we should follow the common
denominator.
parent 9f4d1398
...@@ -289,7 +289,7 @@ md5sum = c745d794b28cae64feba527f894d7340 ...@@ -289,7 +289,7 @@ md5sum = c745d794b28cae64feba527f894d7340
[template-zeo] [template-zeo]
< = download-base < = download-base
filename = instance-zeo.cfg.in filename = instance-zeo.cfg.in
md5sum = 0462785ed2663c8e1eebd9cf1f7fd1cf md5sum = 9fff70e6958bccbb3d4982cb3611813f
[template-cluster-zope] [template-cluster-zope]
< = download-base < = download-base
......
...@@ -46,7 +46,7 @@ ipv6 = {{ ipv6 }} ...@@ -46,7 +46,7 @@ ipv6 = {{ ipv6 }}
{% for export_id, mountpoint_dict in slapparameter_dict['zodb-dict'].items() -%} {% for export_id, mountpoint_dict in slapparameter_dict['zodb-dict'].items() -%}
{% do storage_dict.setdefault( {% do storage_dict.setdefault(
mountpoint_dict.get('storage-family', 'default'), [] mountpoint_dict.get('storage-family', 'default').lower(), []
).append(( ).append((
export_id, export_id,
mountpoint_dict.get('mount-point', '/'), mountpoint_dict.get('mount-point', '/'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment