[Piuparts-commits] rev 275 - in trunk: . debian

Holger Levsen holger at alioth.debian.org
Wed Mar 18 00:45:01 UTC 2009


Author: holger
Date: 2009-03-18 00:45:01 +0000 (Wed, 18 Mar 2009)
New Revision: 275

Modified:
   trunk/TODO
   trunk/debian/changelog
   trunk/piuparts.py
Log:
ignore modifications of /etc/shadow* as /etc/passwd* and /etc/group* are
ignored too.

Modified: trunk/TODO
===================================================================
--- trunk/TODO	2009-03-17 21:21:28 UTC (rev 274)
+++ trunk/TODO	2009-03-18 00:45:01 UTC (rev 275)
@@ -26,6 +26,8 @@
 - upgrade-reports should have a list of available arch and list packages 
   only available on untested archs in a new state "(depends-)not-available-on-tested-archs"
 
+- update-reports should generate source centered overview pages for packages
+
 - master should (per default) only schedule packages which are not available 
   on the master arch to slaves of different archs -> "schedule-evenly-to-slaves = no"
 

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2009-03-17 21:21:28 UTC (rev 274)
+++ trunk/debian/changelog	2009-03-18 00:45:01 UTC (rev 275)
@@ -4,6 +4,8 @@
     - add check whether scriptsdir exits, to fail gracefully if not. 
     - copy scriptsdir to chroot also when doing upgrade tests.
     - ignore modifications of /var/lib/dpkg/triggers/*
+    - ignore modifications of /etc/shadow* as /etc/passwd* and /etc/group* are
+      ignored too.
     - configure apt in chroots to not install recommends and suggests.
     - add support for scanning for packages in changes files, thanks to Andres
       Mejia for the patch. (Closes: #352940)

Modified: trunk/piuparts.py
===================================================================
--- trunk/piuparts.py	2009-03-17 21:21:28 UTC (rev 274)
+++ trunk/piuparts.py	2009-03-18 00:45:01 UTC (rev 275)
@@ -130,6 +130,7 @@
         self.scriptsdir = None
         self.keep_tmpdir = False
         self.single_changes_list = False
+        # limit output of logfiles to the last megabyte:
         self.max_command_output_size = 1024 * 1024
         self.args_are_package_files = True
         self.debian_mirrors = []
@@ -181,6 +182,8 @@
             "/etc/passwd",
             "/etc/passwd-",
             "/etc/printcap",
+            "/etc/shadow",
+            "/etc/shadow-",
             "/etc/shells",
             "/etc/skel/.zshrc",
             "/home/ftp",




More information about the Piuparts-commits mailing list