Your message dated Mon, 12 Dec 2005 11:47:06 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#334073: fixed in nstx 1.1-beta6-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 15 Oct 2005 12:24:07 +0000
>From [EMAIL PROTECTED] Sat Oct 15 05:24:07 2005
Return-path: <[EMAIL PROTECTED]>
Received: from pig.zood.org [194.242.112.24] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EQl55-00051U-00; Sat, 15 Oct 2005 05:24:07 -0700
Received: from bee.dooz.org (localhost [127.0.0.1])
        by pig.zood.org (Postfix) with ESMTP id 5F8AC4C0A1;
        Sat, 15 Oct 2005 14:24:06 +0200 (CEST)
Received: by bee.dooz.org (Postfix, from userid 100)
        id 69F844F0065; Sat, 15 Oct 2005 14:39:26 +0200 (CEST)
Received: by bee.dooz.org (Postfix, from userid 1000)
        id 50A4D4F0072; Sat, 15 Oct 2005 14:22:46 +0200 (CEST)
Date: Sat, 15 Oct 2005 14:22:46 +0200
From: Loic Minier <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: Please permit configuration of the tun device to ifup
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="ZGiS0Q5IWpPtfppv"
Content-Disposition: inline
X-Reportbug-Version: 3.17
Content-Transfer-Encoding: 7bit
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02


--ZGiS0Q5IWpPtfppv
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: nstx
Version: 1.1-beta6-2.1
Severity: wishlist
Tags: patch

        Hi,

 The attached patch permits choosing the name of the interface to ifup
 instead of forcing tun0.  I suggest you offer a way to execute some
 post-up commands, and remove the ifup calls instead though.

   Cheers,

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=3DISO-8859-15)

Versions of packages nstx depends on:
ii  adduser                       3.67.2     Add and remove users and gro=
ups
ii  libc6                         2.3.5-6    GNU C Library: Shared librar=
ies an

nstx recommends no packages.

-- no debconf information

--=20
Lo=EFc Minier <[EMAIL PROTECTED]>

--ZGiS0Q5IWpPtfppv
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="nstx-1.1-beta6-tun-any.diff"

diff -urN nstx-1.1-beta6.orig/debian/changelog nstx-1.1-beta6/debian/changelog
--- nstx-1.1-beta6.orig/debian/changelog        2005-10-15 14:02:39.000000000 
+0200
+++ nstx-1.1-beta6/debian/changelog     2005-10-15 14:12:04.000000000 +0200
@@ -1,3 +1,9 @@
+nstx (1.1-beta6-2.2) unstable; urgency=low
+
+  * Permit ifuping any interface instead of hardcoding tun0.
+
+ -- Loic Minier <[EMAIL PROTECTED]>  Sat, 15 Oct 2005 14:11:40 +0200
+
 nstx (1.1-beta6-2.1) unstable; urgency=high
 
   * Non-maintainer upload.
diff -urN nstx-1.1-beta6.orig/debian/nstx.default 
nstx-1.1-beta6/debian/nstx.default
--- nstx-1.1-beta6.orig/debian/nstx.default     2005-10-15 14:02:39.000000000 
+0200
+++ nstx-1.1-beta6/debian/nstx.default  2005-10-15 14:11:30.000000000 +0200
@@ -19,4 +19,4 @@
 #start_nstxcd=yes
 
 # uncomment to bring up tun0 automatically
-#ifup_tun0=yes
\ No newline at end of file
+#ifup_tun=tun0
diff -urN nstx-1.1-beta6.orig/debian/nstx.nstxcd.init 
nstx-1.1-beta6/debian/nstx.nstxcd.init
--- nstx-1.1-beta6.orig/debian/nstx.nstxcd.init 2005-10-15 14:02:39.000000000 
+0200
+++ nstx-1.1-beta6/debian/nstx.nstxcd.init      2005-10-15 14:20:22.000000000 
+0200
@@ -33,6 +33,10 @@
        start-stop-daemon --start -b -m --quiet --pidfile /var/run/$NAME.pid \
                --exec $DAEMON -- $NSTX_DOMAIN $NSTX_DNS_SERVER
        sleep 1;
+       if [ -n "$ifup_tun" ]; then
+           ifup "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifup tun0
        fi
@@ -43,6 +47,10 @@
        ;;
   stop)
        echo -n "Stopping $DESC: "
+       if [ -n "$ifup_tun" ]; then
+           ifdown "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifdown tun0
        fi
@@ -57,6 +65,10 @@
        #       just the same as "restart".
        #
        echo -n "Restarting $DESC: "
+       if [ -n "$ifup_tun" ]; then
+           ifdown "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifdown tun0
        fi
@@ -67,6 +79,10 @@
            start-stop-daemon --start -b -m --quiet --pidfile \
                /var/run/$NAME.pid --exec $DAEMON -- $NSTX_DOMAIN 
