]>
Commit | Line | Data |
---|---|---|
e91b9f68 A |
1 | #!/bin/sh |
2 | ## | |
3 | # Copyright 2002 Apple Computer, Inc. | |
4 | # | |
5 | # This script configures NetBoot | |
6 | ## | |
7 | ||
8 | . /etc/rc.common | |
9 | ||
10 | # | |
11 | # Define: NETBOOT_SHADOW | |
12 | # Purpose: | |
13 | # To change the behavior of the system when choosing a netboot shadow | |
14 | # to use. | |
15 | # Values: | |
16 | # -NETWORK- Try to use the network for the shadow file, if | |
17 | # that fails, use the local drive | |
18 | # -NETWORK_ONLY- Only use the network, fail if not available | |
19 | # -LOCAL- Use the local drive for the shadow file, if that | |
20 | # fails, use the network | |
21 | # -LOCAL_ONLY- Only use the local drive for the shadow, fail if | |
22 | # not available | |
23 | ||
24 | NETBOOT_MOUNT=/var/netboot | |
25 | NETBOOT_SHADOW=${NETBOOT_SHADOW:-NETWORK-} | |
26 | ||
27 | Failed() | |
28 | { | |
29 | echo rc.netboot: $1 | |
30 | exit 1 | |
31 | } | |
32 | ||
33 | common_start() | |
34 | { | |
35 | netboot_dir=$1 | |
36 | netboot_shadow=$2 | |
37 | if [ "${netboot_dir}" = "" ] ; then | |
38 | Failed "netboot_dir is empty" | |
39 | fi | |
40 | if [ "${netboot_shadow}" = "" ] ; then | |
41 | Failed "netboot_shadow is empty" | |
42 | fi | |
43 | netboot_shadow="${netboot_dir}/${netboot_shadow}" | |
44 | if ! mkdir -p "${netboot_dir}" ; then | |
45 | Failed "create ${netboot_dir} failed" | |
46 | fi | |
47 | chmod 700 "${netboot_dir}" | |
48 | mount -u -o ro / | |
49 | root_device=$(mount | sed -n 's:/dev/\(.*\) on / .*:\1:p') | |
50 | case "${root_device}" in | |
51 | vn*) | |
52 | if ! touch "${netboot_shadow}" ; then | |
53 | Failed "create ${netboot_shadow} failed" | |
54 | fi | |
55 | chmod 600 "${netboot_shadow}" | |
56 | if ! /usr/libexec/vndevice shadow "/dev/r${root_device}" "${netboot_shadow}" ; then | |
57 | Failed "vndevice shadow failed" | |
58 | fi | |
59 | ;; | |
60 | "") | |
61 | Failed "root device unknown" | |
62 | ;; | |
63 | *) | |
64 | if ! touch "${netboot_shadow}" ; then | |
65 | Failed "failed to create shadow ${netboot_shadow}" | |
66 | fi | |
67 | chmod 600 "${netboot_shadow}" | |
68 | if ! /usr/bin/nbdst -recycle "${root_device}" "${netboot_shadow}" ; then | |
69 | Failed "nbdst failed" | |
70 | fi | |
71 | ;; | |
72 | esac | |
73 | } | |
74 | ||
75 | local_mount() | |
76 | { | |
77 | volinfo=`autodiskmount -F 2>/dev/null` | |
78 | if [ $? -ne 0 ]; then | |
79 | echo "autodiskmount -F found no local drives" | |
80 | return 1 | |
81 | fi | |
82 | set ${volinfo} | |
83 | devname=$1 | |
84 | fstype=$2 | |
85 | ||
86 | mount -t "${fstype}" -o nosuid,nodev "/dev/${devname}" "${NETBOOT_MOUNT}" 2>&1 | |
87 | if [ $? -ne 0 ]; then | |
88 | echo "mount of ${devname} failed" | |
89 | return 1 | |
90 | fi | |
91 | common_start "${NETBOOT_MOUNT}/.com.apple.NetBootX" shadowfile | |
92 | return 0 | |
93 | } | |
94 | ||
95 | network_mount() | |
96 | { | |
97 | mount_from=$(ipconfig netbootoption shadow_mount_path 2>&1) | |
98 | if [ $? -ne 0 ]; then | |
99 | echo "no network shadow mount path available" | |
100 | return 1 | |
101 | fi | |
102 | shadow_path=$(ipconfig netbootoption shadow_file_path 2>&1) | |
103 | if [ $? -ne 0 ]; then | |
104 | echo "no network shadow file path available" | |
105 | return 1 | |
106 | fi | |
107 | case "${mount_from}" in | |
108 | afp:*) fstype=afp;; | |
109 | nfs:*) fstype=nfs;; | |
110 | *) echo "unknown network filesystem mount from ${mount_from}" | |
111 | return 1 | |
112 | ;; | |
113 | esac | |
114 | mount -t "${fstype}" "${mount_from}" "${NETBOOT_MOUNT}" | |
115 | if [ $? -ne 0 ]; then | |
116 | echo "mount -t ${fstype} ${mount_from} ${NETBOOT_MOUNT} failed" | |
117 | return 1 | |
118 | fi | |
119 | common_start "${NETBOOT_MOUNT}" "${shadow_path}" | |
120 | return 0 | |
121 | } | |
122 | ||
123 | do_start() | |
124 | { | |
125 | case "${NETBOOT_SHADOW}" in | |
126 | -LOCAL_ONLY-) | |
127 | err=$(local_mount) | |
128 | if [ $? -ne 0 ]; then | |
129 | Failed "${err}" | |
130 | fi | |
131 | ;; | |
132 | -LOCAL-) | |
133 | err=$(local_mount) | |
134 | if [ $? -ne 0 ]; then | |
135 | err=$(network_mount) | |
136 | if [ $? -ne 0 ]; then | |
137 | Failed "Could not find a local or network drive" | |
138 | fi | |
139 | fi | |
140 | ;; | |
141 | -NETWORK_ONLY-) | |
142 | err=$(network_mount) | |
143 | if [ $? -ne 0 ]; then | |
144 | Failed "${err}" | |
145 | fi | |
146 | ;; | |
147 | ||
148 | *) | |
149 | err=$(network_mount) | |
150 | if [ $? -ne 0 ]; then | |
151 | err=$(local_mount) | |
152 | if [ $? -ne 0 ]; then | |
153 | Failed "Could not find a network or local drive" | |
154 | fi | |
155 | fi | |
156 | ;; | |
157 | esac | |
158 | ||
159 | } | |
160 | ||
ed34e3c3 | 161 | do_init() |
e91b9f68 | 162 | { |
ed34e3c3 A |
163 | # attach the shadow file to the root disk image |
164 | do_start | |
e91b9f68 | 165 | |
ed34e3c3 A |
166 | # make sure the root filesystem is clean |
167 | fsck -p || fsck -fy || Failed "Could not clean root filesystem" | |
e91b9f68 | 168 | |
ed34e3c3 A |
169 | # make it writable |
170 | mount -uw / | |
e91b9f68 | 171 | |
ed34e3c3 A |
172 | # adjust /private/var/vm to point to the writable area (if not diskless) |
173 | swapdir=/private/var/vm | |
174 | mounted_from=$(mount | sed -n 's:\(.*\) on .*/var/netboot.*:\1:p') | |
e91b9f68 A |
175 | case "${mounted_from}" in |
176 | /dev/*) | |
177 | netboot_dir="${NETBOOT_MOUNT}/.com.apple.NetBootX" | |
178 | if [ -d "${netboot_dir}" ]; then | |
e91b9f68 A |
179 | rm -rf "${swapdir}" |
180 | ln -s "${netboot_dir}" "${swapdir}" | |
181 | fi | |
182 | ;; | |
183 | *) | |
184 | ;; | |
185 | esac | |
ed34e3c3 A |
186 | |
187 | # set the ComputerName based on what the NetBoot server told us it was | |
188 | machine_name=$(ipconfig netbootoption machine_name 2>&1) | |
189 | if [ $? -ne 0 ]; then | |
190 | echo "no machine name option available" | |
191 | else | |
192 | echo "Setting ComputerName to ${machine_name}" | |
193 | scutil --set ComputerName "${machine_name}" | |
194 | fi | |
e91b9f68 A |
195 | } |
196 | ||
ed34e3c3 | 197 | |
e91b9f68 A |
198 | if [ $# -lt 1 ] ; then |
199 | exit 0 | |
200 | fi | |
201 | ||
202 | command=$1 | |
203 | ||
204 | shift | |
205 | ||
206 | case "${command}" in | |
ed34e3c3 A |
207 | init) |
208 | do_init $@ | |
e91b9f68 A |
209 | ;; |
210 | esac | |
211 | ||
212 | ## | |
213 | # Exit | |
214 | ## | |
215 | exit 0 |