summaryrefslogtreecommitdiff
path: root/doc/todo
diff options
context:
space:
mode:
authorJoey Hess2017-03-24 13:57:47 -0400
committerJoey Hess2017-03-24 13:58:13 -0400
commit25114d92a53f519aaf874dc0df9bfdd9f8dd9964 (patch)
tree244a674c4b164362f053d173d490b67870f04b01 /doc/todo
parentb738aa54eed266d72669bcdafdbba7df6bc795fa (diff)
fix diskimage finalization bug
* Fix bug when using setContainerProps with a chroot that prevented properties added to a chroot that way from being seen when propellor was running inside the chroot. This affected disk image creation, and possibly other things that use chroots. The problem was, propagateChrootInfo was being passed the initial version of the Chroot, but then the Chroot got more properties added, and so those were not recorded in the _chroot info. Fix was simply to make InfoPropagator be passed the Chroot as an additional parameter, so Chroot.provisioned' can pass in the final Chroot to it.
Diffstat (limited to 'doc/todo')
-rw-r--r--doc/todo/bug_in_diskimage_finalization.mdwn2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/todo/bug_in_diskimage_finalization.mdwn b/doc/todo/bug_in_diskimage_finalization.mdwn
index 288e96f2..3dc9c437 100644
--- a/doc/todo/bug_in_diskimage_finalization.mdwn
+++ b/doc/todo/bug_in_diskimage_finalization.mdwn
@@ -9,3 +9,5 @@ ensure.
I have not yet been able to determine what broke it -- I'm sure it used to
work. --[[Joey]]
+
+> Figured it out, fixed [[done]] --[[Joey]]