diff options
author | davidovski <david@davidovski.xyz> | 2022-05-04 23:52:30 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-04 23:52:30 +0100 |
commit | 739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch) | |
tree | 09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /extra/iwd | |
parent | 4c585ad54388285500fd18a6aaa516894e0f2c16 (diff) |
moved everything to new file formatting
Diffstat (limited to 'extra/iwd')
-rw-r--r-- | extra/iwd/iwd.confd | 24 | ||||
-rw-r--r-- | extra/iwd/iwd.initd | 25 | ||||
-rw-r--r-- | extra/iwd/main.conf | 7 |
3 files changed, 0 insertions, 56 deletions
diff --git a/extra/iwd/iwd.confd b/extra/iwd/iwd.confd deleted file mode 100644 index 9fed1e0..0000000 --- a/extra/iwd/iwd.confd +++ /dev/null @@ -1,24 +0,0 @@ -# Configuration for /etc/init.d/iwd - -# A comma-separated list of patterns specifying the network interfaces that -# iwd is allowed to manage. Defaults to any wireless interfaces. -#allowed_interfaces= - -# A comma-separated list of patterns specifying the network interfaces that -# iwd should ignore. -#ignored_interfaces= - -# Extra options for iwd(8). -#command_args= - -# Log messages are redirected to syslog. Set to empty string to disable. -#error_logger="logger -t iwd -p daemon.info" - -# Number of milliseconds to wait after starting and check that daemon is -# still running. Set to empty string to disable. -# NOTE: If you use iwd together with ConnMan and ConnMan crashes when started -# right after iwd, increase this period to e.g. 200 ms. -#start_wait=50 - -# Uncomment to use process supervisor. -#supervisor="supervise-daemon" diff --git a/extra/iwd/iwd.initd b/extra/iwd/iwd.initd deleted file mode 100644 index df5cfb5..0000000 --- a/extra/iwd/iwd.initd +++ /dev/null @@ -1,25 +0,0 @@ -#!/sbin/openrc-run - -description="iNet wireless daemon" - -: ${error_logger="logger -t iwd -p daemon.info"} -: ${start_wait=50} # milliseconds - -command="/usr/libexec/iwd" -command_background="yes" -command_args=" - ${allowed_interfaces:+"--interfaces \"$allowed_interfaces\""} - ${ignored_interfaces:+"--nointerfaces \"$ignored_interfaces\""} - ${command_args:-} - " -start_stop_daemon_args=" - ${start_wait:+--wait $start_wait} - ${start_stop_daemon_args:-} - " -pidfile="/run/$RC_SVCNAME.pid" - -depend() { - need dbus - before net - keyword -shutdown -} diff --git a/extra/iwd/main.conf b/extra/iwd/main.conf deleted file mode 100644 index 69670ec..0000000 --- a/extra/iwd/main.conf +++ /dev/null @@ -1,7 +0,0 @@ -[General] -EnableNetworkConfiguration=true - -[Network] -EnableIPv6=true -NameResolvingService=resolvconf - |