2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2004-08-13 22:08:03 +04:00
|
|
|
# $NetBSD: mountcritlocal,v 1.8 2004/08/13 18:08:03 mycroft Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: mountcritlocal
|
|
|
|
# REQUIRE: root
|
|
|
|
|
2004-08-13 22:08:03 +04:00
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
name="mountcritlocal"
|
2000-07-26 04:11:48 +04:00
|
|
|
start_cmd="mountcritlocal_start"
|
2000-03-10 14:53:23 +03:00
|
|
|
stop_cmd=":"
|
|
|
|
|
2000-07-26 04:11:48 +04:00
|
|
|
mountcritlocal_start()
|
|
|
|
{
|
2001-02-28 20:19:42 +03:00
|
|
|
# Mount critical filesystems that are `local'
|
2002-03-27 11:53:39 +03:00
|
|
|
# (as specified in $critical_filesystems_local)
|
2001-02-28 20:19:42 +03:00
|
|
|
# This usually includes /var.
|
2000-07-26 04:11:48 +04:00
|
|
|
#
|
|
|
|
mount_critical_filesystems local
|
|
|
|
|
|
|
|
# clean up left-over files.
|
|
|
|
# this could include the cleanup of lock files and /var/run, etc.
|
|
|
|
#
|
|
|
|
rm -f /etc/nologin /var/spool/lock/LCK.* /var/spool/uucp/STST/*
|
2000-07-27 17:58:49 +04:00
|
|
|
(cd /var/run && rm -rf -- *)
|
2000-07-26 04:11:48 +04:00
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|