]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - etc/rc.d/var
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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: FILESYSTEMS
32
33 . /etc/rc.subr
34
35 name="var"
36 stop_cmd=':'
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
52 # If we do not have a writable /var, create a memory filesystem for /var
53 # unless told otherwise by rc.conf.  We don't have /usr yet so use mkdir
54 # instead of touch to test.  We want mount to record its mounts so we
55 # have to make sure /var/db exists before doing the mount -a.
56 #
57 case "${varmfs}" in
58 [Yy][Ee][Ss])
59         mount_md ${varsize} /var "${varmfs_flags}"
60         ;;
61 [Nn][Oo])
62         ;;
63 *)
64         if /bin/mkdir -p /var/.diskless 2> /dev/null; then
65                 rmdir /var/.diskless
66         else
67                 mount_md ${varsize} /var "${varmfs_flags}"
68         fi
69 esac
70
71
72 # If we have an empty looking /var, populate it, but only if we have
73 # /usr available.  Hopefully, we'll eventually find a workaround, but
74 # in realistic diskless setups, we're probably ok.
75 case "${populate_var}" in
76 [Yy][Ee][Ss])
77         populate_var
78         ;;
79 [Nn][Oo])
80         exit 0
81         ;;
82 *)
83         if [ -d /var/run -a -d /var/db -a -d /var/empty ] ; then
84                 true
85         elif [ -x /usr/sbin/mtree ] ; then
86                 populate_var
87         else
88                 # We need mtree to populate /var so try mounting /usr.
89                 # If this does not work, we can not boot so it is OK to
90                 # try to mount out of order.
91                 mount /usr
92                 if [ ! -x /usr/sbin/mtree ] ; then
93                         exit 1
94                 else
95                         populate_var
96                 fi
97         fi
98         ;;
99 esac
100
101 # Make sure we have /var/log/lastlog and /var/log/wtmp files
102 if [ ! -f /var/log/lastlog ]; then
103         cp /dev/null /var/log/lastlog
104         chmod 644 /var/log/lastlog
105 fi
106 if [ ! -f /var/log/wtmp ]; then
107         cp /dev/null /var/log/wtmp
108         chmod 644 /var/log/wtmp
109 fi