Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Cc: Brian Dolbec <dolsen@g.o>
Subject: [gentoo-catalyst] [PATCH 4/6] Fix a missed self.mounts key change from a path as key.
Date: Sun, 29 Dec 2013 01:57:56
Message-Id: 1388282230-3563-5-git-send-email-dolsen@gentoo.org
In Reply to: [gentoo-catalyst] Patches to fix rebased patches already applied to current master by Brian Dolbec
1 original patch: 27b751ffd9594e0128a3d70f83c7af18dab03838
2 ---
3 modules/generic_stage_target.py | 3 ++-
4 1 file changed, 2 insertions(+), 1 deletion(-)
5
6 diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py
7 index f881ca0..ce28ab8 100644
8 --- a/modules/generic_stage_target.py
9 +++ b/modules/generic_stage_target.py
10 @@ -905,7 +905,8 @@ class generic_stage_target(generic_target):
11 os.makedirs(self.mountmap[x],0755)
12
13 src=self.mountmap[x]
14 - if "SNAPCACHE" in self.settings and x == "/usr/portage":
15 + #print "bind(); src =", src
16 + if "SNAPCACHE" in self.settings and x == "portdir":
17 self.snapshot_lock_object.read_lock()
18 if os.uname()[0] == "FreeBSD":
19 if src == "/dev":
20 --
21 1.8.3.2

Replies

Subject Author
Re: [gentoo-catalyst] [PATCH 4/6] Fix a missed self.mounts key change from a path as key. "W. Trevor King" <wking@×××××××.us>