diff options
Diffstat (limited to 'etc/bash_completion.d/20vyatta-cfg')
-rwxr-xr-x | etc/bash_completion.d/20vyatta-cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/bash_completion.d/20vyatta-cfg b/etc/bash_completion.d/20vyatta-cfg index 741c2c2..b36c3cf 100755 --- a/etc/bash_completion.d/20vyatta-cfg +++ b/etc/bash_completion.d/20vyatta-cfg @@ -845,6 +845,9 @@ get_value_format_string () u32:*) echo -n "<${vtype##u32:}>" ;; + range) + echo -n "<start>-<end>" + ;; ipv4) echo -n '<x.x.x.x>' ;; @@ -860,6 +863,9 @@ get_value_format_string () ipv4range) echo -n '<x.x.x.x>-<x.x.x.x>' ;; + ipv6range) + echo -n '<h:h:h:h:h:h:h:h>-<h:h:h:h:h:h:h:h>' + ;; bool) echo -n '<boolean>' ;; |