Description of problem: pygrub does not properly handle a grub2-style grub.cfg with menuentry statements that contain a quote character outside of the two surrounding the title. For example, it malfunctions w/ the following menuentry (which was created automatically the last time I upgraded the guest's kernel package via yum): menuentry 'Fedora (3.8.8-100.fc17.i686.PAE)' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-fc2d9f6c-3e6c-47a2-b767-2\ 8b45d46fc6f' { The problem is due to the regular expression in GrubConf.py: title_match = re.match('^menuentry ["\'](.*)["\'] (.*){', l) The greedy matching of .* is too aggressive. If I change the .* to non-greedy matching (by adding a ? after it), it works properly again: title_match = re.match('^menuentry ["\'](.*?)["\'] (.*){', l) Version-Release number of selected component (if applicable): xen-runtime-4.1.4-6.fc17.x86_64 More information available upon request. I think this is an important bug because it prevent my virtual machine from starting up and it took a long time to track down the issue. Let's save others the downtime.
xen-4.2.2-4.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/xen-4.2.2-4.fc19
xen-4.2.2-4.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/xen-4.2.2-4.fc18
xen-4.1.5-3.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/xen-4.1.5-3.fc17
Package xen-4.2.2-4.fc19: * should fix your issue, * was pushed to the Fedora 19 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing xen-4.2.2-4.fc19' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-8369/xen-4.2.2-4.fc19 then log in and leave karma (feedback).
xen-4.2.2-5.fc19 has been submitted as an update for Fedora 19. https://admin.fedoraproject.org/updates/xen-4.2.2-5.fc19
xen-4.2.2-5.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/xen-4.2.2-5.fc18
xen-4.1.5-4.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/xen-4.1.5-4.fc17
xen-4.1.5-4.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report.
xen-4.2.2-5.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report.
xen-4.2.2-5.fc19 has been pushed to the Fedora 19 stable repository. If problems still persist, please make note of it in this bug report.