summaryrefslogtreecommitdiff
path: root/init.d/loopback.in
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/loopback.in')
-rw-r--r--init.d/loopback.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/loopback.in b/init.d/loopback.in
index 0139b56..6267ec4 100644
--- a/init.d/loopback.in
+++ b/init.d/loopback.in
@@ -13,7 +13,7 @@ start()
{
if [ "$RC_UNAME" = Linux ]; then
ebegin "Bringing up network interface lo"
- if type ip > /dev/null 2>&1; then
+ if command -v ip > /dev/null 2>&1; then
ip addr add 127.0.0.1/8 dev lo brd + scope host
ip route add 127.0.0.0/8 dev lo scope host
ip link set lo up