mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 11:39:24 +01:00
23 lines
638 B
Bash
Executable File
23 lines
638 B
Bash
Executable File
#!/bin/bash
|
|
|
|
systemd-run \
|
|
--pty --wait --collect \
|
|
--unit=iwd.service \
|
|
--service-type=dbus \
|
|
--property=BusName=net.connman.iwd \
|
|
--property=NotifyAccess=main \
|
|
--property=LimitNPROC=1 \
|
|
--property=Restart=on-failure \
|
|
--property=PrivateTmp=true \
|
|
--property=NoNewPrivileges=true \
|
|
--property=DevicePolicy=closed \
|
|
--property=DeviceAllow=/dev/rfkill\ rw \
|
|
--property=ProtectHome=yes \
|
|
--property=ProtectSystem=strict \
|
|
--property=ProtectControlGroups=yes \
|
|
--property=ProtectKernelModules=yes \
|
|
--property=ConfigurationDirectory=iwd \
|
|
--property=StateDirectory=iwd \
|
|
--property=StateDirectoryMode=0700 \
|
|
./src/iwd $*
|