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.
23 lines
859 B
23 lines
859 B
From fb2d643a385f1b02fbac6c2782b0026029c6bde7 Mon Sep 17 00:00:00 2001 |
|
From: Harald Hoyer <harald@redhat.com> |
|
Date: Tue, 18 Aug 2015 11:53:31 +0200 |
|
Subject: [PATCH] network/ifup.sh: let dhcp client run in the background |
|
|
|
we need to renew the lease |
|
--- |
|
modules.d/40network/ifup.sh | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/modules.d/40network/ifup.sh b/modules.d/40network/ifup.sh |
|
index 2f51e6d5..ab87578e 100755 |
|
--- a/modules.d/40network/ifup.sh |
|
+++ b/modules.d/40network/ifup.sh |
|
@@ -114,7 +114,7 @@ do_dhcp() { |
|
info "Starting dhcp for interface $netif" |
|
dhclient "$@" \ |
|
${_timeout:+-timeout $_timeout} \ |
|
- -1 -q \ |
|
+ -q \ |
|
-cf /etc/dhclient.conf \ |
|
-pf /tmp/dhclient.$netif.pid \ |
|
-lf /tmp/dhclient.$netif.lease \
|
|
|