commit: acf5e9c1d505e14524dcc78a1433872ae273c491 Author: Violet Purcell <vimproved <AT> inventati <DOT> org> AuthorDate: Wed Nov 22 23:35:01 2023 +0000 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> 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 <vimproved <AT> inventati.org> Signed-off-by: Robin H. Johnson <robbat2 <AT> 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"
