summaryrefslogtreecommitdiffstats
path: root/sudoers/posixGroup.rng
diff options
context:
space:
mode:
Diffstat (limited to 'sudoers/posixGroup.rng')
-rw-r--r--sudoers/posixGroup.rng49
1 files changed, 0 insertions, 49 deletions
diff --git a/sudoers/posixGroup.rng b/sudoers/posixGroup.rng
deleted file mode 100644
index e3f4d86..0000000
--- a/sudoers/posixGroup.rng
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<grammar xmlns="http://relaxng.org/ns/structure/1.0"
- datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
- xmlns:a="http://freeipa.org/xml/rng/ns/annotations/1.0">
-
- <a:doc> posixGroup configuration</a:doc>
-
- <start ns="http://freeipa.org/xml/rng/posixGroup/1.0">
- <element name="posixGroup">
- <ref name="options"/>
- <ref name="anyElement"/>
- </element>
-
- </start>
-
- <define name="options">
- <zeroOrMore>
- <choice>
- <attribute name="gids">
- <text/>
- </attribute>
- </choice>
- </zeroOrMore>
- </define>
- <!--
- This allows anything in another namespace.
- The way nsName works requires that this be in each schema (grammar);
- it cannot be included.
- -->
- <define name="anyElement">
- <element>
- <anyName>
- <except>
- <nsName/>
- <nsName ns=""/>
- </except>
- </anyName>
- <zeroOrMore>
- <choice>
- <attribute>
- <anyName/>
- </attribute>
- <text/>
- <ref name="anyElement"/>
- </choice>
- </zeroOrMore>
- </element>
- </define>
-</grammar>