diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-09-27 13:52:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 13:52:32 +0100 |
commit | faab3c22e66b7eb34485c71edbf92cb00e74be26 (patch) | |
tree | db3c1102d45173b2fa8dfb4698e81193b7dc601f /src/validators/ipv6-host | |
parent | 9acb96422d3c60834440fec5be20267ae8958b7c (diff) | |
download | vyos-1x-faab3c22e66b7eb34485c71edbf92cb00e74be26.tar.gz vyos-1x-faab3c22e66b7eb34485c71edbf92cb00e74be26.zip |
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 |