From owner-freebsd-rc@FreeBSD.ORG Sun Nov 11 12:30:32 2012 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 422C543A; Sun, 11 Nov 2012 12:30:32 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 56FF18FC0A; Sun, 11 Nov 2012 12:30:31 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jm19so1081532bkc.13 for ; Sun, 11 Nov 2012 04:30:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=hT6roMBV3d2CmUVito96hiFaTqUhYHDq4sQNgk2YHPw=; b=GjVC6y1lrLs+bwEh3k692tGuOsQSZYcelHpKwlvU7DsaYWvP1MGhfeG0zGQjIGbIA8 LAfAJc6SDnAfYkD9c8DqwZvXyPxGJy6GzJZNNdpphl5uPDaxRtZRR6P/mn4Lm40JrcE+ 4VicyMvkUnUaWmEdeR4oVnmq/zGGO7buXQrWESRqj4b5i0MAHen3EHRmbOxoXzd0KLvV ydpvsQJrcCspJk+bR7a4d1JlPKC4pgKupw7PIyDfRUax2tKUN+FfIn7Bvpl2/vh8qkib hPmWU5sEeE68cwxdNmJBqISbWT+8Gz8/9ZPYx4NjB9moik2EeIWiNJEYyrGEZfpE26JZ TRnw== MIME-Version: 1.0 Received: by 10.204.147.212 with SMTP id m20mr989243bkv.103.1352637030211; Sun, 11 Nov 2012 04:30:30 -0800 (PST) Received: by 10.204.50.197 with HTTP; Sun, 11 Nov 2012 04:30:30 -0800 (PST) In-Reply-To: References: Date: Sun, 11 Nov 2012 12:30:30 +0000 Message-ID: Subject: Re: jail: unknown parameter: ip6.addr From: Chris Rees To: jail@freebsd.org, "freebsd-rc@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1 Cc: Mateusz Guzik , Eitan Adler X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Nov 2012 12:30:32 -0000 On 10/11/2012, Chris Rees wrote: > [adding rc@, please keep me CCd as I'm not in jail@] > > On Thu, 2012-11-08 at 02:27 +0100, Mateusz Guzik wrote: >> On Wed, Nov 07, 2012 at 03:39:26PM -0500, Mike Jakubik wrote: >> > Hello, >> > >> > I just updated a server to latest stable and my jails no longer start, >> > troubleshooting the startup script shows us that the parameter ip6.addr >> > is unknown, this system is compiled without INET6. >> [..] >> > + tail +2 /tmp/jail.PJ5ji3QH/jail.8101 >> > jail: unknown parameter: ip6.addr >> >> Try this (lightly tested): >> http://people.freebsd.org/~mjg/patches/rc-jail-ip-arg.diff >> >> Basically the idea is to pass ip4.addr and ip6.addr only when respective >> addresses are specified in configuration. > > > Since we've had confirmation that the patch works, a much faster way > is to use sh's variable substitution magic, which also means a much > smaller change: > > - ip4.addr=\"${_addrl}\" ip6.addr=\"${_addr6l}\" > ${_parameters} command=${_exec_start} > ${_tmp_jail} 2>&1 \ > + ${_addrl:+ip4.addr=\"${_addrl}\"} > ${_addr6l:+ip6.addr=\"${_addr6l}\"} ${_parameters} > command=${_exec_start} > ${_tmp_jail} 2>&1 \ > > I'll get a patch together later > Patch as promised-- please would you test and confirm? http://www.bayofrum.net/~crees/patches/rc-jail-ip-arg-shvars.diff Chris From owner-freebsd-rc@FreeBSD.ORG Mon Nov 12 11:06:50 2012 Return-Path: Delivered-To: freebsd-rc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62B6FA54 for ; Mon, 12 Nov 2012 11:06:50 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 476718FC21 for ; Mon, 12 Nov 2012 11:06:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qACB6otE000479 for ; Mon, 12 Nov 2012 11:06:50 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qACB6nut000477 for freebsd-rc@FreeBSD.org; Mon, 12 Nov 2012 11:06:49 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 12 Nov 2012 11:06:49 GMT Message-Id: <201211121106.qACB6nut000477@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-rc@FreeBSD.org Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Nov 2012 11:06:50 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o bin/173153 rc [rc.d] [patch] $netwait_ip should be more parallel o conf/172532 rc [rc] [patch] service routing restart always fails o conf/169373 rc mountd starts too early when exporting fs marked as la o conf/169047 rc [rc.subr] [patch] /etc/rc.subr not checking some scrip o bin/168544 rc [patch] [rc]: addswap-mounted swapfiles cause panic on o conf/167566 rc [rc.d] [patch] ipdivert module loading vs. ipfw rc.d o o conf/166484 rc [rc] [patch] rc.initdiskless patch for different major o conf/165769 rc [rc][jai][ipv6] IPv6 Initialization on external iface f bin/165477 rc [rc] dhclient is run twice o conf/164393 rc [rc.d] restarting netif with static addresses doesn't o conf/163508 rc [rc.subr] [patch] Add "enable" and "disable" commands o conf/163488 rc Confusing explanation in defaults/rc.conf o conf/163321 rc [rc.conf] [patch] allow _fib syntax in rc.conf o conf/162642 rc .sh scripts in /usr/local/etc/rc.d get executed, not s p kern/161899 rc [route] ntpd(8): Repeating RTM_MISS packets causing hi o conf/161107 rc [rc] stop_boot in mountcritlocal usage is incorrect. o conf/160403 rc [rc] [patch] concurrently running rc-scripts during bo o conf/160240 rc rc.d/mdconfig and mdconfig2 should autoset $_type to v o conf/159846 rc [rc.conf] routing_stop_inet6() logic doesn't handle ip o conf/158557 rc [patch] /etc/rc.d/pf broken messages o conf/158127 rc [patch] remount_optional option in rc.initdiskless doe o conf/153666 rc [rc.d][patch] mount filesystems from fstab over zfs da o conf/153200 rc post-boot /etc/rc.d/network_ipv6 start can miss neighb o conf/153123 rc [rc] [patch] add gsched rc file to automatically inser o conf/150474 rc [patch] rc.d/accounting: Add ability to set location o o conf/149867 rc [PATCH] rc.d script to manage multiple FIBS (kern opti o conf/149831 rc [PATCH] add support to /etc/rc.d/jail for delegating Z o conf/148656 rc rc.firewall(8): {oip} and {iip} variables in rc.firewa o conf/147685 rc [rc.d] [patch] new feature for /etc/rc.d/fsck o conf/147444 rc [rc.d] [patch] /etc/rc.d/zfs stop not called on reboot o conf/146053 rc [patch] [request] shutdown of jails breaks inter-jail o conf/145399 rc [patch] rc.d scripts are unable to start/stop programs o conf/145009 rc [patch] rc.subr(8): rc.conf should allow mac label con o conf/143637 rc [patch] ntpdate(8) support for ntp-servers supplied by o conf/143085 rc [patch] ftp-proxy(8) rc(8) with multiple instances a conf/142973 rc [jail] [patch] Strange counter init value in jail rc o conf/142434 rc [patch] Add cpuset(1) support to rc.subr(8) o conf/142304 rc rc.conf(5): mdconfig and mdconfig2 rc.d scripts lack e o conf/141909 rc rc.subr(8): [patch] add rc.conf.d support to /usr/loca o conf/141678 rc [patch] A minor enhancement to how /etc/rc.d/jail dete o conf/140440 rc [patch] allow local command files in rc.{suspend,resum o conf/140261 rc [patch] Improve flexibility of mdconfig2 startup scrip p conf/138208 rc [rc.d] [patch] Making rc.firewall (workstation) IPv6 a o conf/137271 rc [rc.d] Cannot update /etc/host.conf when root filesyst o conf/136624 rc [rc.d] sysctl variables for ipnat are not applied on b o conf/134918 rc [patch] rc.subr fails to detect perl daemons o conf/134660 rc [patch] rc-script for initializing ng_netflow+ng_ipfw o conf/134333 rc PPP configuration problem in the rc.d scripts in combi o conf/133890 rc [patch] sshd(8): add multiple profiles to the rc.d scr o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). p conf/123119 rc [patch] rc script for ipfw does not handle IPv6 o conf/122968 rc [rc.d] /etc/rc.d/addswap: md swapfile multiplication a o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug a conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses f conf/118255 rc savecore never finding kernel core dumps (rcorder prob f conf/117935 rc [patch] ppp fails to start at boot because of missing f conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/108589 rc rtsol(8) fails due to default ipfw rules o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p f conf/105689 rc [ppp] [request] syslogd starts too late at boot f conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp f conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE f conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d f conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle a conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi a conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} f conf/56934 rc [patch] rc.firewall rules for natd expect an interface 83 problems total. From owner-freebsd-rc@FreeBSD.ORG Mon Nov 12 21:49:57 2012 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1262F3C7; Mon, 12 Nov 2012 21:49:57 +0000 (UTC) (envelope-from mike.jakubik@intertainservices.com) Received: from mail.intertainservices.com (mail.intertainservices.com [69.77.177.114]) by mx1.freebsd.org (Postfix) with ESMTP id 792208FC13; Mon, 12 Nov 2012 21:49:56 +0000 (UTC) Received: from [172.16.10.200] (unknown [172.16.10.200]) by mail.intertainservices.com (Postfix) with ESMTPSA id B6D2D56465; Mon, 12 Nov 2012 16:49:47 -0500 (EST) Message-ID: <1352756987.7967.10.camel@mjakubik.localdomain> Subject: Re: jail: unknown parameter: ip6.addr From: Mike Jakubik To: Chris Rees Date: Mon, 12 Nov 2012 16:49:47 -0500 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.4.4 (3.4.4-2.fc17) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-intertainservices-MailScanner-Information: Please contact the ISP for more information X-intertainservices-MailScanner-ID: B6D2D56465.AF9B1 X-intertainservices-MailScanner: Found to be clean X-intertainservices-MailScanner-From: mike.jakubik@intertainservices.com X-Spam-Status: No Cc: jail@freebsd.org, "freebsd-rc@freebsd.org" , Eitan Adler X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Nov 2012 21:49:57 -0000 On Sun, 2012-11-11 at 12:30 +0000, Chris Rees wrote: > > Patch as promised-- please would you test and confirm? > Chris, This patch also works for me, i am able to stop and start jails. Thanks. From owner-freebsd-rc@FreeBSD.ORG Mon Nov 12 23:13:26 2012 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7AB3C95 for ; Mon, 12 Nov 2012 23:13:26 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4BC0E8FC0C for ; Mon, 12 Nov 2012 23:13:25 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id gg13so1740732lbb.13 for ; Mon, 12 Nov 2012 15:13:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=Htd0tzct7vqkPv4+8tU4HY/F4XRjMy0vJue4wu2QCl4=; b=EKX7gzqK1fXiAlVckI3R2Cp4silsdabRBLtS/ax6jDUMJ905ZLTWE/uD5tfH8v0mi5 hLk0c1XBwIhqTJSrlCvWvTIoDP85x8CPbwM0MTVdBSFSfgyjjYfAw78IRatD1VJCQ+kB GmhcZ0ciJDGyA2bFQyayspuQ953vTLOLLzaTs= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=Htd0tzct7vqkPv4+8tU4HY/F4XRjMy0vJue4wu2QCl4=; b=iNHXyedasla8n2AeNz1tVYn1RH6GclA0rXeodG0ALWPZzrSiX2qtH6Eq0ciTDGY0q8 bDbRWJCXJ5nIQXqWwVmiH60XP6RDsc0q7C0UmBi12zV3+volLq1KRCUCXaN+MZI1/ReD xH5M1pFyDNZTM4BjIr4mFs+0YnjveIaUNQkxvYGSwu1J0BQTRQ1zjtmo88+xFYaQLzf+ +lPNQMH5ETPnjNMDqxI/X/NHjdeSyF7JPCuiVzzcJYNVMG41n5HiiKvm2gg2brNe/0JO VB6czKQBH2C0NdbjhUcZLI3WTO71xLb6VmJhb22P9PVkrKEKW+dAwRLzyoRJ9QR4ENoT leNg== Received: by 10.112.37.7 with SMTP id u7mr8527255lbj.30.1352762004783; Mon, 12 Nov 2012 15:13:24 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.112.25.166 with HTTP; Mon, 12 Nov 2012 15:12:54 -0800 (PST) In-Reply-To: References: From: Eitan Adler Date: Mon, 12 Nov 2012 18:12:54 -0500 X-Google-Sender-Auth: f39-jfzp3fbvs9lUflY7gnMlEJQ Message-ID: Subject: Re: jail: unknown parameter: ip6.addr To: Chris Rees Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQl+uWy9pkMZ8AF0czxwSIIvCAI5gq7wyaFWiC1rZpQD0lffPtgmXUIvyHH8ssWcMF/qj3/b Cc: jail@freebsd.org, Mateusz Guzik , "freebsd-rc@freebsd.org" X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Nov 2012 23:13:27 -0000 On 11 November 2012 07:30, Chris Rees wrote: > On 10/11/2012, Chris Rees wrote: >> [adding rc@, please keep me CCd as I'm not in jail@] >> >> On Thu, 2012-11-08 at 02:27 +0100, Mateusz Guzik wrote: >>> On Wed, Nov 07, 2012 at 03:39:26PM -0500, Mike Jakubik wrote: >>> > Hello, >>> > >>> > I just updated a server to latest stable and my jails no longer start, >>> > troubleshooting the startup script shows us that the parameter ip6.addr >>> > is unknown, this system is compiled without INET6. >>> [..] >>> > + tail +2 /tmp/jail.PJ5ji3QH/jail.8101 >>> > jail: unknown parameter: ip6.addr >>> >>> Try this (lightly tested): >>> http://people.freebsd.org/~mjg/patches/rc-jail-ip-arg.diff >>> >>> Basically the idea is to pass ip4.addr and ip6.addr only when respective >>> addresses are specified in configuration. >> >> >> Since we've had confirmation that the patch works, a much faster way >> is to use sh's variable substitution magic, which also means a much >> smaller change: >> >> - ip4.addr=\"${_addrl}\" ip6.addr=\"${_addr6l}\" >> ${_parameters} command=${_exec_start} > ${_tmp_jail} 2>&1 \ >> + ${_addrl:+ip4.addr=\"${_addrl}\"} >> ${_addr6l:+ip6.addr=\"${_addr6l}\"} ${_parameters} >> command=${_exec_start} > ${_tmp_jail} 2>&1 \ >> >> I'll get a patch together later >> > > Patch as promised-- please would you test and confirm? > > http://www.bayofrum.net/~crees/patches/rc-jail-ip-arg-shvars.diff ack -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-freebsd-rc@FreeBSD.ORG Tue Nov 13 03:29:11 2012 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DA4431D for ; Tue, 13 Nov 2012 03:29:11 +0000 (UTC) (envelope-from list_freebsd@bluerosetech.com) Received: from yoshi.bluerosetech.com (yoshi.bluerosetech.com [IPv6:2607:f2f8:a450::66]) by mx1.freebsd.org (Postfix) with ESMTP id 0CCC88FC08 for ; Tue, 13 Nov 2012 03:29:11 +0000 (UTC) Received: from vivi.cat.pdx.edu (vivi.cat.pdx.edu [IPv6:2610:10:20:214::6]) by yoshi.bluerosetech.com (Postfix) with ESMTPSA id A53A2E606B for ; Mon, 12 Nov 2012 19:29:04 -0800 (PST) Received: from [127.0.0.1] (c-76-27-220-79.hsd1.wa.comcast.net [76.27.220.79]) by vivi.cat.pdx.edu (Postfix) with ESMTPSA id 1AF4324D1D for ; Mon, 12 Nov 2012 19:29:00 -0800 (PST) Message-ID: <50A1BE7A.1060300@bluerosetech.com> Date: Mon, 12 Nov 2012 19:28:58 -0800 From: Darren Pilgrim User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:10.0.6esrpre) Gecko/20120713 Thunderbird/10.0.6 MIME-Version: 1.0 To: freebsd-rc@freebsd.org Subject: Is anyone working on DHCPv6 client integration? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Nov 2012 03:29:11 -0000 I've seen the subject on the IPv6 to-do list[1] for a while now and have been fiddling around with the ISC DHCPv6 client on a machine hooked up to Comcast. It's been particularly interesting because Comcast uses prefix delegation. Is anyone working on updating/replacing the current in-base DHCP client and adding DHCPv6 client support? If so, is there an experimental patch? If not, is it on the radar of someone who wouldn't mind exchanging emails on the topic? [1] http://wiki.freebsd.org/IPv6TODO From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:01:09 2012 Return-Path: Delivered-To: freebsd-rc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77B62493; Sat, 17 Nov 2012 23:01:09 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 5E99F8FC15; Sat, 17 Nov 2012 23:01:08 +0000 (UTC) Received: from alph.allbsd.org (p1137-ipbf1505funabasi.chiba.ocn.ne.jp [118.7.212.137]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHN0qtY088915 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Nov 2012 08:01:02 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHN0n9e050687; Sun, 18 Nov 2012 08:00:51 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 18 Nov 2012 07:59:56 +0900 (JST) Message-Id: <20121118.075956.2090347175828215059.hrs@allbsd.org> To: crees@FreeBSD.org Subject: Re: bin/165477: [rc] dhclient is run twice From: Hiroki Sato In-Reply-To: <201211021111.qA2BBHEi008211@freefall.freebsd.org> References: <201211021111.qA2BBHEi008211@freefall.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Sun, 18 Nov 2012 08:01:02 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-rc@FreeBSD.org, wblock@FreeBSD.org, bug-followup@FreeBSD.org X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:01:09 -0000 ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)-- Content-Type: Multipart/Mixed; boundary="--Next_Part(Sun_Nov_18_07_59_56_2012_546)--" Content-Transfer-Encoding: 7bit ----Next_Part(Sun_Nov_18_07_59_56_2012_546)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit crees@freebsd.org wrote in <201211021111.qA2BBHEi008211@freefall.freebsd.org>: cr> Synopsis: [rc] dhclient is run twice cr> cr> State-Changed-From-To: open->feedback cr> State-Changed-By: crees cr> State-Changed-When: Fri Nov 2 11:11:17 UTC 2012 cr> State-Changed-Why: cr> Please try out the patch at cr> http://www.bayofrum.net/~crees/patches/165477.diff to devd.conf. It cr> does the "right thing", so let me know if it stops your problem. I think it is safe to remove the warning message when rc_quiet=YES. What do you think about the attached patch? -- Hiroki ----Next_Part(Sun_Nov_18_07_59_56_2012_546)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc.subr_quiet_20121118-1.diff" Index: etc/rc.subr =================================================================== --- etc/rc.subr (revision 243184) +++ etc/rc.subr (working copy) @@ -704,7 +704,9 @@ start) if [ -z "$rc_fast" -a -n "$rc_pid" ]; then - echo 1>&2 "${name} already running? (pid=$rc_pid)." + if [ ! -z "$rc_quiet" ]; then + echo 1>&2 "${name} already running? (pid=$rc_pid)." + fi return 1 fi ----Next_Part(Sun_Nov_18_07_59_56_2012_546)---- ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoFuwACgkQTyzT2CeTzy1usgCgmqzn4/7Yhr0+fwxOPHqOXW07 FzUAoLQ/xwkyWXICEt8ptmJZrTq6icRA =etD7 -----END PGP SIGNATURE----- ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)---- From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:01:16 2012 Return-Path: Delivered-To: freebsd-rc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93C744B2; Sat, 17 Nov 2012 23:01:16 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id E38148FC14; Sat, 17 Nov 2012 23:01:15 +0000 (UTC) Received: from alph.allbsd.org (p1137-ipbf1505funabasi.chiba.ocn.ne.jp [118.7.212.137]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHN0qTZ088914 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Nov 2012 08:01:02 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHN0n9d050687; Sun, 18 Nov 2012 08:00:51 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 18 Nov 2012 07:43:25 +0900 (JST) Message-Id: <20121118.074325.564844639489846824.hrs@allbsd.org> To: utisoft@gmail.com Subject: Re: mountlate being too mount-happy From: Hiroki Sato In-Reply-To: References: X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Sun_Nov_18_07_43_25_2012_412)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Sun, 18 Nov 2012 08:01:02 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-rc@FreeBSD.org, mjg@FreeBSD.org X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:01:16 -0000 ----Security_Multipart(Sun_Nov_18_07_43_25_2012_412)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Chris Rees wrote in : ut> On 2 November 2012 14:21, Eitan Adler wrote: ut> > On 2 November 2012 09:56, Chris Rees wrote: ut> >> I'll take a look. ut> > ut> > untested: ut> ut> Based on Eitan's patch, I've tested this one, and documented it in mount(8) too: ut> ut> http://www.bayofrum.net/~crees/patches/mountonlylate.diff ut> ut> Does anyone have any suggestions/objections/urge to approve it? Is the original problem due to backgrounding of NFS mount only? If so, implementing prevention of duplicate invocation into mount(8) would be more reasonable, I think. -- Hiroki ----Security_Multipart(Sun_Nov_18_07_43_25_2012_412)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoEw0ACgkQTyzT2CeTzy3VHgCfcZOAyukTouSY+HC2ENs77QRe ZqMAn0jEPeTZ1zKC8vU29/jIfd1cao5Z =gDb9 -----END PGP SIGNATURE----- ----Security_Multipart(Sun_Nov_18_07_43_25_2012_412)---- From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:10:01 2012 Return-Path: Delivered-To: freebsd-rc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 70B48A89 for ; Sat, 17 Nov 2012 23:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 3E0D08FC13 for ; Sat, 17 Nov 2012 23:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qAHNA1V6074608 for ; Sat, 17 Nov 2012 23:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qAHNA1ex074607; Sat, 17 Nov 2012 23:10:01 GMT (envelope-from gnats) Date: Sat, 17 Nov 2012 23:10:01 GMT Message-Id: <201211172310.qAHNA1ex074607@freefall.freebsd.org> To: freebsd-rc@FreeBSD.org Cc: From: Hiroki Sato Subject: Re: bin/165477: [rc] dhclient is run twice X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Hiroki Sato List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:10:01 -0000 The following reply was made to PR bin/165477; it has been noted by GNATS. From: Hiroki Sato To: crees@FreeBSD.org Cc: wblock@FreeBSD.org, freebsd-rc@FreeBSD.org, bug-followup@FreeBSD.org Subject: Re: bin/165477: [rc] dhclient is run twice Date: Sun, 18 Nov 2012 07:59:56 +0900 (JST) ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)-- Content-Type: Multipart/Mixed; boundary="--Next_Part(Sun_Nov_18_07_59_56_2012_546)--" Content-Transfer-Encoding: 7bit ----Next_Part(Sun_Nov_18_07_59_56_2012_546)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit crees@freebsd.org wrote in <201211021111.qA2BBHEi008211@freefall.freebsd.org>: cr> Synopsis: [rc] dhclient is run twice cr> cr> State-Changed-From-To: open->feedback cr> State-Changed-By: crees cr> State-Changed-When: Fri Nov 2 11:11:17 UTC 2012 cr> State-Changed-Why: cr> Please try out the patch at cr> http://www.bayofrum.net/~crees/patches/165477.diff to devd.conf. It cr> does the "right thing", so let me know if it stops your problem. I think it is safe to remove the warning message when rc_quiet=YES. What do you think about the attached patch? -- Hiroki ----Next_Part(Sun_Nov_18_07_59_56_2012_546)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc.subr_quiet_20121118-1.diff" Index: etc/rc.subr =================================================================== --- etc/rc.subr (revision 243184) +++ etc/rc.subr (working copy) @@ -704,7 +704,9 @@ start) if [ -z "$rc_fast" -a -n "$rc_pid" ]; then - echo 1>&2 "${name} already running? (pid=$rc_pid)." + if [ ! -z "$rc_quiet" ]; then + echo 1>&2 "${name} already running? (pid=$rc_pid)." + fi return 1 fi ----Next_Part(Sun_Nov_18_07_59_56_2012_546)---- ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoFuwACgkQTyzT2CeTzy1usgCgmqzn4/7Yhr0+fwxOPHqOXW07 FzUAoLQ/xwkyWXICEt8ptmJZrTq6icRA =etD7 -----END PGP SIGNATURE----- ----Security_Multipart0(Sun_Nov_18_07_59_56_2012_823)---- From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:31:27 2012 Return-Path: Delivered-To: freebsd-rc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D5BE493; Sat, 17 Nov 2012 23:31:27 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 0B4D48FC13; Sat, 17 Nov 2012 23:31:25 +0000 (UTC) Received: from alph.allbsd.org (p1137-ipbf1505funabasi.chiba.ocn.ne.jp [118.7.212.137]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHNVAaL092557 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Nov 2012 08:31:20 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHNV7mk051010; Sun, 18 Nov 2012 08:31:10 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 18 Nov 2012 08:29:58 +0900 (JST) Message-Id: <20121118.082958.1681649715655191312.hrs@allbsd.org> To: utisoft@gmail.com Subject: Re: conf/93815 Adding save and reload ability to ipfw From: Hiroki Sato In-Reply-To: <201210291630.q9TGU1t6059484@freefall.freebsd.org> References: <201210291630.q9TGU1t6059484@freefall.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Sun_Nov_18_08_29_58_2012_617)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Sun, 18 Nov 2012 08:31:20 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-rc@FreeBSD.org X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:31:27 -0000 ----Security_Multipart(Sun_Nov_18_08_29_58_2012_617)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Chris Rees wrote in <201210291630.q9TGU1t6059484@freefall.freebsd.org>: ut> The following reply was made to PR conf/93815; it has been noted by GNATS. ut> ut> From: Chris Rees ut> To: bug-followup@freebsd.org ut> Cc: ut> Subject: Re: conf/93815 Adding save and reload ability to ipfw ut> Date: Mon, 29 Oct 2012 16:21:46 +0000 ut> ut> Nowadays we have much simpler firewall scripts. ut> ut> http://www.bayofrum.net/~crees/patches/firewall-saved-rulesets.diff ut> ut> What does everyone think about this? I took a look at this feature but dumping all of the ipfw rules is not so easy (definitions of nat, pipe, queue, sched, table will not be listed by "ipfw -q", for example). We need a way to dump them first to realize this functionality. The directives "add" and "delete" in ipfw_load() and ipfw_unload() do not always work. For the script, the current rc.d/ipfw and rc.firewall are able to load a rule file when firewall_script=/path/to/file, so ipfw_load should use it simply. Generally speaking, writing the rules as a shell script to /foo and then ". /foo" is dangerous in the rc.d scripts because it can break the script if /foo is broken in some way. Just to let ipfw(8) load a rule file as another set and swap the current set with it is much safer. -- Hiroki ----Security_Multipart(Sun_Nov_18_08_29_58_2012_617)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoHfYACgkQTyzT2CeTzy00EACfZtH8TmuAL1nWuBvxrqFxdO4n 9SgAn2yCCFBMs8p3RT/XW4xUlDiosdAA =TlK9 -----END PGP SIGNATURE----- ----Security_Multipart(Sun_Nov_18_08_29_58_2012_617)---- From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:31:32 2012 Return-Path: Delivered-To: freebsd-rc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB7734A6; Sat, 17 Nov 2012 23:31:32 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD908FC14; Sat, 17 Nov 2012 23:31:32 +0000 (UTC) Received: from alph.allbsd.org (p1137-ipbf1505funabasi.chiba.ocn.ne.jp [118.7.212.137]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHNVAKB092556 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Nov 2012 08:31:20 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id qAHNV7mj051010; Sun, 18 Nov 2012 08:31:08 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 18 Nov 2012 08:05:23 +0900 (JST) Message-Id: <20121118.080523.116047997709989164.hrs@allbsd.org> To: crees@FreeBSD.org Subject: Re: conf/99721: [patch] /etc/rc.initdiskless problem copy dotfile in subdirectories to the MFS filesystem From: Hiroki Sato In-Reply-To: <201210311032.q9VAWALi013151@freefall.freebsd.org> References: <201210311032.q9VAWALi013151@freefall.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Sun_Nov_18_08_05_23_2012_954)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Sun, 18 Nov 2012 08:31:21 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: f_zavatzki@blue-network.org, freebsd-rc@FreeBSD.org, bug-followup@FreeBSD.org X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:31:32 -0000 ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit crees@freebsd.org wrote in <201210311032.q9VAWALi013151@freefall.freebsd.org>: cr> Synopsis: [patch] /etc/rc.initdiskless problem copy dotfile in subdirectories to the MFS filesystem cr> cr> State-Changed-From-To: open->feedback cr> State-Changed-By: crees cr> State-Changed-When: Wed Oct 31 10:32:10 UTC 2012 cr> State-Changed-Why: cr> Thank you-- my suggested fix is to use pax which doesn't execute two cr> programs where one would do. cr> http://www.bayofrum.net/~crees/patches/99721.diff Thoughts? I have tested the patch and worked fine. Please commit it. -- Hiroki ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoGDQACgkQTyzT2CeTzy0tEACgkr/8uyUxN0c+rtHY/HH8ly44 oqEAnjIHRk+dwf+VzE3ecygIb1KHUjUu =udiq -----END PGP SIGNATURE----- ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)---- From owner-freebsd-rc@FreeBSD.ORG Sat Nov 17 23:40:01 2012 Return-Path: Delivered-To: freebsd-rc@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F6AA9C6 for ; Sat, 17 Nov 2012 23:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 626D58FC08 for ; Sat, 17 Nov 2012 23:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qAHNe1Ub076838 for ; Sat, 17 Nov 2012 23:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qAHNe16R076837; Sat, 17 Nov 2012 23:40:01 GMT (envelope-from gnats) Date: Sat, 17 Nov 2012 23:40:01 GMT Message-Id: <201211172340.qAHNe16R076837@freefall.freebsd.org> To: freebsd-rc@FreeBSD.org Cc: From: Hiroki Sato Subject: Re: conf/99721: [patch] /etc/rc.initdiskless problem copy dotfile in subdirectories to the MFS filesystem X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Hiroki Sato List-Id: "Discussion related to /etc/rc.d design and implementation." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Nov 2012 23:40:01 -0000 The following reply was made to PR conf/99721; it has been noted by GNATS. From: Hiroki Sato To: crees@FreeBSD.org Cc: f_zavatzki@blue-network.org, freebsd-rc@FreeBSD.org, bug-followup@FreeBSD.org Subject: Re: conf/99721: [patch] /etc/rc.initdiskless problem copy dotfile in subdirectories to the MFS filesystem Date: Sun, 18 Nov 2012 08:05:23 +0900 (JST) ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit crees@freebsd.org wrote in <201210311032.q9VAWALi013151@freefall.freebsd.org>: cr> Synopsis: [patch] /etc/rc.initdiskless problem copy dotfile in subdirectories to the MFS filesystem cr> cr> State-Changed-From-To: open->feedback cr> State-Changed-By: crees cr> State-Changed-When: Wed Oct 31 10:32:10 UTC 2012 cr> State-Changed-Why: cr> Thank you-- my suggested fix is to use pax which doesn't execute two cr> programs where one would do. cr> http://www.bayofrum.net/~crees/patches/99721.diff Thoughts? I have tested the patch and worked fine. Please commit it. -- Hiroki ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlCoGDQACgkQTyzT2CeTzy0tEACgkr/8uyUxN0c+rtHY/HH8ly44 oqEAnjIHRk+dwf+VzE3ecygIb1KHUjUu =udiq -----END PGP SIGNATURE----- ----Security_Multipart(Sun_Nov_18_08_05_23_2012_954)----