search for: entries1

Displaying 1 result from an estimated 1 matches for "entries1".

Did you mean: entries
2018 Sep 11
1
[PATCH] daemon: consider /etc/mdadm/mdadm.conf while inspecting mountpoints.
...map_md_devices aug else StringMap.empty in @@ -224,11 +225,13 @@ and map_md_devices aug = if StringMap.is_empty uuid_map then StringMap.empty else ( (* Get all arrays listed in mdadm.conf. *) - let entries = aug_matches_noerrors aug "/files/etc/mdadm.conf/array" in + let entries1 = aug_matches_noerrors aug "/files/etc/mdadm.conf/array" in + let entries2 = aug_matches_noerrors aug "/files/etc/mdadm/mdadm.conf/array" in + let entries = List.append entries1 entries2 in (* Log a debug entry if we've got md devices but nothing in mdadm.conf....