blob: 601dbecfd517ec29a05e00f6c7d95e20a5180f4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
# PROVIDE: pen
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable pen:
#
# pen_enable="YES"
# pen_flags="<set as needed>"
. /etc/rc.subr
name=pen
rcvar=pen_enable
command=%%PREFIX%%/bin/pen
pen_enable=${pen_enable:-"NO"}
load_rc_config $name
run_rc_command "$1"
|