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 | |
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')
-rwxr-xr-x | src/validators/ipv6 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/validators/ipv6 b/src/validators/ipv6 index f18d4a63e..4ae130eb5 100755 --- a/src/validators/ipv6 +++ b/src/validators/ipv6 @@ -1,3 +1,10 @@ #!/bin/sh ipaddrcheck --is-ipv6 $1 + +if [ $? -gt 0 ]; then + echo "Error: $1 is not IPv6" + exit 1 +fi + +exit 0
\ No newline at end of file |