diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-10 23:24:50 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-11 11:57:56 +0100 |
commit | f97144259335102c3d96b232cbb0af4970120d62 (patch) | |
tree | b42d87a39dd1c03df4c535b9d7b630558694fa0a /src/validators/ipv6-range | |
parent | f16525175deb69ae3b9193573550992b4d5fd951 (diff) | |
download | vyos-1x-f97144259335102c3d96b232cbb0af4970120d62.tar.gz vyos-1x-f97144259335102c3d96b232cbb0af4970120d62.zip |
validators: T4144: Add error messages to the majority of IP validators
Diffstat (limited to 'src/validators/ipv6-range')
-rwxr-xr-x | src/validators/ipv6-range | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/validators/ipv6-range b/src/validators/ipv6-range index 033b6461b..a3c401281 100755 --- a/src/validators/ipv6-range +++ b/src/validators/ipv6-range @@ -11,6 +11,7 @@ if __name__ == '__main__': if re.search('([a-f0-9:]+:+)+[a-f0-9]+-([a-f0-9:]+:+)+[a-f0-9]+', ipv6_range): for tmp in ipv6_range.split('-'): if not is_ipv6(tmp): + print(f'Error: {ipv6_range} is not a valid IPv6 range') sys.exit(1) sys.exit(0) |