NetBSD/etc/rc.d/cleartmp

38 lines
786 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: cleartmp,v 1.8 2007/02/04 08:19:26 elad Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: cleartmp
# REQUIRE: mountall
# BEFORE: DAEMON
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
name="cleartmp"
rcvar="clear_tmp"
2000-03-10 14:53:23 +03:00
start_cmd="cleartmp_start"
stop_cmd=":"
cleartmp_start()
{
echo "Clearing temporary files."
2000-03-10 14:53:23 +03:00
#
# Prune quickly with one rm, then use find to clean up
# /tmp/[lq]* (this is not needed with mfs /tmp, but
2000-03-10 14:53:23 +03:00
# doesn't hurt anything).
#
if [ \( X"${per_user_tmp}" = X"YES" \) -a \( -d ${per_user_tmp_dir} \) ]; then
tmp_dir=${per_user_tmp_dir}
else
tmp_dir="/tmp"
fi
(cd ${tmp_dir} && rm -rf [a-km-pr-zA-Z]* &&
2000-03-10 14:53:23 +03:00
find -x . ! -name . ! -name lost+found ! -name quota.user \
! -name quota.group -exec rm -rf -- {} \; -type d -prune)
2000-03-10 14:53:23 +03:00
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"