summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcp/dhclient
diff options
context:
space:
mode:
authorJouke Witteveen <j.witteveen@gmail.com>2014-06-17 13:20:22 +0200
committerJouke Witteveen <j.witteveen@gmail.com>2014-06-17 13:20:22 +0200
commit92e906ee327fa32ab30bffa3a2769c437456d257 (patch)
treec3c5d644afffe108990e519ceca95a67287a44ce /src/lib/dhcp/dhclient
parent64e6da091adcbd7759ef36ae4a58887e5eb00d3f (diff)
downloadnetctl-92e906ee327fa32ab30bffa3a2769c437456d257.tar.gz
netctl-92e906ee327fa32ab30bffa3a2769c437456d257.tar.xz
Add support for IPv6 with dhcpcd (FS#39531)
This requires dhcpcd 6.4.0 or newer.
Diffstat (limited to 'src/lib/dhcp/dhclient')
-rw-r--r--src/lib/dhcp/dhclient4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dhcp/dhclient b/src/lib/dhcp/dhclient
index 0970aee..87e9a92 100644
--- a/src/lib/dhcp/dhclient
+++ b/src/lib/dhcp/dhclient
@@ -1,7 +1,7 @@
type dhclient &> /dev/null || return
dhclient_start() {
- local options pidfile="/run/dhclient$1-$Interface.pid"
+ local options pidfile="/run/dhclient-$Interface-$1.pid"
case $1 in
4) options=$DhclientOptions;;
6) options=$DhclientOptions6;;
@@ -15,7 +15,7 @@ dhclient_start() {
}
dhclient_stop() {
- local stop="-x" pidfile="/run/dhclient$1-$Interface.pid"
+ local stop="-x" pidfile="/run/dhclient-$Interface-$1.pid"
if [[ -f $pidfile ]]; then
is_yes "${DHCPReleaseOnStop:-no}" && stop="-r"
do_debug dhclient -$1 -q $stop "$Interface" -pf "$pidfile" > /dev/null