summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/cleanvar
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2005-12-19 10:57:00 +0000
committerdougb <dougb@FreeBSD.org>2005-12-19 10:57:00 +0000
commitc9292fd99587d6b4b4b6c2d4d766fe6394410469 (patch)
tree9f4b4470a1178cab80eeca6943edbdc5e7a581c9 /etc/rc.d/cleanvar
parent239343cecc20abf2855c9c85f2ecf7fae8884031 (diff)
downloadFreeBSD-src-c9292fd99587d6b4b4b6c2d4d766fe6394410469.zip
FreeBSD-src-c9292fd99587d6b4b4b6c2d4d766fe6394410469.tar.gz
Clear up problems with /etc/rc.d/{abi|cleanvar|cleartmp} brought
to light by the PR. Specifically, convert these three scripts into good rc.d citizens, making sure that their functionality is preserved, but the rc.d framework rules are not broken. Add support for cleanvar as a regular rc.d script in the default rc.conf, and document this in the man page. Add a descriptive comment to rc.conf that regarding the three emulation/compatibility services provided by abi so users will not be confused by these services not having their own startup scripts. PR: conf/84574 Submitted by: Alexander Botero-Lowry
Diffstat (limited to 'etc/rc.d/cleanvar')
-rw-r--r--etc/rc.d/cleanvar52
1 files changed, 36 insertions, 16 deletions
diff --git a/etc/rc.d/cleanvar b/etc/rc.d/cleanvar
index 8178fef..b075738 100644
--- a/etc/rc.d/cleanvar
+++ b/etc/rc.d/cleanvar
@@ -6,6 +6,18 @@
# PROVIDE: cleanvar
# REQUIRE: mountcritlocal var
+. /etc/rc.subr
+
+name="cleanvar"
+rcvar=`set_rcvar`
+
+start_precmd="${name}_prestart"
+start_cmd="${name}_start"
+stop_cmd=":"
+
+extra_commands="reload"
+reload_cmd="${name}_start"
+
purgedir()
{
local dir file
@@ -34,20 +46,28 @@ purgedir()
fi
}
-# These files must be removed only the first time this script is run
-# on boot.
-#
-[ "$1" != "reload" ] && rm -f /var/run/clean_var /var/spool/lock/clean_var
-
-if [ -d /var/run -a ! -f /var/run/clean_var ]; then
- purgedir /var/run
- # And an initial utmp file
- (cd /var/run && cp /dev/null utmp && chmod 644 utmp;)
- >/var/run/clean_var
-fi
-if [ -d /var/spool/lock -a ! -f /var/spool/lock/clean_var ]; then
- purgedir /var/spool/lock
- >/var/spool/lock/clean_var
-fi
-rm -rf /var/spool/uucp/.Temp/*
+cleanvar_prestart()
+{
+ # These files must be removed only the first time this script is run
+ # on boot.
+ #
+ rm -f /var/run/clean_var /var/spool/lock/clean_var
+}
+
+cleanvar_start ()
+{
+ if [ -d /var/run -a ! -f /var/run/clean_var ]; then
+ purgedir /var/run
+ # And an initial utmp file
+ (cd /var/run && cp /dev/null utmp && chmod 644 utmp;)
+ >/var/run/clean_var
+ fi
+ if [ -d /var/spool/lock -a ! -f /var/spool/lock/clean_var ]; then
+ purgedir /var/spool/lock
+ >/var/spool/lock/clean_var
+ fi
+ rm -rf /var/spool/uucp/.Temp/*
+}
+load_rc_config $name
+run_rc_command "$1"
OpenPOWER on IntegriCloud