summaryrefslogtreecommitdiff
path: root/src/validators/ipv6
blob: 4ae130eb5454d1a809a6b4862840cf8cfbdbb0d9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

ipaddrcheck --is-ipv6 $1

if [ $? -gt 0 ]; then
    echo "Error: $1 is not IPv6"
    exit 1
fi

exit 0