summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xetc/bash_completion.d/20vyatta-cfg6
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>'
;;