diff options
author | Christian Breunig <christian@breunig.cc> | 2024-09-27 15:07:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 15:07:42 +0200 |
commit | 5af1c8c73e1d37ac5fcc24ed60c3cef27bf4feb2 (patch) | |
tree | db3c1102d45173b2fa8dfb4698e81193b7dc601f /src/validators/ipv6-host | |
parent | 9acb96422d3c60834440fec5be20267ae8958b7c (diff) | |
parent | faab3c22e66b7eb34485c71edbf92cb00e74be26 (diff) | |
download | vyos-1x-5af1c8c73e1d37ac5fcc24ed60c3cef27bf4feb2.tar.gz vyos-1x-5af1c8c73e1d37ac5fcc24ed60c3cef27bf4feb2.zip |
Merge pull request #4104 from vyos/revert-4099-T6739-quote-ipaddrcheck-args
validators: T6738: Revert "validators: T6739: fix ipaddrcheck argument quoting"
Diffstat (limited to 'src/validators/ipv6-host')
-rwxr-xr-x | src/validators/ipv6-host | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/validators/ipv6-host b/src/validators/ipv6-host index 1eb4d8e35..7085809a9 100755 --- a/src/validators/ipv6-host +++ b/src/validators/ipv6-host @@ -1,10 +1,10 @@ #!/bin/sh -ipaddrcheck --is-ipv6-host "$1" +ipaddrcheck --is-ipv6-host $1 if [ $? -gt 0 ]; then echo "Error: $1 is not a valid IPv6 host" exit 1 fi -exit 0 +exit 0
\ No newline at end of file |