Bump version to 0.2.2
[snf-image-creator] / image_creator / os_type / unix.py
index 1e74668..2cd8452 100644 (file)
@@ -43,8 +43,8 @@ class Unix(OSBase):
         '.bash_history',
         '.gnupg',
         '.ssh',
         '.bash_history',
         '.gnupg',
         '.ssh',
-        '.mozilla',
-        '.thunderbird'
+        '.kamakirc',
+        '.kamaki.history'
     ]
 
     def __init__(self, rootdev, ghandler, output):
     ]
 
     def __init__(self, rootdev, ghandler, output):
@@ -202,5 +202,7 @@ class Unix(OSBase):
                 fname = "%s/%s" % (homedir, data)
                 if self.g.is_file(fname):
                     self.g.scrub_file(fname)
                 fname = "%s/%s" % (homedir, data)
                 if self.g.is_file(fname):
                     self.g.scrub_file(fname)
+                elif self.g.is_dir(fname):
+                    self.foreach_file(fname, self.g.scrub_file, ftype='r')
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
 
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :