[Pkg-mysql-commits] r1579 - mysql-proxy/trunk/debian

Norbert Tretkowski nobse at alioth.debian.org
Sat Apr 25 10:08:49 UTC 2009


Author: nobse
Date: 2009-04-25 10:08:48 +0000 (Sat, 25 Apr 2009)
New Revision: 1579

Added:
   mysql-proxy/trunk/debian/postinst
   mysql-proxy/trunk/debian/postrm
Modified:
   mysql-proxy/trunk/debian/changelog
Log:
Call ldconfig.

Modified: mysql-proxy/trunk/debian/changelog
===================================================================
--- mysql-proxy/trunk/debian/changelog	2009-04-25 09:56:00 UTC (rev 1578)
+++ mysql-proxy/trunk/debian/changelog	2009-04-25 10:08:48 UTC (rev 1579)
@@ -3,6 +3,7 @@
   * Now maintained by Debian MySQL Maintainers.
   * Update Standards-Version to 3.8.1, no changes required.
   * Drop empty /usr/libexec/ directory.
+  * Call ldconfig in postinst and postrm.
 
  -- Norbert Tretkowski <nobse at debian.org>  Fri, 24 Apr 2009 23:50:16 +0200
 

Added: mysql-proxy/trunk/debian/postinst
===================================================================
--- mysql-proxy/trunk/debian/postinst	                        (rev 0)
+++ mysql-proxy/trunk/debian/postinst	2009-04-25 10:08:48 UTC (rev 1579)
@@ -0,0 +1,11 @@
+#! /bin/sh
+case "$1" in
+  configure)
+
+  ldconfig
+  ;;
+esac
+
+#DEBHELPER#
+
+exit 0

Added: mysql-proxy/trunk/debian/postrm
===================================================================
--- mysql-proxy/trunk/debian/postrm	                        (rev 0)
+++ mysql-proxy/trunk/debian/postrm	2009-04-25 10:08:48 UTC (rev 1579)
@@ -0,0 +1,6 @@
+#! /bin/sh
+ldconfig
+
+#DEBHELPER#
+
+exit 0




More information about the Pkg-mysql-commits mailing list