2007-09-06 21:00:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ftp-proxy
|
|
|
|
# REQUIRE: DAEMON pf
|
2008-07-16 19:50:29 +00:00
|
|
|
# KEYWORD: shutdown
|
2007-09-06 21:00:48 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="ftpproxy"
|
2012-01-14 02:18:41 +00:00
|
|
|
rcvar="ftpproxy_enable"
|
2007-09-06 21:00:48 +00:00
|
|
|
command="/usr/sbin/ftp-proxy"
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|