diff options
author | Daniil Baturin <daniil@baturin.org> | 2024-09-25 16:42:08 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2024-09-25 16:42:08 +0100 |
commit | 29e21b1b697924ae5d942229304d827d04957549 (patch) | |
tree | dc04f8687dc64765fe72ffab585ab316ee0a9531 /src/validators/ip-host | |
parent | 2ba5089fb2cca7e3e172ec5b4ce6a79cc521312b (diff) | |
download | vyos-1x-29e21b1b697924ae5d942229304d827d04957549.tar.gz vyos-1x-29e21b1b697924ae5d942229304d827d04957549.zip |
validators: T6739: fix ipaddrcheck argument quoting
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 |