2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: cleartmp
|
2004-03-23 23:22:35 +00:00
|
|
|
# REQUIRE: mountcritremote tmp
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: DAEMON
|
2001-06-16 07:16:14 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="cleartmp"
|
2002-06-13 22:14:37 +00:00
|
|
|
rcvar=`set_rcvar clear_tmp`
|
2005-12-20 20:36:48 +00:00
|
|
|
|
2005-12-19 10:57:00 +00:00
|
|
|
start_cmd="${name}_start"
|
2001-06-16 07:16:14 +00:00
|
|
|
|
2005-12-20 20:36:48 +00:00
|
|
|
cleartmp_prestart()
|
2001-06-16 07:16:14 +00:00
|
|
|
{
|
2005-12-20 20:36:48 +00:00
|
|
|
checkyesno clear_tmp_X || return
|
2005-12-19 10:57:00 +00:00
|
|
|
|
2005-12-27 23:22:18 +00:00
|
|
|
local x11_socket_dirs="/tmp/.X11-unix /tmp/.ICE-unix /tmp/.font-unix \
|
|
|
|
/tmp/.XIM-unix"
|
2005-12-19 10:57:00 +00:00
|
|
|
|
|
|
|
# Remove X lock files, since they will prevent you from restarting X.
|
|
|
|
rm -f /tmp/.X[0-9]-lock
|
|
|
|
|
|
|
|
# Create socket directories with correct permissions to avoid
|
|
|
|
# security problem.
|
|
|
|
#
|
|
|
|
rm -fr ${x11_socket_dirs}
|
|
|
|
mkdir -m 1777 ${x11_socket_dirs}
|
2001-06-16 07:16:14 +00:00
|
|
|
}
|
|
|
|
|
2005-12-20 20:36:48 +00:00
|
|
|
cleartmp_start()
|
|
|
|
{
|
|
|
|
echo "Clearing /tmp."
|
|
|
|
#
|
|
|
|
# Prune quickly with one rm, then use find to clean up
|
|
|
|
# /tmp/[lq]* (this is not needed with mfs /tmp, but
|
|
|
|
# doesn't hurt anything).
|
|
|
|
#
|
|
|
|
(cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
|
|
|
|
find -x . ! -name . ! -name lost+found ! -name quota.user \
|
2005-12-27 23:22:18 +00:00
|
|
|
! -name quota.group ! -name .X11-unix ! -name .ICE-unix \
|
|
|
|
! -name .font-unix ! -name .XIM-unix \
|
|
|
|
-exec rm -rf -- {} \; -type d -prune)
|
2005-12-20 20:36:48 +00:00
|
|
|
}
|
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
load_rc_config $name
|
2005-12-20 23:22:47 +00:00
|
|
|
|
|
|
|
# The clear_tmp_X variable should be tested even if clear_tmp_enable is NO
|
|
|
|
case "$1" in
|
2005-12-27 23:08:58 +00:00
|
|
|
*start) cleartmp_prestart ;;
|
2005-12-20 23:22:47 +00:00
|
|
|
esac
|
|
|
|
|
2001-06-16 07:16:14 +00:00
|
|
|
run_rc_command "$1"
|