blob: 6bbb43f95c96e0a2393e706a7cb2d37f2e58d9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Bridge dhcp daemon"
command="/usr/sbin/dhcpd"
pidfile="/run/syncthing.pid"
command_args="-4 -pf $pidfile -cf /etc/dhcp/bridge_dhcpd.conf bridge"
depend() {
need bridge
use logger
}
|