commit: bb1aad33b000e39689a66243bbb446c6c25c1e88
Author: Brian Dolbec dolsen <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 20 16:30:19 2018 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Fri Jul 20 16:36:15 2018 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=bb1aad33
stagebase.py: Remove /root/* from default cleanables
This was not something that should need to be cleaned.
With ccache removed, it is safe to leave alone.
Livecd images may have a .bashrc to start to start the desktop, etc..
Signed-off-by: Brian Dolbec dolsen <dolsen <AT> gentoo.org>
catalyst/base/stagebase.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index d30ed5ce..a66229c2 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -465,7 +465,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
def set_cleanables(self):
self.settings["cleanables"] = ["/etc/resolv.conf",
"/var/tmp/*", "/tmp/*",
- "/root/*", self.settings["repo_basedir"] + "/" +
+ self.settings["repo_basedir"] + "/" +
self.settings["repo_name"]]
def set_snapshot_path(self):