tags 398385 + patch
thanks
Hi,
Attached is the diff for my libapache-mod-tsunami 3.0-1.1 NMU, currently
in DELAYED/7-day.
--
Homepage: http://www.sesse.net/
diff -Nru /tmp/7qQ2chlh9m/libapache-mod-tsunami-3.0/debian/changelog
/tmp/OsGAM0Qzz8/libapache-mod-tsunami-3.0/debian/changelog
--- /tmp/7qQ2chlh9m/libapache-mod-tsunami-3.0/debian/changelog 2006-11-14
02:50:32.000000000 +0100
+++ /tmp/OsGAM0Qzz8/libapache-mod-tsunami-3.0/debian/changelog 2006-11-14
02:50:32.000000000 +0100
@@ -1,3 +1,12 @@
+libapache-mod-tsunami (3.0-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Check for the existence of /usr/sbin/apache before trying to add modules
+ to the existing Apache configuration; makes the package installable
+ when apache is not installed. (Closes: #398385)
+
+ -- Steinar H. Gunderson <[EMAIL PROTECTED]> Tue, 14 Nov 2006 02:47:17 +0100
+
libapache-mod-tsunami (3.0-1) unstable; urgency=low
* New upstream release.
diff -Nru /tmp/7qQ2chlh9m/libapache-mod-tsunami-3.0/debian/postinst
/tmp/OsGAM0Qzz8/libapache-mod-tsunami-3.0/debian/postinst
--- /tmp/7qQ2chlh9m/libapache-mod-tsunami-3.0/debian/postinst 2006-11-14
02:50:32.000000000 +0100
+++ /tmp/OsGAM0Qzz8/libapache-mod-tsunami-3.0/debian/postinst 2006-11-14
02:50:32.000000000 +0100
@@ -1,7 +1,7 @@
#!/bin/sh
if [ "$1" = "configure" ]; then
- if [ -x /usr/sbin/modules-config ]; then
+ if [ -x /usr/sbin/modules-config ] && [ -x /usr/sbin/apache ]; then
/usr/sbin/modules-config apache enable mod_tsunami
fi
fi