From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6830E158099 for ; Sat, 25 Nov 2023 04:53:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB17A2BC019; Sat, 25 Nov 2023 04:53:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F2E92BC019 for ; Sat, 25 Nov 2023 04:53:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9632833EB78 for ; Sat, 25 Nov 2023 04:52:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 245E113B3 for ; Sat, 25 Nov 2023 04:52:58 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1700887967.acf5e9c1d505e14524dcc78a1433872ae273c491.robbat2@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: net/ X-VCS-Repository: proj/netifrc X-VCS-Files: net/iwd.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: acf5e9c1d505e14524dcc78a1433872ae273c491 X-VCS-Branch: master Date: Sat, 25 Nov 2023 04:52:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 64cc7179-2cf3-444f-901a-62c5f94cd94b X-Archives-Hash: 59deb9d7da9e9e9014366f7f1de9e721 commit: acf5e9c1d505e14524dcc78a1433872ae273c491 Author: Violet Purcell inventati org> AuthorDate: Wed Nov 22 23:35:01 2023 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat Nov 25 04:52:47 2023 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=acf5e9c1 iwd: depend on "program /usr/libexec/iwd" instead of "program iwd" In iwd.sh, the iwd executable used is /usr/libexec/iwd, however in the dependency block it depends on just "program iwd." Since iwd is not in PATH, this will fail and cause iwd to not be started when it should be. Correct this to /usr/libexec/iwd. Signed-off-by: Violet Purcell inventati.org> Signed-off-by: Robin H. Johnson gentoo.org> Closes: https://github.com/gentoo/netifrc/pull/49 net/iwd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/iwd.sh b/net/iwd.sh index d8be2d5..75edb8c 100644 --- a/net/iwd.sh +++ b/net/iwd.sh @@ -7,7 +7,7 @@ iwd_depend() before interface provide wireless after iwconfig - program iwd + program /usr/libexec/iwd } _config_vars="$_config_vars iwd"