diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-02-08 16:11:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 16:11:50 +0000 |
commit | 632c9d9f3d52e2c9571018553b5b45d9a3fe6ffd (patch) | |
tree | 0034b94a17e45192995749ed73b08054d2187b8d /schema/op-mode-definition.rnc | |
parent | 98c6434e7433e6a0aa1034b39c9130d390bbe591 (diff) | |
parent | b76e4c808c954dcf498b510aaa9c8d6c91850991 (diff) | |
download | vyos-1x-632c9d9f3d52e2c9571018553b5b45d9a3fe6ffd.tar.gz vyos-1x-632c9d9f3d52e2c9571018553b5b45d9a3fe6ffd.zip |
Merge pull request #2507 from erkin/image-tools
op-mode: T4038: Python rewrite of image tools
Diffstat (limited to 'schema/op-mode-definition.rnc')
-rw-r--r-- | schema/op-mode-definition.rnc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/schema/op-mode-definition.rnc b/schema/op-mode-definition.rnc index cbe51e6dc..ad41700b9 100644 --- a/schema/op-mode-definition.rnc +++ b/schema/op-mode-definition.rnc @@ -95,13 +95,15 @@ command = element command # completionHelp tags contain information about allowed values of a node that is used for generating # tab completion in the CLI frontend and drop-down lists in GUI frontends -# It is only meaninful for leaf nodes +# It is only meaningful for leaf nodes # Allowed values can be given as a fixed list of values (e.g. <list>foo bar baz</list>), # as a configuration path (e.g. <path>interfaces ethernet</path>), -# or as a path to a script file that generates the list (e.g. <script>/usr/lib/foo/list-things</script> +# as a path to a script file that generates the list (e.g. <script>/usr/lib/foo/list-things</script>, +# or to enable built-in image path completion (<imagePath/>). completionHelp = element completionHelp { (element list { text })* & (element path { text })* & - (element script { text })* + (element script { text })* & + (element imagePath { empty })? } |