diff options
author | Doug Barton <dougb@FreeBSD.org> | 2005-12-27 23:08:58 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2005-12-27 23:08:58 +0000 |
commit | eeb92ff283681c16ee3f5a496bfd22d91d1659f6 (patch) | |
tree | c106e2862faa56730a97dccf78f7e4018fd5fed2 /etc/rc.d/cleartmp | |
parent | e50b756cb3fcd378ebb05311b09c777336c339e8 (diff) | |
download | src-eeb92ff283681c16ee3f5a496bfd22d91d1659f6.tar.gz src-eeb92ff283681c16ee3f5a496bfd22d91d1659f6.zip |
Make sure that the prestart routine is run with *start, instead of
just 'start'.
Reminded by: keramida
Notes
Notes:
svn path=/head/; revision=153764
Diffstat (limited to 'etc/rc.d/cleartmp')
-rwxr-xr-x | etc/rc.d/cleartmp | 2 |
1 files changed, 1 insertions, 1 deletions
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" |