diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-11-13 21:06:49 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-11-13 21:06:49 +0100 |
commit | 6ab6a0a1857e9ae487642f5aad0c948e12d167c5 (patch) | |
tree | 55e2d191f1be4dd10ad3452ede9389d7519b8cf7 | |
parent | 4a5db8a416fc6126a504bc3a9f1b5f6de84e119d (diff) | |
download | vyatta-cfg-system-6ab6a0a1857e9ae487642f5aad0c948e12d167c5.tar.gz vyatta-cfg-system-6ab6a0a1857e9ae487642f5aad0c948e12d167c5.zip |
T1006: remove the check-ipv4-ipv6.pl script that is not used anywhere.
-rwxr-xr-x | scripts/check-ipv4-ipv6.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/check-ipv4-ipv6.pl b/scripts/check-ipv4-ipv6.pl deleted file mode 100755 index 0816ebee..00000000 --- a/scripts/check-ipv4-ipv6.pl +++ /dev/null @@ -1,12 +0,0 @@ -#! /usr/bin/perl - -# Trivial script to check for valid IPv4 or IPv6 address - -use strict; -use NetAddr::IP; - -foreach my $addr (@ARGV) { - die "$addr: not valid a valid IPv4 or IPv6 address\n" - unless new NetAddr::IP $addr; -} - |