aboutsummaryrefslogtreecommitdiffstats
path: root/tools/check/check_iproute
diff options
context:
space:
mode:
Diffstat (limited to 'tools/check/check_iproute')
-rwxr-xr-xtools/check/check_iproute15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/check/check_iproute b/tools/check/check_iproute
deleted file mode 100755
index 2208944fb5..0000000000
--- a/tools/check/check_iproute
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# CHECK-INSTALL
-
-. ./funcs.sh
-
-PATH=/sbin:$PATH
-
-case $OS in
-OpenBSD|NetBSD|FreeBSD)
- has_or_fail ifconfig ;;
-Linux)
- has_or_fail ip ;;
-*)
- fail "unknown OS" ;;
-esac