From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 05/29] network: Allow passing custom options to dhcpcd Date: Thu, 01 Dec 2022 17:22:54 +0000 Message-ID: <20221201172318.3166615-5-michael.tremer@ipfire.org> In-Reply-To: <20221201172318.3166615-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2143439403251999295==" List-Id: --===============2143439403251999295== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is useful for debugging. Signed-off-by: Michael Tremer --- src/initscripts/networking/functions.network | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/initscripts/networking/functions.network b/src/initscripts/n= etworking/functions.network index eae4a7b7c..f246919de 100644 --- a/src/initscripts/networking/functions.network +++ b/src/initscripts/networking/functions.network @@ -59,8 +59,9 @@ dhcpcd_is_running() { =20 dhcpcd_start() { # This function will start a dhcpcd on a speciefied device. - local device=3D"$1" + shift + local dhcp_start=3D() =20 boot_mesg -n "Starting dhcpcd on the ${device} interface..." @@ -84,6 +85,9 @@ dhcpcd_start() { dhcp_start+=3D( "--static" "mtu=3D${RED_DHCP_FORCE_MTU}" ) fi =20 + # Append any further command line options + dhcp_start+=3D( $@ ) + # Start dhcpcd. /sbin/dhcpcd "${dhcp_start[@]}" ${device} >/dev/null 2>&1 ret=3D"$?" --=20 2.30.2 --===============2143439403251999295==--