Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
typo in libvirt-tck help page
Version-Release number of selected component (if applicable):
perl-Sys-Virt-1.0.3-1.el7.x86_64
How reproducible:
100%
Steps:
1:
# man /usr/share/man/man3/Sys::Virt:omain.3pm.gz
.......
$dom->set_metadata($type, $val, $key, $uri, $flags=0)
Sets the metadata element of type $type to hold the value $val. If $type is "Sys::Virt:omain::METADATA_ELEMENT" then the $key and $uri
elements specify an XML namespace to use, otherwise they should both be "nudef". The optional $flags parameter defaults to zero.
Actual results:
"nudef"
Expected results:
shoud be "undef"
Additional info:
Both are now fixed upstream:
commit 029890f0aa0ac423bf202df1be96bafc2f72df25
Author: Zhe Peng <zpeng>
AuthorDate: 2013-05-21 10:46:03 +0800
Commit: Osier Yang <jyang>
CommitDate: 2013-05-21 15:36:27 +0800
Fix typo in domain help page
The help page of $dom->set_metadata has a typo,this patch fixes it.
git describe: v1.0.5-1-g029890f
commit add5ea0ee36b5f207f7f960f55560ade3e9d7630
Author: Ján Tomko <jtomko>
AuthorDate: 2013-07-03 09:27:13 +0200
Commit: Ján Tomko <jtomko>
CommitDate: 2013-07-03 09:27:13 +0200
Add missing bracket to Sys::Virt::Domain man page
https://bugzilla.redhat.com/show_bug.cgi?id=954254
git describe: v1.0.5-2-gadd5ea0
Verify Pass on perl-Sys-Virt-1.1.1-2.el7
$dom->set_metadata($type, $val, $key, $uri, $flags=0)
Sets the metadata element of type $type to hold the value $val. If $type is "Sys::Virt::Domain::METADATA_ELEMENT" then the $key and $uri
elements specify an XML namespace to use, otherwise they should both be "undef". The optional $flags parameter defaults to zero.
This request was resolved in Red Hat Enterprise Linux 7.0.
Contact your manager or support representative in case you have further questions about the request.
Description of problem: typo in libvirt-tck help page Version-Release number of selected component (if applicable): perl-Sys-Virt-1.0.3-1.el7.x86_64 How reproducible: 100% Steps: 1: # man /usr/share/man/man3/Sys::Virt:omain.3pm.gz ....... $dom->set_metadata($type, $val, $key, $uri, $flags=0) Sets the metadata element of type $type to hold the value $val. If $type is "Sys::Virt:omain::METADATA_ELEMENT" then the $key and $uri elements specify an XML namespace to use, otherwise they should both be "nudef". The optional $flags parameter defaults to zero. Actual results: "nudef" Expected results: shoud be "undef" Additional info: