You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
630 B
21 lines
630 B
6 years ago
|
From 0852c38b7a2b893e4f9e5894ba09eebc649f047f Mon Sep 17 00:00:00 2001
|
||
|
From: Harald Hoyer <harald@redhat.com>
|
||
|
Date: Tue, 1 Sep 2015 17:21:53 +0200
|
||
|
Subject: [PATCH] cms/cmsifup.sh: do not use ifup -m
|
||
|
|
||
|
we don't want to bring the interface up several times
|
||
|
---
|
||
|
modules.d/80cms/cmsifup.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/modules.d/80cms/cmsifup.sh b/modules.d/80cms/cmsifup.sh
|
||
|
index b3616504..9ffe971a 100755
|
||
|
--- a/modules.d/80cms/cmsifup.sh
|
||
|
+++ b/modules.d/80cms/cmsifup.sh
|
||
|
@@ -37,4 +37,4 @@ fi
|
||
|
IFACES="$IFACES $DEVICE"
|
||
|
echo "$IFACES" >> /tmp/net.ifaces
|
||
|
|
||
|
-ifup $DEVICE -m
|
||
|
+exec ifup "$DEVICE"
|