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.
13 lines
353 B
Bash
Executable File
13 lines
353 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: FILESYSTEMS
|
|
# REQUIRE: root mountcritlocal cleanvar zfs
|
|
|
|
# This is a dummy dependency, for services which require file systems
|
|
# to be mounted before starting. It also serves as the default early /
|
|
# late divider; after this point, rc.d directories are rescanned to
|
|
# catch scripts from other file systems than /.
|