summaryrefslogtreecommitdiff
path: root/src/validators/ip-address
blob: 11d6df09ef6b1b27c7c5a2756cf95a67b7d201c9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

ipaddrcheck --is-any-single $1

if [ $? -gt 0 ]; then
    echo "Error: $1 is not a valid IP address"
    exit 1
fi

exit 0