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