Deleted Added
full compact
jail (220153) jail (230099)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/jail 220153 2011-03-30 01:19:00Z emaste $
3# $FreeBSD: head/etc/rc.d/jail 230099 2012-01-14 02:18:41Z dougb $
4#
5
6# PROVIDE: jail
7# REQUIRE: LOGIN cleanvar
8# BEFORE: securelevel
9# KEYWORD: nojail shutdown
10
11# WARNING: This script deals with untrusted data (the data and
12# processes inside the jails) and care must be taken when changing the
13# code related to this! If you have any doubt whether a change is
14# correct and have security impact, please get the patch reviewed by
15# the FreeBSD Security Team prior to commit.
16
17. /etc/rc.subr
18
19name="jail"
4#
5
6# PROVIDE: jail
7# REQUIRE: LOGIN cleanvar
8# BEFORE: securelevel
9# KEYWORD: nojail shutdown
10
11# WARNING: This script deals with untrusted data (the data and
12# processes inside the jails) and care must be taken when changing the
13# code related to this! If you have any doubt whether a change is
14# correct and have security impact, please get the patch reviewed by
15# the FreeBSD Security Team prior to commit.
16
17. /etc/rc.subr
18
19name="jail"
20rcvar=`set_rcvar`
20rcvar="jail_enable"
21
22start_precmd="jail_prestart"
23start_cmd="jail_start"
24stop_cmd="jail_stop"
25
26# init_variables _j
27# Initialize the various jail variables for jail _j.
28#

--- 714 unchanged lines hidden ---
21
22start_precmd="jail_prestart"
23start_cmd="jail_start"
24stop_cmd="jail_stop"
25
26# init_variables _j
27# Initialize the various jail variables for jail _j.
28#

--- 714 unchanged lines hidden ---