diff --git a/srcpkgs/dhcpcd/files/dhcpcd-eth0/run b/srcpkgs/dhcpcd/files/dhcpcd-eth0/run index 159bdbc2e0..6d424654b1 100755 --- a/srcpkgs/dhcpcd/files/dhcpcd-eth0/run +++ b/srcpkgs/dhcpcd/files/dhcpcd-eth0/run @@ -1,2 +1,3 @@ #!/bin/sh -exec dhcpcd -B eth0 +[ -r conf ] && . ./conf +exec dhcpcd -B eth0 $OPTS diff --git a/srcpkgs/dhcpcd/files/dhcpcd/run b/srcpkgs/dhcpcd/files/dhcpcd/run index 646eb7b043..ee44936f3f 100755 --- a/srcpkgs/dhcpcd/files/dhcpcd/run +++ b/srcpkgs/dhcpcd/files/dhcpcd/run @@ -1,2 +1,3 @@ #!/bin/sh -exec dhcpcd -M -B +[ -r conf ] && . ./conf +exec dhcpcd -B ${OPTS:=-M} diff --git a/srcpkgs/dhcpcd/template b/srcpkgs/dhcpcd/template index 8502412e08..14a3af7e47 100644 --- a/srcpkgs/dhcpcd/template +++ b/srcpkgs/dhcpcd/template @@ -1,7 +1,7 @@ # Template file for 'dhcpcd' pkgname=dhcpcd version=6.7.1 -revision=2 +revision=3 lib32disabled=yes build_options="systemd" build_style=configure