diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-04-30 15:33:16 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-30 15:33:16 +0300 |
| commit | b817d62feec0096bac3f230185df84d852731aa3 (patch) | |
| tree | 0bba01b60ac7e327566451e00e0a0c09e8efcbc6 | |
| parent | e557954b13839783e64e9262f81619bfb7376da9 (diff) | |
| parent | 5250133e6a075358d7cf1f439c03ef60682c587f (diff) | |
| download | vyatta-cfg-b817d62feec0096bac3f230185df84d852731aa3.tar.gz vyatta-cfg-b817d62feec0096bac3f230185df84d852731aa3.zip | |
Merge pull request #127 from yahyacivelek/current
T8587: add u64 type support
| -rw-r--r-- | etc/bash_completion.d/vyatta-cfg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index bbb6d12..8961af2 100644 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -550,6 +550,12 @@ get_value_format_string () u32:*) echo -n "<${vtype##u32:}>" ;; + u64) + echo -n '<0-18446744073709551615>' + ;; + u64:*) + echo -n "<${vtype##u64:}>" + ;; range) echo -n "<start>-<end>" ;; |
