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
[template-zeo]
< = download-base
filename = instance-zeo.cfg.in
md5sum = 0462785ed2663c8e1eebd9cf1f7fd1cf
md5sum = 9fff70e6958bccbb3d4982cb3611813f
[template-cluster-zope]
< = download-base
......
......@@ -46,7 +46,7 @@ ipv6 = {{ ipv6 }}
{% for export_id, mountpoint_dict in slapparameter_dict['zodb-dict'].items() -%}
{% do storage_dict.setdefault(
mountpoint_dict.get('storage-family', 'default'), []
mountpoint_dict.get('storage-family', 'default').lower(), []
).append((
export_id,
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