From 761b74bc75712cd836af1b315c32a825e0a0d329 Mon Sep 17 00:00:00 2001 From: dougb Date: Tue, 27 Dec 2005 23:08:58 +0000 Subject: [PATCH] Make sure that the prestart routine is run with *start, instead of just 'start'. Reminded by: keramida --- etc/rc.d/cleartmp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.d/cleartmp b/etc/rc.d/cleartmp index 0df70a27cc49..676ce953908c 100755 --- a/etc/rc.d/cleartmp +++ b/etc/rc.d/cleartmp @@ -47,7 +47,7 @@ load_rc_config $name # The clear_tmp_X variable should be tested even if clear_tmp_enable is NO case "$1" in -start) cleartmp_prestart ;; +*start) cleartmp_prestart ;; esac run_rc_command "$1"