Concerning the installer logs, could you tell me where to find them? I will be happy to attach them.
Concerning your change, i think it's nearly as problematic a the original one. Let me explain: It's stated in man that "Any word that beings with a hash sign (#) starts a comment and that word together with the remainder of the line is ignored.". Your patch only consider lines starting with spaces. It should remove, probably using sed, parts of line corresponding to ((^|[[:space:]])#.*$) Also, it's stated also in man that "Any line that starts with white space (space or tab) is treated as though it were a continuation of the previous line". It has no influence here but you might want to check it's taken into account when it comes to reading a full config line. Last but not least, your grep for UUID case sensitive, looking at man page, it seems to me that each entry of mdadm.conf is case insensitive. -- Kernel takes a 6 minutes break and go outside take a cup of coffee https://launchpad.net/bugs/72616 -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
