summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/jail
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.d/jail')
-rwxr-xr-xetc/rc.d/jail25
1 files changed, 10 insertions, 15 deletions
diff --git a/etc/rc.d/jail b/etc/rc.d/jail
index 76342cf..70e151d 100755
--- a/etc/rc.d/jail
+++ b/etc/rc.d/jail
@@ -18,6 +18,8 @@
name="jail"
rcvar=`set_rcvar`
+
+start_precmd="jail_prestart"
start_cmd="jail_start"
stop_cmd="jail_stop"
@@ -545,6 +547,13 @@ jail_ips()
done
}
+jail_prestart()
+{
+ if checkyesno jail_parallel_start; then
+ command_args='&'
+ fi
+}
+
jail_start()
{
echo -n 'Configuring jails:'
@@ -730,18 +739,4 @@ if [ -n "$*" ]; then
jail_list="$*"
fi
-# Only allow the parallel start of jails, other commands are not
-# safe to execute in parallel.
-case "${cmd}" in
-*start)
- ;;
-*)
- jail_parallel_start=NO
-esac
-
-if checkyesno jail_parallel_start; then
- run_rc_command "${cmd}" &
-else
- run_rc_command "${cmd}"
-fi
-
+run_rc_command "${cmd}"
OpenPOWER on IntegriCloud