/usr/share/pacemaker/alerts-2.9.rng is in pacemaker-common 1.1.18-0ubuntu1.
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 40 41 42 43 44 45 46 47 48 49 | <?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<ref name="element-alerts"/>
</start>
<define name="element-alerts">
<optional>
<element name="alerts">
<zeroOrMore>
<element name="alert">
<attribute name="id"><data type="ID"/></attribute>
<optional>
<attribute name="description"><text/></attribute>
</optional>
<!-- path to the script called for alert -->
<attribute name="path"><text/></attribute>
<ref name="element-alert-extra"/>
<zeroOrMore>
<element name="recipient">
<attribute name="id"><data type="ID"/></attribute>
<optional>
<attribute name="description"><text/></attribute>
</optional>
<attribute name="value"><text/></attribute>
<ref name="element-alert-extra"/>
</element>
</zeroOrMore>
</element>
</zeroOrMore>
</element>
</optional>
</define>
<define name="element-alert-extra">
<zeroOrMore>
<choice>
<element name="meta_attributes">
<externalRef href="nvset-2.9.rng"/>
</element>
<element name="instance_attributes">
<externalRef href="nvset-2.9.rng"/>
</element>
</choice>
</zeroOrMore>
</define>
</grammar>
|