Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Apr 2002 10:47:40 +0200 (CEST)
From:      Helge Oldach <send-pr@oldach.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   bin/37334: fix jail.8 instructions for creating jail environments
Message-ID:  <200204220847.g3M8leTc041257@sep.oldach.net>

next in thread | raw e-mail | index | archive | help

>Number:         37334
>Category:       bin
>Synopsis:       fix jail.8 instructions for creating jail environments
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Apr 22 02:00:00 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Helge Oldach
>Release:        FreeBSD 4.5-STABLE i386
>Organization:
>Environment:
System: FreeBSD sep.oldach.net 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Apr 18 17:44:21 CEST 2002 toor@sep.oldach.net:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:

The instruction on how to populate a jail's /etc and /dev is wrong after
src/etc/Makefile 1.428. NO_MAKEDEV does not do anything in /dev, it
should be NO_MAKEDEV_RUN instead. See patch below.

	
>How-To-Repeat:
	
>Fix:

--- src/usr.sbin/jail.8	Sat Dec 15 07:37:19 2001
+++ /tmp/jail.8	Mon Apr 22 10:42:09 2002
@@ -58,7 +58,7 @@
 cd /usr/src
 make world DESTDIR=$D
 cd etc
-make distribution DESTDIR=$D -DNO_MAKEDEV
+make distribution DESTDIR=$D -DNO_MAKEDEV_RUN
 cd $D/dev
 sh MAKEDEV jail
 cd $D
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200204220847.g3M8leTc041257>