From owner-freebsd-fs@FreeBSD.ORG Mon Aug 19 22:57:17 2013 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 63991EE6 for ; Mon, 19 Aug 2013 22:57:17 +0000 (UTC) (envelope-from sean_bruno@yahoo.com) Received: from nm23-vm3.bullet.mail.ne1.yahoo.com (nm23-vm3.bullet.mail.ne1.yahoo.com [98.138.91.153]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 080B32E56 for ; Mon, 19 Aug 2013 22:57:16 +0000 (UTC) Received: from [98.138.90.57] by nm23.bullet.mail.ne1.yahoo.com with NNFMP; 19 Aug 2013 22:57:10 -0000 Received: from [98.138.104.115] by tm10.bullet.mail.ne1.yahoo.com with NNFMP; 19 Aug 2013 22:57:10 -0000 Received: from [127.0.0.1] by smtp224.mail.ne1.yahoo.com with NNFMP; 19 Aug 2013 22:57:10 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1376953030; bh=0O+FBety8ZQ589S7cGY5J6Mim9pB785AH3HGz9cT/No=; h=X-Yahoo-Newman-Id:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:Subject:From:Reply-To:To:Content-Type:Date:Message-ID:Mime-Version:X-Mailer; b=HBpc/JPZaXwA332BW1sw/c1iBnBzXiWjXW/HrgaRdJDzgsKoHlUnDFhBKjePenr3lO4Mg9FGcFAJr0UB+NJIs6LS7ESvG1sYMq7WDrOHVwGrKZJ7Wuyj8yzrdstfQCcaaaeb6m13k26iJk+vaUXyRKtBYZ1Uiov9mJ3DdpgvVKA= X-Yahoo-Newman-Id: 894505.63923.bm@smtp224.mail.ne1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: js9AGosVM1n99nlARA_XW697cprsXKSVH99N4Wcr9dIH8jy gI5YPvsaxNyjznQGmhq95gcHg4gTcXc1TUxfLA2ihVAVThT.rsaefmHCKdrh cw.A9hKg0CEsWIl9mhoC5WMsWYMzeQ9kEkDzhwDI8XJCPQ7f_QQ4BYHrqciy THd2f.TQHdkLg_gJ2sbDQpailoqjfGi91gbzjHzCNkGN02ag9CGrj8X1Ru_t 53d77u.1zcm5MPz5GZWmQS57twLEtKHrr7xUm7sQmIIwc13bANA8Io6x4EXC b2dAc_iEf_X3q49zCuPvKWMfbEBn.Mna4vqnOP7lZGYPwyzq.LINMG3vgMZC vjeOCFdZMWt4gNnXGsRBRRtXje88P4JP9v0cqsjnoDB.9aeBnv9.guJZ5CTB sRdWhucYLUDUBUR772hNb52vJJU6gXYe6ZmjcNIfEBkK0PM4P5C3T7MmnkfI PlLzVely7R54GxPXT2qGmdciaNTB_gR10TsuJzGwjCATScDzl37C0owXPkpe UMLBruIb1OnsDdpGssIWVfko_sQwcD5HFtyg8FqYccZFHwN9VX6m3xcI9NRQ griSDJPmJceGVCh0D4Lr1HiV_oVSrRH9.EDDiQCKoEtNVhq.8xa85xQk4TpT 9r5VE4SM0fEFDFqbiQcOjyaB_PIMIWYDc_44TIw-- X-Yahoo-SMTP: u5BKR6OswBC_iZJVfGRoMkTIpc8pEA4- X-Rocket-Received: from [10.73.160.242] (sean_bruno@209.131.62.116 with ) by smtp224.mail.ne1.yahoo.com with SMTP; 19 Aug 2013 22:57:10 +0000 UTC Subject: zfs mount prior to rc.conf evaluations From: Sean Bruno To: freebsd-fs@freebsd.org Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-2Y6I1n8QJQbTaWge+GeU" Date: Mon, 19 Aug 2013 15:57:10 -0700 Message-ID: <1376953030.1483.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: sbruno@freebsd.org List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 22:57:17 -0000 --=-2Y6I1n8QJQbTaWge+GeU Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable We have a few slightly goofy rc.conf variables that require /usr/bin/ to be mounted before rc.conf is evaluated, e.g: netwait_ip=3D"$(grep default /etc/start_if.* | awk '{print $4}')" This worked in our UFS world, but in ZFS land with zroot/usr/bin being a seperate mountpoint, its not mounted at the point that rc.conf is evaluated causing a few things to fail. This appears to be solved by applying http://www.freebsd.org/cgi/query-pr.cgi?pr=3D153666 But, is there a better way to do this? I *could* make zroot/usr and zroot/usr/bin just be part of zroot and not seperate mountpoints to solve the issue as well. Thoughts or alternative solutions? Sean --=-2Y6I1n8QJQbTaWge+GeU Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (FreeBSD) iQEcBAABAgAGBQJSEqK7AAoJEBkJRdwI6BaHUn0H/3erz9gXbTQ/wgLUjyHLA5+b 0RhBf6t4zGnjlD3MBuDblzLh1jCtl4P4BqBMJAzBNX0+lHFodlf5oYIepZYKU+A+ Qv79b2OX3q3Ff0R/5w4kI4CTYS0j1iS8dm4VhMXhZooz7lB+vIuMbTD4aD7nihFV qL8t40VSxCRnwKn8m3Z61HNLOXItyMKsCSdNUk16Rce9RQKILfNIVRsJA2aE6kTt 406rCdAcKru/Z83TuAjfJwprvLLSb+YMz5zPF89SGjmgJfRm2Q9GHyJul69YxeFh PNFBsP8E+eRaspt5MAuvN9EkLmSkFQ8lWEHqBwjmEYB3GvuUjWQckYnaRrU8pmU= =QKnP -----END PGP SIGNATURE----- --=-2Y6I1n8QJQbTaWge+GeU--