]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/var
This commit was generated by cvs2svn to compensate for changes in r136136,
[FreeBSD/FreeBSD.git] / etc / rc.d / var
1 #!/bin/sh
2 #
3 # Copyright (c) 1999  Matt Dillon
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28 #
29
30 # PROVIDE: var
31 # REQUIRE: mountcritlocal
32 # KEYWORD: FreeBSD
33
34 . /etc/rc.subr
35
36 name="var"
37
38 load_rc_config $name
39
40 _populate_var()
41 {
42         /usr/sbin/mtree -deU -f /etc/mtree/BSD.var.dist -p /var > /dev/null
43         case ${sendmail_enable} in
44         [Nn][Oo][Nn][Ee])
45                 ;;
46         *)
47                 /usr/sbin/mtree -deU -f /etc/mtree/BSD.sendmail.dist -p / > /dev/null
48                 ;;
49         esac
50
51         /usr/sbin/newsyslog -CC
52
53         /usr/bin/touch /var/log/lastlog
54
55         # XXX: should create spool dirs for lpd
56 }
57
58 # If we do not have a writable /var, create a memory filesystem for /var
59 # unless told otherwise by rc.conf.  We don't have /usr yet so use mkdir
60 # instead of touch to test.  We want mount to record its mounts so we
61 # have to make sure /var/db exists before doing the mount -a.
62 #
63 case "${varmfs}" in
64 [Yy][Ee][Ss])
65         mount_md ${varsize} /var
66         ;;
67 [Nn][Oo])
68         ;;
69 *)
70         if (/bin/mkdir -p /var/.diskless 2> /dev/null); then
71                 rmdir /var/.diskless
72         else
73                 mount_md ${varsize} /var
74         fi
75 esac
76
77
78 # If we have an empty looking /var, populate it, but only if we have
79 # /usr available.  Hopefully, we'll eventually find a workaround, but
80 # in realistic diskless setups, we're probably ok.
81 case "${populate_var}" in
82 [Yy][Ee][Ss])
83         _populate_var
84         ;;
85 [Nn][Oo])
86         ;;
87 *)
88         if [ -d /var/run -a -d /var/db -a -d /var/empty ] ; then
89                 true
90         elif [ ! -x /usr/sbin/mtree -o ! -x /usr/sbin/newsyslog -o \
91             ! -x /usr/bin/touch ] ; then
92                 false
93         else
94                 _populate_var
95         fi
96         ;;
97 esac