blob: 44a5f078ebd879008b8ea4f2e460f74302a6cba0 (
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
25
26
27
|
#!/bin/sh
# PROVIDE: jftpgw
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable jftpgw:
#
# jftpgw_enable="YES"
#
. /etc/rc.subr
name=jftpgw
rcvar=`set_rcvar`
command=%%PREFIX%%/sbin/jftpgw
jftpgw_config=${jftpgw_config:-"%%PREFIX%%/etc/jftpgw.conf"}
required_files=${jftpgw_config}
jftpgw_enable=${jftpgw_enable:-"NO"}
command_args="-f ${jftpgw_config}"
load_rc_config $name
run_rc_command "$1"
|