From owner-svn-src-all@freebsd.org Sat Nov 10 12:12:47 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE4961132345; Sat, 10 Nov 2018 12:12:46 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mx1.sbone.de (cross.sbone.de [195.201.62.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.sbone.de", Issuer "SBone.DE" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DA53487236; Sat, 10 Nov 2018 12:12:45 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 575718D4A24D; Sat, 10 Nov 2018 12:12:38 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id AF0D9D1F7F2; Sat, 10 Nov 2018 12:12:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id WcyG_-Dhx7jR; Sat, 10 Nov 2018 12:12:36 +0000 (UTC) Received: from [192.168.1.88] (fresh-ayiya.sbone.de [IPv6:fde9:577b:c1a9:f001::2]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id D8672D1F7F0; Sat, 10 Nov 2018 12:12:35 +0000 (UTC) From: "Bjoern A. Zeeb" To: "Eugene Grosbein" , "James Gritton" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r340319 - head/usr.sbin/jail Date: Sat, 10 Nov 2018 12:12:44 +0000 X-Mailer: MailMate (2.0BETAr6126) Message-ID: <871CB649-7A64-490B-A81E-F68A575A8BA4@lists.zabbadoz.net> In-Reply-To: <201811101203.wAAC3vov082259@repo.freebsd.org> References: <201811101203.wAAC3vov082259@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DA53487236 X-Spamd-Result: default: False [-3.81 / 200.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_FIVE(0.00)[5]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:195.201.62.131]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[zabbadoz.net]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; RCPT_COUNT_FIVE(0.00)[5]; IP_SCORE(-0.61)[asn: 24940(-3.02), country: DE(-0.02)]; MX_GOOD(-0.01)[cross.sbone.de]; NEURAL_HAM_SHORT(-0.90)[-0.897,0]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:24940, ipnet:195.201.0.0/16, country:DE]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Nov 2018 12:12:47 -0000 On 10 Nov 2018, at 12:03, Eugene Grosbein wrote: > Author: eugen > Date: Sat Nov 10 12:03:57 2018 > New Revision: 340319 > URL: https://svnweb.freebsd.org/changeset/base/340319 > > Log: > jail(8): introduce new command option -e to exhibit > a list of configured non-wildcard jails with their parameters, > no matter running or not. > > The option -e takes separator argument that is used > to separate printed parameters. It will be used with following > additions to system periodic scripts to differentiate parts > of directory tree belonging jails as opposed to host's. From reading this and the man page changes I have a hard time to understand what this does. What is a “wildcard jail” or a “non-wildcard jail”? Usually also jls is the command which will give information (compared to actions) on jails, would that not fit there? /bz