mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
16 lines
318 B
Text
16 lines
318 B
Text
#!/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
|
|
}
|