diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-04-22 13:34:17 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-04-22 13:34:17 -0700 |
commit | b72ddf64bc5d89487ffe9672f0ba89c5b90ac2e5 (patch) | |
tree | 23b4f9af8dfd915c8951729fd3bb0dbf9e658fb7 /src/cli_val.h | |
parent | d29097a8800e16899873bea1b70b85b0bd3586ab (diff) | |
download | vyatta-cfg-b72ddf64bc5d89487ffe9672f0ba89c5b90ac2e5.tar.gz vyatta-cfg-b72ddf64bc5d89487ffe9672f0ba89c5b90ac2e5.zip |
support for PARENT reference in priority statements. Example:
priority: PARENT
Means that this priority group will adopt the priority value of the parent. And the behavior on deletion of this priority root node will be deleted before the parent. On
all other operations this node will be scheduled after the parent.
This should fix problems in scheduling creation/deletion orders for priority groups so long as they are located within the same hierarchy.
priority.pl has been updated as well.
Diffstat (limited to 'src/cli_val.h')
-rw-r--r-- | src/cli_val.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli_val.h b/src/cli_val.h index 408cc50..e6182e7 100644 --- a/src/cli_val.h +++ b/src/cli_val.h @@ -107,6 +107,7 @@ typedef struct { char *def_node_help; char *def_default; unsigned int def_priority; + char *def_priority_ext; unsigned int def_tag; unsigned int def_multi; boolean tag; |