blob: 610aabf4ce1300b94eede7f8503c118a7fe9a598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/openrc-run
supervisor=supervise-daemon
name="Network Management Daemon"
description="Daemon for managing internet connections"
: ${cfgfile:=/etc/connman/main.conf}
command=/usr/sbin/connmand
command_args="$command_args -c $cfgfile"
command_args_foreground="--nodaemon"
depend() {
need dbus
provide net
}
|