11.1Smartin#!/bin/sh
21.1Smartin#
31.3Smartin# $NetBSD: clearcritlocal,v 1.3 2020/09/08 12:52:18 martin Exp $
41.1Smartin#
51.1Smartin
61.1Smartin# REQUIRE: mountcritlocal
71.3Smartin# BEFORE: CRITLOCALMOUNTED
81.1Smartin
91.1Smartin$_rc_subr_loaded . /etc/rc.subr
101.1Smartin
111.1Smartinname="clearcritlocal"
121.1Smartinstart_cmd="clearcritlocal_start"
131.1Smartinstop_cmd=":"
141.1Smartin
151.1Smartinclearcritlocal_start()
161.1Smartin{
171.1Smartin	#	clean up left-over files.
181.1Smartin	#	this could include the cleanup of lock files and /var/run, etc.
191.1Smartin	#
201.1Smartin	rm -f /etc/nologin /var/spool/lock/LCK.*
211.2Smartin	if [ -d /var/run ]; then
221.2Smartin		cd /var/run && rm -rf -- *
231.2Smartin	fi
241.1Smartin	return 0
251.1Smartin}
261.1Smartin
271.1Smartinload_rc_config $name
281.1Smartinrun_rc_command "$1"
29