blob: 4ca6a0d54f7a5b89eced79a41a91fe1d2b3aaf89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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:
|