This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, 6.0 has been updated
       via  b64c0c913e6e686990a8d3283c1bf8fcab205544 (commit)
      from  7de24ad7ca9f4c05359d412cf7f95e609fe63f44 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=b64c0c913e6e686990a8d3283c1bf8fcab205544

commit b64c0c913e6e686990a8d3283c1bf8fcab205544
Author: Sylvain Beucler <[email protected]>
Date:   Thu Jun 25 16:59:34 2015 +0200

    debian: register lists uninstall script

diff --git a/src/debian/fusionforge-lists.prerm 
b/src/debian/fusionforge-lists.prerm
new file mode 100644
index 0000000..5c367fe
--- /dev/null
+++ b/src/debian/fusionforge-lists.prerm
@@ -0,0 +1,43 @@
+#!/bin/sh
+# prerm script for fusionforge
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <prerm> `remove'
+#        * <old-prerm> `upgrade' <new-version>
+#        * <new-prerm> `failed-upgrade' <old-version>
+#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
+#        * <deconfigured's-prerm> `deconfigure' `in-favour'
+#          <package-being-installed> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    remove)
+        if ! which forge_get_config >/dev/null; then exit 0; fi
+        $(forge_get_config source_path)/post-install.d/lists/lists.sh remove
+    ;;
+
+    upgrade|deconfigure)
+    ;;
+
+    failed-upgrade)
+    ;;
+
+    *)
+        echo "prerm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0

-----------------------------------------------------------------------

Summary of changes:
 src/debian/{fusionforge-db-local.prerm => fusionforge-lists.prerm} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 copy src/debian/{fusionforge-db-local.prerm => fusionforge-lists.prerm} (92%)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to