Author: apo Date: 2016-09-08 19:17:09 +0000 (Thu, 08 Sep 2016) New Revision: 15871
Modified: packages/trunk/pokerth/debian/changelog packages/trunk/pokerth/debian/pokerth-server.postrm Log: Release pokerth 1.1.1-6 Modified: packages/trunk/pokerth/debian/changelog =================================================================== --- packages/trunk/pokerth/debian/changelog 2016-09-08 06:10:31 UTC (rev 15870) +++ packages/trunk/pokerth/debian/changelog 2016-09-08 19:17:09 UTC (rev 15871) @@ -1,3 +1,10 @@ +pokerth (1.1.1-6) unstable; urgency=medium + + * Team upload. + * pokerth-server.postrm: Check for existence of /var/games too. + + -- Markus Koschany <[email protected]> Thu, 08 Sep 2016 20:43:16 +0200 + pokerth (1.1.1-5) unstable; urgency=medium * Team upload. Modified: packages/trunk/pokerth/debian/pokerth-server.postrm =================================================================== --- packages/trunk/pokerth/debian/pokerth-server.postrm 2016-09-08 06:10:31 UTC (rev 15870) +++ packages/trunk/pokerth/debian/pokerth-server.postrm 2016-09-08 19:17:09 UTC (rev 15871) @@ -7,7 +7,9 @@ if [ -d "/var/games/pokerth-server" ]; then rm -r /var/games/pokerth-server fi - rmdir --ignore-fail-on-non-empty /var/games + if [ -d "/var/games" ]; then + rmdir --ignore-fail-on-non-empty /var/games + fi fi #DEBHELPER# _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

