blob: cad9612508a20cb93f73e9cf575b84b5c645a4f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
supervisor=supervise-daemon
name=wpa_actiond
description="Daemon that connects to WPA Supplicant an dhandles events"
command=/usr/sbin/wpa_actiond
command_args="-i $WPA_ACTIOND_INTERFACE -a $WPA_ACTIOND_SCRIPT $WPA_ACTIOND_OPTS"
command_args_foreground="-n"
depend(){
need net wpa_supplicant
}
|