aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/cdpd/files/cdpd.in
blob: 7dbe67ee8b5e3f96d332ca8995bfb5b154bdb6b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: cdpd
# REQUIRE: NETWORKING
# KEYWORD: shutdown

#
# Add the following lines to /etc/rc.conf to enable cdpd:
#
# cdpd_enable="YES"
#
# You can define flags for cdpd running. See cdpd(8) for details.
#
# Example:
# cdpd_flags="-i em0"
#
# Default flags: -a
#

. /etc/rc.subr

name=cdpd
rcvar=cdpd_enable

command=%%PREFIX%%/sbin/$name

# set defaults

cdpd_enable=${cdpd_enable:-"NO"}
cdpd_flags=${cdpd_flags:-"-a"}

load_rc_config $name
run_rc_command "$1"