Skip to content

Commit

Permalink
Allow to use listentry in list elements
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Mar 22, 2018
1 parent 3f60e90 commit a1d0d28
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/autoyast-rnc/software.rnc
Expand Up @@ -21,43 +21,43 @@ software =
patterns =
element patterns {
LIST,
element pattern { text }+
element (pattern | listentry) { text }+
}
kernel = element kernel { text }
post-packages =
element post-packages {
LIST,
element package {text}+
element (package | listentry) {text}+
}
post-patterns =
element post-patterns {
LIST,
element pattern {text}+
element (pattern | listentry) {text}+
}
packages =
element packages {
LIST,
element package {text}+
element (package | listentry) {text}+
}
remove-packages =
element remove-packages {
LIST,
element package {text}+
element (package | listentry) {text}+
}
remove-patterns =
element remove-patterns {
LIST,
element pattern {text}+
element (pattern | listentry) {text}+
}
products =
element products {
LIST,
element product {text}+
element (product | listentry) {text}+
}
remove-products =
element remove-products {
LIST,
element product {text}+
element (product | listentry) {text}+
}
script_params =
element script_params {
Expand Down

0 comments on commit a1d0d28

Please sign in to comment.