ports/178344: [UPDATE] Update sysutils/jail2 to 1.1
Yamagi Burmeister
yamagi at yamagi.org
Sun May 5 09:40:00 UTC 2013
>Number: 178344
>Category: ports
>Synopsis: [UPDATE] Update sysutils/jail2 to 1.1
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Sun May 05 09:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Yamagi Burmeister
>Release: FreeBSD 9.1-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD happy.home.yamagi.org 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243792M: Sun Dec 2 17:53:10 CET 2012 root at happy.home.yamagi.org:/usr/obj/usr/src/sys/HAPPY amd64
>Description:
This updates sysutils/jail2 to version 1.1. Several bugs were fixed:
- Correct documentation of enforce_statfs parameter
- Load devfs rules before starting the jail. This fixes the
"devfs rules are ignored"-bug.
- Remove some debug output that sneaked in.
>How-To-Repeat:
>Fix:
Index: Makefile
===================================================================
--- Makefile (Revision 317405)
+++ Makefile (Arbeitskopie)
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= jail2
-PORTVERSION= 1.0
+PORTVERSION= 1.1
CATEGORIES= sysutils
MASTER_SITES= #
DISTFILES= #
Index: files/jail2.in
===================================================================
--- files/jail2.in (Revision 317405)
+++ files/jail2.in (Arbeitskopie)
@@ -12,7 +12,7 @@
# To manage ZFS datasets within a jail the dataset must have
# set the parameter "jailed" to 1. Additionally the jail must
# have set the proberties "allow.mount", "allow.mount.zfs"
-# and "enforce_statfs" to value lesser than 2.
+# and "enforce_statfs" to 0.
# PROVIDE: jail
# REQUIRE: LOGIN cleanvar
@@ -31,6 +31,8 @@
{
echo -n "Starting jails: "
+ devfs_init_rulesets
+
for _j in ${jail2_list}; do
echo -n "${_j} "
@@ -48,7 +50,6 @@
for _ds in ${_zfs}; do
_jailed=`zfs get -H jailed ${_ds} 2>/dev/null | awk '{ print $3 }'`
if [ "${_jailed}" = "on" ]; then
- echo "zfs jail "${_jid}" ${_ds} 2>/dev/null"
zfs jail "${_jid}" ${_ds} 2>/dev/null
fi
done
@@ -80,7 +81,6 @@
for _ds in ${_zfs}; do
_jailed=`zfs get -H jailed ${_ds} 2>/dev/null | awk '{ print $3 }'`
if [ "${_jailed}" = "on" ]; then
- echo "zfs unjail "${_jid}" ${_ds} 2>/dev/null"
zfs unjail "${_jid}" ${_ds} 2>/dev/null
fi
done
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list