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

ipaddrcheck --is-ipv6-single $1

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

exit 0