8801556beb
systems are fully "ready to go". 'FILESYSTEMS' states: "This is a dummy dependency, for services which require file systems to be mounted before starting." However, we have 'var' which is was run after 'FILESYSTEMS' and can mount /var if it already isn't mounted. Furthermore, several scripts cannot use /var until 'cleanvar' has done its thing. Thus "FILESYSTEMS" hasn't really meant all critical file systems are fully usable.
26 lines
330 B
Bash
Executable File
26 lines
330 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ftpd
|
|
# REQUIRE: LOGIN FILESYSTEMS
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ftpd"
|
|
rcvar="ftpd_enable"
|
|
command="/usr/libexec/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
start_precmd=ftpd_prestart
|
|
|
|
ftpd_prestart()
|
|
{
|
|
rc_flags="-D ${rc_flags}"
|
|
return 0
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|