From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C138B1387B1 for ; Wed, 18 Dec 2013 03:10:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9EC1E0AF3; Wed, 18 Dec 2013 03:10:09 +0000 (UTC) Received: from qmta10.westchester.pa.mail.comcast.net (qmta10.westchester.pa.mail.comcast.net [76.96.62.17]) by pigeon.gentoo.org (Postfix) with ESMTP id 1A354E0AF3 for ; Wed, 18 Dec 2013 03:10:08 +0000 (UTC) Received: from omta23.westchester.pa.mail.comcast.net ([76.96.62.74]) by qmta10.westchester.pa.mail.comcast.net with comcast id 2qZZ1n0011c6gX85ArA86j; Wed, 18 Dec 2013 03:10:08 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta23.westchester.pa.mail.comcast.net with comcast id 2rA71n00J152l3L3jrA87g; Wed, 18 Dec 2013 03:10:08 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id D1399D8BA2B; Tue, 17 Dec 2013 19:10:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387336206; bh=X80iDlIlJN2J97ZOKSjK8KERQi5CwLtgU0x93kpuDXI=; h=Date:From:To:Subject:References:In-Reply-To; b=RY1NZYPVRfGgyWtlgIsL+/m93J2TGH4HVjIs7uv9PfLoDgUVk+xdlelMuGjF81t9+ vvjqNLGTbMAsfL0dB1BeGM0KfjZOMusW/oJL53epeaZXEeTbeTY1DnbHKazmrEYmpX ygo5nIvoMTZ2xgFRLuJctcrF8Kf5fb2wdQgfvXWQ= Date: Tue, 17 Dec 2013 19:10:06 -0800 From: "W. Trevor King" To: gentoo-catalyst@lists.gentoo.org Subject: Re: [gentoo-catalyst] [PATCH 1/2] modules/generic_stage_target.py: USE portdir, distdir,... instead of paths for keys Message-ID: <20131218031006.GC25409@odin.tremily.us> References: <1387328847-25840-1-git-send-email-dolsen@gentoo.org> <1387328847-25840-2-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mJozIRmlDRkE95ph" Content-Disposition: inline In-Reply-To: <1387328847-25840-2-git-send-email-dolsen@gentoo.org> OpenPGP: id=39A2F3FA2AB17E5D8764F388FC29BDCDF15F5BE8; url=http://tremily.us/pubkey.txt User-Agent: Mutt/1.5.22 (2013-10-16) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387336208; bh=OJItR7SSC4sJ6I3+bIhzxffLkNk0AwUZMN3v2Ikn8No=; h=Received:Received:Received:Date:From:To:Subject:Message-ID: MIME-Version:Content-Type; b=pZS4W9dqKkc1WIwDLEWxZsk4oK7ciKSiL1DxcuB0Nuox6PftFVGtHXkielxq3jsBM 4RSym0oCmJcxwkf7YlCwbRFoBt96/T66nYbdGPYE6ITu0x9i1W1uMkVv79PTN8/fDY VOShf5DiuQwP7sz/vkIPbXrhyHwOQdW7ZFhC4tukeJKiaX0V8nVxLqJx3N4WBQosO2 clbc/EkRJXHEkuKdQj/IO3wP1H5NCVjLVXnkheRnYJW2d9Vi5Pratgy21Bl9p5ULph mWXHJdwuA28qqttcBl/kiA+Tq8VBvi0L2IamEOYlUUF7wvGrkVKVUbfE0gK28a5O2/ K86DrBu4aGF7A== X-Archives-Salt: 99910fd4-07d7-489b-b0ce-ad583cf76736 X-Archives-Hash: 60f23143ff85fbba6d9c7577a4f7b88e --mJozIRmlDRkE95ph Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 17, 2013 at 05:07:26PM -0800, Brian Dolbec wrote: > if "SNAPCACHE" in self.settings: > - self.mounts=3D["/proc","/dev","/usr/portage","/usr/portage/distfiles"= ,"/var/tmp/portage"] > - self.mountmap=3D{"/proc":"/proc","/dev":"/dev","devpts":"/dev/pts", > - "/usr/portage":self.settings["snapshot_cache_path"]+"/portage",\ > - "/usr/portage/distfiles":self.settings["distdir"],"/var/tmp/portage"= :"tmpfs"} > + self.mounts=3D["proc", "dev", "portdir", "distdir", "port_tmpdir"] > + self.mountmap=3D{"proc":"/proc", "dev":"/dev", "devpts":"/dev/pts", > + "portdir":self.settings["snapshot_cache_path"]+"/portage",\ > + "distdir":self.settings["distdir"],"port_tmpdir":"tmpfs"} > else: > self.mounts =3D ["proc", "dev", "distdir", "port_tmpdir"] > self.mountmap =3D {"proc":"/proc", "dev":"/dev", "devpts":"/dev/pts", Where does /usr/portage come from if SNAPCACHE is not enabled? Is it just bind-mounted from the host's /usr/portage? Cheers, Trevor --=20 This email may be signed or encrypted with GnuPG (http://www.gnupg.org). For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy --mJozIRmlDRkE95ph Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAEBAgAGBQJSsRIMAAoJEKKfehoaNkbtiugP/1NTIl4IpglFt4fVEetqFEAZ 1ur+Jdsjs/TfivbTS8L7TaBAcnFT+bMRRlpOk5Jw+yaCyh1NDOmUsX+DXC1E5WSP HC/y75ttyh1WfK5afE32wbgGQ8/hXHsnvmkKXkoJR0FFzfRLZ5X1SLY/EYjncbWl yl99Aej1RUprgWegZAs6r1+ylLk1E88ustbTr5+KTbmCOirx1hJT/E2lUi3cSwQv K39oT13oAnfT0/hqmc48gsp/0ZlI4am8ujgxUnOH6y116k2mwwDvGbvrNlt10lqO 0wUhK70oZati01flKzfv7RtCqAX7QpuczWgbkDF8+htJkoCjRVLam10XuEcTVfKT O2da1JzcCw6Ah2TRNlOmNus1UF7L8ujQkWVw9XYmIRfZX7kbUGqsBKpmKuTFRCD8 kl6EhY3gJz+HwZ5t1Dpwrxs13aNqabS588bivjgdGXi7uq/u3kEXW1r2iEVccMBl xnFtmQUs3B7kxjZXftujgAe6lVFMwGTCtxpXphYZnWuFO8qzY198JMlOtcMgp25z iz9D61N5+2O4nWCedJj7OaW6985QrnpelaOSKhj79TX/jEoGaUuPTrkRRmw/Vpht +Yb8CA4UgUumdoJ9uwVaIfy730wo/r5W0bRAd7kiun8Wh38f35qGJLwk3IMwUj3W GEcwA666ye1q2M+436Nf =K8PR -----END PGP SIGNATURE----- --mJozIRmlDRkE95ph--