summaryrefslogtreecommitdiff
path: root/ezjail.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ezjail.sh')
-rwxr-xr-xezjail.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/ezjail.sh b/ezjail.sh
index eb5e251..52ce3b9 100755
--- a/ezjail.sh
+++ b/ezjail.sh
@@ -95,13 +95,14 @@ do_cmd()
95 # Get the JID of the jail 95 # Get the JID of the jail
96 [ -f "/var/run/jail_${ezjail_safename}.id" ] && ezjail_id=`cat /var/run/jail_${ezjail_safename}.id` || return 96 [ -f "/var/run/jail_${ezjail_safename}.id" ] && ezjail_id=`cat /var/run/jail_${ezjail_safename}.id` || return
97 97
98 echo ${ezjail_id}
98 # Attach ZFS-datasets to the jail 99 # Attach ZFS-datasets to the jail
99 for zfs in ${ezjail_zfs_datasets}; do 100 for zfs in ${ezjail_zfs_datasets}; do
100 /sbin/zfs jail ${ezjail_id} ${zfs} ||Êecho -n "Error: ${zfs} could not be configured" 101 /sbin/zfs jail ${ezjail_id} ${zfs} ||Êecho -n "Error: ${zfs} could not be configured"
101 done 102 done
102 103
103 # Configure processor sets for the jail via cpuset(1) 104 # Configure processor sets for the jail via cpuset(1)
104 [ "${ezjail_cpuset}" ] && /usr/bin/cpuset -l ${ezjail_cpuset} -j ${ezjail_id} || echo -n "Error: The defined cpuset is malformed" 105 [ -z "${ezjail_cpuset}" ] || /usr/bin/cpuset -l ${ezjail_cpuset} -j ${ezjail_id} || echo -n "Error: The defined cpuset is malformed"
105 fi 106 fi
106 107
107 # Can only detach after unmounting (from fstab.JAILNAME in /etc/rc.d/jail) 108 # Can only detach after unmounting (from fstab.JAILNAME in /etc/rc.d/jail)