This file is indexed.

/usr/share/bcfg2/schemas/deps.xsd is in bcfg2-server 1.4.0~pre2+git141-g6d40dace6358-1ubuntu1.

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
33
34
35
36
37
38
39
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
  <xsd:annotation>
    <xsd:documentation>
      dependency schema for bcfg2
      Narayan Desai, Argonne National Laboratory
    </xsd:documentation>
  </xsd:annotation>

  <xsd:complexType name='Dependency'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Package' type='PackageStructure'/>
      <xsd:element name='Service' type='Dependency'/>
      <xsd:element name='Path' type='Dependency'/>
    </xsd:choice>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
  </xsd:complexType>

  <xsd:complexType name='DepsGroupType'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Package' type='PackageStructure'/>
      <xsd:element name='Service' type='Dependency'/>
      <xsd:element name='Path' type='Dependency'/>
      <xsd:element name='Group' type='DepsGroupType'/>
    </xsd:choice>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
  </xsd:complexType>

  <xsd:element name='Dependencies'>
    <xsd:complexType>
      <xsd:choice minOccurs='0' maxOccurs='unbounded'>
        <xsd:element name='Package' type='PackageStructure'/>
        <xsd:element name='Service' type='Dependency'/>
        <xsd:element name='Path' type='Dependency'/>
        <xsd:element name='Group' type='DepsGroupType'/>
      </xsd:choice>
      <xsd:attribute type='xsd:string' name='priority' />
    </xsd:complexType>
  </xsd:element>
</xsd:schema>