2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2011-01-14 01:30:09 +03:00
|
|
|
# $NetBSD: mountcritlocal,v 1.13 2011/01/13 22:30:09 haad Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: mountcritlocal
|
2009-04-21 20:08:57 +04:00
|
|
|
# REQUIRE: fsck
|
2000-03-10 14:53:23 +03:00
|
|
|
|
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.
|
|
|
|
#
|
2006-11-12 04:20:00 +03:00
|
|
|
rm -f /etc/nologin /var/spool/lock/LCK.*
|
2000-07-27 17:58:49 +04:00
|
|
|
(cd /var/run && rm -rf -- *)
|
2011-01-05 17:57:27 +03:00
|
|
|
# create LVM locking directory, it needs to be owned by operator
|
|
|
|
# group and has parmissions to allow lock file creation.
|
|
|
|
#
|
|
|
|
mkdir /var/run/lvm
|
2011-01-14 01:30:09 +03:00
|
|
|
chown root:operator /var/run/lvm
|
2011-01-05 17:57:27 +03:00
|
|
|
chmod 770 /var/run/lvm
|
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"
|