Deleted Added
full compact
rc.initdiskless (128713) rc.initdiskless (130151)
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:

--- 10 unchanged lines hidden (view full) ---

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#
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:

--- 10 unchanged lines hidden (view full) ---

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: head/etc/rc.initdiskless 128713 2004-04-28 13:18:22Z phk $
27# $FreeBSD: head/etc/rc.initdiskless 130151 2004-06-06 11:46:29Z schweikh $
28#
29# REQUIRE: preseedrandom
30# PROVIDE: initdiskless
31# KEYWORD: FreeBSD nojail
32# BEFORE: ipfw
33
34
35# On entry to this script the entire system consists of a read-only root

--- 14 unchanged lines hidden (view full) ---

50# of the files in the original root;
51# ${ipba} where ${ipba} is the assigned broadcast IP address
52# ${class} where ${class} is a list of directories supplied by
53# bootp/dhcp through the T134 option.
54# ${ipba} and ${class} are typicall used to configure features
55# for group of diskless clients, or even individual features;
56# ${ip} where ${ip} is the machine's assigned IP address, typically
57# used to set host-specific features;
28#
29# REQUIRE: preseedrandom
30# PROVIDE: initdiskless
31# KEYWORD: FreeBSD nojail
32# BEFORE: ipfw
33
34
35# On entry to this script the entire system consists of a read-only root

--- 14 unchanged lines hidden (view full) ---

50# of the files in the original root;
51# ${ipba} where ${ipba} is the assigned broadcast IP address
52# ${class} where ${class} is a list of directories supplied by
53# bootp/dhcp through the T134 option.
54# ${ipba} and ${class} are typicall used to configure features
55# for group of diskless clients, or even individual features;
56# ${ip} where ${ip} is the machine's assigned IP address, typically
57# used to set host-specific features;
58#
58#
59# Template directories are scanned in the order they are listed above,
60# with each sucessive directory overriding (merged into) the previous one;
61# non-existing directories are ignored.
62#
63# The existence of a directory /conf/T/M causes this script to create a
64# memory filesystem mounted as /M on the client.
65#
66# Some files in /conf have special meaning, namely:

--- 257 unchanged lines hidden ---
59# Template directories are scanned in the order they are listed above,
60# with each sucessive directory overriding (merged into) the previous one;
61# non-existing directories are ignored.
62#
63# The existence of a directory /conf/T/M causes this script to create a
64# memory filesystem mounted as /M on the client.
65#
66# Some files in /conf have special meaning, namely:

--- 257 unchanged lines hidden ---