Skip to content

Commit

Permalink
Merge f478250 into 7ba9e53
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed May 6, 2020
2 parents 7ba9e53 + f478250 commit 10ee7b7
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions src/autoyast-rnc/configuration_management.rnc
Expand Up @@ -2,23 +2,28 @@ default namespace = "http://www.suse.com/1.0/yast2ns"
namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0"
namespace config = "http://www.suse.com/1.0/configns"

include "common.rnc"

configuration_management = element configuration_management {
element type { text }? &
element master { text }? &
element auth_attempts { INTEGER }? &
element auth_time_out { INTEGER }? &
element enable_services { BOOLEAN }? &
element formulas_roots { LIST, formulas_root* }? &
element states_roots { LIST, states_root* }? &
element pillar_root { text }? &
element pillar_url { text }? &
element keys_url { text }? &
element states_url { text }? &
element modules_url { LIST, modules_url* }? &
element enabled_states { LIST, enabled_state* }?
MAP,
(
element type { STRING }? &
element master { STRING }? &
element auth_attempts { INTEGER }? &
element auth_time_out { INTEGER }? &
element enable_services { BOOLEAN }? &
element formulas_roots { LIST, formulas_root* }? &
element states_roots { LIST, states_root* }? &
element pillar_root { STRING }? &
element pillar_url { STRING }? &
element keys_url { STRING }? &
element states_url { STRING }? &
element modules_url { LIST, modules_url* }? &
element enabled_states { LIST, enabled_state* }?
)
}

formulas_root = element (path | listentry) { text }
states_root = element (path | listentry) { text }
modules_url = element (url | listentry) { text }
enabled_state = element (state | listentry) { text }
formulas_root = element (path | listentry) { STRING }
states_root = element (path | listentry) { STRING }
modules_url = element (url | listentry) { STRING }
enabled_state = element (state | listentry) { STRING }

0 comments on commit 10ee7b7

Please sign in to comment.