[Fai-commit] r5101 - trunk/debian

lange at alioth.debian.org lange at alioth.debian.org
Sat Sep 6 08:24:19 UTC 2008


Author: lange
Date: 2008-09-06 08:24:18 +0000 (Sat, 06 Sep 2008)
New Revision: 5101

Modified:
   trunk/debian/changelog
   trunk/debian/fai-client.postrm
Log:
fai-client.postrm: use rm -rf, we do so in other maintainer scripts as
well and /var/run/fai is probably the least critical place
(closes: #494423)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2008-09-06 08:17:04 UTC (rev 5100)
+++ trunk/debian/changelog	2008-09-06 08:24:18 UTC (rev 5101)
@@ -1,4 +1,4 @@
-fai (3.2.10~beta4) unstable; urgency=low
+fai (3.2.10~beta5) unstable; urgency=low
 
   * control: add build-depends-indep (closes: #497683),
     add cfengine2 as recommends to fai-client (closes: #442843),
@@ -34,8 +34,11 @@
     otherwise we do not get any errors when the grub call fails
   * setup-storage.8: Properly escape \ in literal environments (thanks,
     lintian)
-    
- -- Thomas Lange <lange at debian.org>  Fri,  5 Sep 2008 21:09:01 +0200
+  * fai-client.postrm: use rm -rf, we do so in other maintainer scripts as
+    well and /var/run/fai is probably the least critical place
+    (closes: #494423)
+      
+ -- Thomas Lange <lange at debian.org>  Sat, 06 Sep 2008 10:23:59 +0200
 
 fai (3.2.9) unstable; urgency=low
 

Modified: trunk/debian/fai-client.postrm
===================================================================
--- trunk/debian/fai-client.postrm	2008-09-06 08:17:04 UTC (rev 5100)
+++ trunk/debian/fai-client.postrm	2008-09-06 08:24:18 UTC (rev 5101)
@@ -4,8 +4,7 @@
 
 case "$1" in
     purge)
-	rm /var/run/fai/* 2>/dev/null || true
-	rmdir /var/run/fai || true
+	rm -rf /var/run/fai
         ;;
 esac
 




More information about the Fai-commit mailing list