gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: fix #7265: ensure Debian package


From: gnunet
Subject: [taler-exchange] branch master updated: fix #7265: ensure Debian package cleans up nicely on purge
Date: Sun, 03 Jul 2022 13:44:42 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 84c78612 fix #7265: ensure Debian package cleans up nicely on purge
84c78612 is described below

commit 84c78612f3bdf24b42984451352af146da4576c2
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Jul 3 13:44:35 2022 +0200

    fix #7265: ensure Debian package cleans up nicely on purge
---
 debian/taler-exchange.postrm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/debian/taler-exchange.postrm b/debian/taler-exchange.postrm
index 6c31a459..6488d268 100644
--- a/debian/taler-exchange.postrm
+++ b/debian/taler-exchange.postrm
@@ -7,13 +7,16 @@ if [ -f /usr/share/debconf/confmodule ]; then
 fi
 
 case "${1}" in
-purge) ;;
-remove | upgrade | failed-upgrade | abort-install | abort-upgrade | disappear) 
;;
+purge)
+    rm -rf /var/lib/taler/exchange-offline /var/lib/taler/exchange-secmod-*
+    ;;
 
+remove | upgrade | failed-upgrade | abort-install | abort-upgrade | disappear)
+    ;;
 *)
-  echo "postrm called with unknown argument \`${1}'" >&2
-  exit 1
-  ;;
+    echo "postrm called with unknown argument \`${1}'" >&2
+    exit 1
+    ;;
 esac
 
 #DEBHELPER#

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]