/usr/share/zypp/schema/yum/suseinfo.rng is in libzypp-common 15.3.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns:yum="http://linux.duke.edu/metadata/repo" xmlns="http://relaxng.org/ns/structure/1.0">
<include href="common-inc.rng"/>
<!-- There is a horribly broken suseinfo variant we have to handle -->
<define name="good">
<element name="yum:suseinfo">
<element name="yum:expire">
<ref name="private.positive"/>
</element>
</element>
</define>
<define name="bad">
<element name="suseinfo">
<element name="keywords">
<element name="k">
<empty/>
</element>
</element>
<element name="products">
<element name="id">
<empty/>
</element>
</element>
</element>
</define>
<start>
<choice>
<ref name="good"/>
<ref name="bad"/>
</choice>
</start>
</grammar>
|