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