diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-09-27 14:54:20 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-09-27 14:54:20 +0100 |
commit | f972a40b63f29a9b52069d8aaf5f730540fc0d06 (patch) | |
tree | a13e448dfe7bbcbfe57b95105d6a88c015ca191a /src/validators/ip-host | |
parent | 5af1c8c73e1d37ac5fcc24ed60c3cef27bf4feb2 (diff) | |
download | vyos-1x-f972a40b63f29a9b52069d8aaf5f730540fc0d06.tar.gz vyos-1x-f972a40b63f29a9b52069d8aaf5f730540fc0d06.zip |
validators: T6739: correctly quote ipaddrcheck arguments
to avoid ipaddrcheck syntax errors when values include whitespace
Diffstat (limited to 'src/validators/ip-host')
-rwxr-xr-x | src/validators/ip-host | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/validators/ip-host b/src/validators/ip-host index 77c578fa2..7c5ad2612 100755 --- a/src/validators/ip-host +++ b/src/validators/ip-host @@ -1,10 +1,10 @@ #!/bin/sh -ipaddrcheck --is-any-host $1 +ipaddrcheck --is-any-host "$1" if [ $? -gt 0 ]; then echo "Error: $1 is not a valid IP host" exit 1 fi -exit 0
\ No newline at end of file +exit 0 |