r15865 - packages/trunk/pokerth/debian

Markus Koschany apo at moszumanska.debian.org
Thu Sep 8 01:38:22 UTC 2016


Author: apo
Date: 2016-09-08 01:38:22 +0000 (Thu, 08 Sep 2016)
New Revision: 15865

Modified:
   packages/trunk/pokerth/debian/changelog
   packages/trunk/pokerth/debian/pokerth-server.postrm
Log:
Release pokerth 1.1.1-5


Modified: packages/trunk/pokerth/debian/changelog
===================================================================
--- packages/trunk/pokerth/debian/changelog	2016-08-23 20:53:14 UTC (rev 15864)
+++ packages/trunk/pokerth/debian/changelog	2016-09-08 01:38:22 UTC (rev 15865)
@@ -1,3 +1,12 @@
+pokerth (1.1.1-5) unstable; urgency=medium
+
+  * Team upload.
+  * pokerth-server.postrm: Check for existence of directory
+    /var/games/pokerth-server.
+    Thanks to Andreas Beckmann for the report. (Closes: #836950)
+
+ -- Markus Koschany <apo at debian.org>  Thu, 08 Sep 2016 03:01:50 +0200
+
 pokerth (1.1.1-4) unstable; urgency=medium
 
   * Team upload.

Modified: packages/trunk/pokerth/debian/pokerth-server.postrm
===================================================================
--- packages/trunk/pokerth/debian/pokerth-server.postrm	2016-08-23 20:53:14 UTC (rev 15864)
+++ packages/trunk/pokerth/debian/pokerth-server.postrm	2016-09-08 01:38:22 UTC (rev 15865)
@@ -4,8 +4,10 @@
 
 
 if [ "$1" = "purge" ] ; then
-    rm -r /var/games/pokerth-server
-    rmdir --ignore-fail-on-non-empty /var/games
+   if [ -d "/var/games/pokerth-server" ]; then
+       rm -r /var/games/pokerth-server
+   fi
+   rmdir --ignore-fail-on-non-empty /var/games
 fi
 
 #DEBHELPER#




More information about the Pkg-games-commits mailing list