Package: ipvsadm
Version: 1:1.28-3
Hi,
Here's a followup for #649106, since that bug has already been archived.
Despite the fix for Jessie (great!), ipvsadm in testing/unstable is
still non-functional. Would you mind applying the same fix (removing the
incorrect duplicate --syncid) for the package in unstable? The patch for
ipvsadm.init is attached.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=649106#58
Also, can you please push your packaging changes to the git repo
mentioned in the packaging info?
(https://github.com/formorer/pkg-ipvsadm.git)? I also don't mind fixing,
testing and sending a pull request on it to help, but then I need to be
able to work on top of your work. :-)
Thanks!
--
Hans van Kranenburg - System / Network Engineer
Mendix | Driving Digital Innovation | www.mendix.com
--- ipvsadm-1.28/debian/ipvsadm.init.orig 2015-12-24 16:38:55.112526068 +0100
+++ ipvsadm-1.28/debian/ipvsadm.init 2015-12-24 16:39:28.492994021 +0100
@@ -29,17 +29,14 @@
case $DAEMON in
master|backup)
log_daemon_msg "Starting IPVS Connection Synchronization Daemon" "$DAEMON"
- $IPVSADM --syncid $SYNCID --start-daemon $DAEMON --mcast-interface \
- $IFACE --syncid $SYNCID || log_end_msg 1
+ $IPVSADM --start-daemon $DAEMON --mcast-interface $IFACE --syncid $SYNCID || log_end_msg 1
log_end_msg 0
;;
both)
log_daemon_msg "Starting IPVS Connection Synchronization Daemon" "master"
- $IPVSADM --syncid $SYNCID --start-daemon master --mcast-interface \
- $IFACE --syncid $SYNCID || FAILURE=1
+ $IPVSADM --start-daemon master --mcast-interface $IFACE --syncid $SYNCID || FAILURE=1
log_progress_msg "backup"
- $IPVSADM --syncid $SYNCID --start-daemon backup --mcast-interface \
- $IFACE --syncid $SYNCID || FAILURE=1
+ $IPVSADM --start-daemon backup --mcast-interface $IFACE --syncid $SYNCID || FAILURE=1
if [ "$FAILURE" -eq 1 ]
then
log_end_msg 1