Bug#547669: upgrade vuurmuur fails because of problem with init script

2009-09-21 Thread Tiger!P
Package: vuurmuur
Version: 0.7+debian-1
Severity: important

When I tried to upgrade vuurmuur to version vuurmuur_0.7+debian-2_i386 I got 
the following output:

Preparing to replace vuurmuur 0.7+debian-1 (using 
.../vuurmuur_0.7+debian-2_i386.deb) ...
Stopping Vuurmuur Firewall:
  - Stopping vuurmuur:kill: 147: Illegal option -n
invoke-rc.d: initscript vuurmuur, action "stop" failed.
dpkg: warning: old pre-removal script returned error exit status 2
dpkg - trying script from the new package instead ...
Stopping Vuurmuur Firewall:
  - Stopping vuurmuur:kill: 147: Illegal option -n
invoke-rc.d: initscript vuurmuur, action "stop" failed.
dpkg: error processing /var/cache/apt/archives/vuurmuur_0.7+debian-2_i386.deb 
(--unpack):
 subprocess new pre-removal script returned error exit status 2
update-rc.d: warning: vuurmuur start runlevel arguments (S) do not match LSB 
Default-Start values (1 2 3 4 5)
Starting Vuurmuur Firewall:
  - Loading modules: ip_tables iptable_filter iptable_mangle iptable_nat 
ip_conntrack ipt_state ip_conntrack_ftp ip_nat_ftp ip_queue.
  - Starting vuurmuur: already running.
  - Starting vuurmuur_log: already running.
Errors were encountered while processing:
 /var/cache/apt/archives/vuurmuur_0.7+debian-2_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

I think the upgrade should succeed normally.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i586)

Kernel: Linux 2.6.30-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages vuurmuur depends on:
ii  libc6   2.9-26   GNU C Library: Shared libraries
ii  libvuurmuur00.7+debian-2 netfilter frontend (library)

Versions of packages vuurmuur recommends:
ii  iptables1.4.4-2  administration tools for packet fi
ii  vuurmuur-conf   0.7+debian-2 netfilter frontend (ncurses GUI)

vuurmuur suggests no packages.

-- no debconf information

Tiger!P
-- 
A random quote:
De winnaar geeft nooit op, de opgever wint nooit.



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#529893: Related to bug 511099

2009-09-25 Thread Tiger!P
I think this bug is a result of bug 511099.
You can work around the problem by copying all files from
/usr/share/vuurmuur/services/ to /etc/vuurmuur/services

Tiger!P
-- 
A random quote:
Het is altijd de zwakste schakel die het begeeft.



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#547669: Patch for vuurmuur.init script

2009-10-31 Thread Tiger!P
Hello,

Here a patch for the vuurmuur.init script that causes the upgrade
problem.

Tiger!P
-- 
A random quote:
Zonder de verstandhouding te kennen, kan je geen goede conclusies maken.
--- vuurmuur.init.orig  2009-10-31 20:03:28.0 +0100
+++ vuurmuur.init   2009-10-31 20:03:47.0 +0100
@@ -102,7 +102,7 @@
 
if [ "$(pidof vuurmuur)" ]
then
-   kill -n INT $(pidof vuurmuur)
+   kill -s INT $(pidof vuurmuur)
 
echo " done."
else
@@ -114,7 +114,7 @@
 
if [ "$(pidof vuurmuur_log)" ]
then
-   kill -n INT $(pidof vuurmuur_log)
+   kill -s INT $(pidof vuurmuur_log)
 
echo " done."
else