mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
17 lines
378 B
Text
17 lines
378 B
Text
#!/sbin/openrc-run
|
|
# Copyright (c) 2008 Saleem Abdulrasool <compnerd@compnerd.org>
|
|
# Distributed under the terms of the GNU General Purpose License v2
|
|
# $Header: $
|
|
|
|
supervisor=supervise-daemon
|
|
command=/usr/sbin/NetworkManager
|
|
command_args_foreground="-n"
|
|
|
|
description="Network Manager Daemon"
|
|
|
|
depend() {
|
|
need dbus
|
|
provide net
|
|
}
|
|
|
|
# vim: set ft=gentoo-init-d ts=3 sw=3 et:
|