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