Author: hrs
Date: Sun Sep 13 04:05:27 2015
New Revision: 287739
URL: https://svnweb.freebsd.org/changeset/base/287739

Log:
  MFC 287615:
  
  Use read to parse a line instead of set.

Modified:
  stable/10/etc/rc.d/jail
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/rc.d/jail
==============================================================================
--- stable/10/etc/rc.d/jail     Sun Sep 13 04:02:52 2015        (r287738)
+++ stable/10/etc/rc.d/jail     Sun Sep 13 04:05:27 2015        (r287739)
@@ -419,7 +419,7 @@ jail_status()
 
 jail_start()
 {
-       local _j _jid _jl
+       local _j _jid _jl _id _name
 
        if [ $# = 0 ]; then
                return
@@ -432,10 +432,9 @@ jail_start()
                command_args="-f $jail_conf -c"
                _tmp=`mktemp -t jail` || exit 3
                if $command $rc_flags $command_args >> $_tmp 2>&1; then
-                       $jail_jls jid name | while read IN; do
-                               set -- $IN
-                               echo -n " $2"
-                               echo $1 > /var/run/jail_$2.id
+                       $jail_jls jid name | while read _id _name; do
+                               echo -n " $_name"
+                               echo $_id > /var/run/jail_${_name}.id
                        done
                else
                        tail -1 $_tmp
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to