$NSTX_DNS_SERVER
            sleep 1;
+            if [ -n "$ifup_tun" ]; then
+                ifup "$ifup_tun"
+            fi
+            # for backward compatibility
            if [ "$ifup_tun0" = "yes" ]; then
                ifup tun0
            fi
diff -urN nstx-1.1-beta6.orig/debian/nstx.nstxd.init 
nstx-1.1-beta6/debian/nstx.nstxd.init
--- nstx-1.1-beta6.orig/debian/nstx.nstxd.init  2005-10-15 14:02:39.000000000 
+0200
+++ nstx-1.1-beta6/debian/nstx.nstxd.init       2005-10-15 14:15:08.000000000 
+0200
@@ -34,6 +34,10 @@
        start-stop-daemon --start -b -m --quiet --pidfile /var/run/$NAME.pid \
                --exec $DAEMON -- $NSTX_OPTIONS $NSTX_DOMAIN 
        sleep 1;
+       if [ -n "$ifup_tun" ]; then
+           ifup "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifup tun0
        fi
@@ -44,6 +48,10 @@
        ;;
   stop)
        echo -n "Stopping $DESC: "
+       if [ -n "$ifup_tun" ]; then
+           ifdown "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifdown tun0
        fi
@@ -58,6 +66,10 @@
        #       just the same as "restart".
        #
        echo -n "Restarting $DESC: "
+       if [ -n "$ifup_tun" ]; then
+           ifdown "$ifup_tun"
+       fi
+       # for backward compatibility
        if [ "$ifup_tun0" = "yes" ]; then
            ifdown tun0
        fi
@@ -68,6 +80,10 @@
            start-stop-daemon --start -b -m --quiet --pidfile \
                /var/run/$NAME.pid --exec $DAEMON -- $NSTX_OPTIONS $NSTX_DOMAIN
            sleep 1;
+            if [ -n "$ifup_tun" ]; then
+                ifup "$ifup_tun"
+            fi
+            # for backward compatibility
            if [ "$ifup_tun0" = "yes" ]; then
                ifup tun0
            fi

--ZGiS0Q5IWpPtfppv--

---------------------------------------
Received: (at 334073-close) by bugs.debian.org; 12 Dec 2005 19:57:20 +0000
>From [EMAIL PROTECTED] Mon Dec 12 11:57:20 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1Eltda-0005Fz-JJ; Mon, 12 Dec 2005 11:47:06 -0800
From: Matthew Garrett <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.60 $
Subject: Bug#334073: fixed in nstx 1.1-beta6-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 12 Dec 2005 11:47:06 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
        HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: nstx
Source-Version: 1.1-beta6-3

We believe that the bug you reported is fixed in the latest version of
nstx, which is due to be installed in the Debian FTP archive:

nstx_1.1-beta6-3.diff.gz
  to pool/main/n/nstx/nstx_1.1-beta6-3.diff.gz
nstx_1.1-beta6-3.dsc
  to pool/main/n/nstx/nstx_1.1-beta6-3.dsc
nstx_1.1-beta6-3_i386.deb
  to pool/main/n/nstx/nstx_1.1-beta6-3_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthew Garrett <[EMAIL PROTECTED]> (supplier of updated nstx package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon, 12 Dec 2005 19:28:09 +0000
Source: nstx
Binary: nstx
Architecture: source i386
Version: 1.1-beta6-3
Distribution: unstable
Urgency: low
Maintainer: Matthew Garrett <[EMAIL PROTECTED]>
Changed-By: Matthew Garrett <[EMAIL PROTECTED]>
Description: 
 nstx       - Tunnel IP over DNS
Closes: 299435 307489 307769 334073
Changes: 
 nstx (1.1-beta6-3) unstable; urgency=low
 .
   * Apply patch to fix crashes when looking up the tunnel domain
     (closes: #307489)
   * Allow the tunnel being brought up to be configured (closes: #334073)
   * Attempt to automatically grab a DNS server (closes: #307769)
   * Add NSTX_IFACE string in /etc/default/nstx to allow binding to a
     specific interface on nstxd startup (closes: #299435)
Files: 
 cbf0abf29781e76cbe1a747626cd99b7 565 net optional nstx_1.1-beta6-3.dsc
 b74c4d4fc0c3628d3d60f1466c36642b 7632 net optional nstx_1.1-beta6-3.diff.gz
 81de73091cad744fe2c593dba870d0ec 21556 net optional nstx_1.1-beta6-3_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFDndEE7Hkv8l1YiTsRAnSSAKCOvO/pw51CAuW/M+DsIu6MicBvxwCcC447
cMi5G5XcnKphWNCp7BofDmI=
=kvQ8
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to