diff options
author | 2020-01-24 09:05:03 -0600 | |
---|---|---|
committer | 2020-01-24 09:05:17 -0600 | |
commit | 50a1101f3c952f5086171aaf188ce09033f38f7f (patch) | |
tree | 716a5bda6f6dfe3ab63c82be441f4eb5dbb4132f /net-wireless/iwd/files | |
parent | profiles: Drop duplicate media-sound/glmix mask (diff) | |
download | gentoo-50a1101f3c952f5086171aaf188ce09033f38f7f.tar.gz gentoo-50a1101f3c952f5086171aaf188ce09033f38f7f.tar.bz2 gentoo-50a1101f3c952f5086171aaf188ce09033f38f7f.zip |
net-wireless/iwd: revise init script to fix NM startup
Closes: https://bugs.gentoo.org/669632
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-wireless/iwd/files')
-rw-r--r-- | net-wireless/iwd/files/iwd.initd-r1 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net-wireless/iwd/files/iwd.initd-r1 b/net-wireless/iwd/files/iwd.initd-r1 new file mode 100644 index 000000000000..873d569b6559 --- /dev/null +++ b/net-wireless/iwd/files/iwd.initd-r1 @@ -0,0 +1,14 @@ +#!/sbin/openrc-run +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +pidfile="/run/iwd.pid" +command="/usr/libexec/iwd" +command_background="yes" + +depend() { + need dbus + after bootmisc modules + before dns dhcpcd net + keyword -shutdown +} |