[interchange-cvs] interchange - racke modified 4 files

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Tue Jan 14 17:39:00 2003


User:      racke
Date:      2003-01-14 22:38:39 GMT
Modified:  .        WHATSNEW
Modified:  debian   CREDITS.debian changelog interchange.postinst
Log:
specify unix and inet modes explicitly if user selects both

Revision  Changes    Path
2.85      +2 -0      interchange/WHATSNEW


rev 2.85, prev_rev 2.84
Index: WHATSNEW
===================================================================
RCS file: /var/cvs/interchange/WHATSNEW,v
retrieving revision 2.84
retrieving revision 2.85
diff -u -r2.84 -r2.85
--- WHATSNEW	14 Jan 2003 13:23:03 -0000	2.84
+++ WHATSNEW	14 Jan 2003 22:38:38 -0000	2.85
@@ -15,6 +15,8 @@
 
 * Allow selection of traffic setting with debconf and interchangeconfig.
 
+* Specify unix and inet modes explicitly if user selects both. 
+
 * Check if /etc/init.d/interchange and /usr/sbin/interchangeconfig are 
   executable in interchange-ui maintainer scripts.
 



1.5       +5 -0      interchange/debian/CREDITS.debian


rev 1.5, prev_rev 1.4
Index: CREDITS.debian
===================================================================
RCS file: /var/cvs/interchange/debian/CREDITS.debian,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CREDITS.debian	25 Mar 2002 13:15:40 -0000	1.4
+++ CREDITS.debian	14 Jan 2003 22:38:39 -0000	1.5
@@ -9,3 +9,8 @@
 
 Michael Bilow <mike@bilow.com> for:
 - providing an 400mod_interchange.info
+
+Doug Alcorn <doug@lathi.net> for:
+- reporting that an empty mode no longer triggers both unix and inet mode
+  in 4.9.x
+



2.28      +3 -0      interchange/debian/changelog


rev 2.28, prev_rev 2.27
Index: changelog
===================================================================
RCS file: /var/cvs/interchange/debian/changelog,v
retrieving revision 2.27
retrieving revision 2.28
diff -u -r2.27 -r2.28
--- changelog	14 Jan 2003 15:21:40 -0000	2.27
+++ changelog	14 Jan 2003 22:38:39 -0000	2.28
@@ -2,6 +2,9 @@
 
   * new upstream release
   * new debconf option for traffic, use low traffic as default
+  * specify unix and inet modes explicitly if user selects both (thanks to
+    Doug Alcorn <doug@lathi.net> for reporting the changed behaviour in
+    4.9.x)
   * check if /etc/init.d/interchange and /usr/sbin/interchangeconfig are
     executable in interchange-ui maintainer scripts
   * UPGRADE and README.cvs added to interchange.docs



2.13      +2 -2      interchange/debian/interchange.postinst


rev 2.13, prev_rev 2.12
Index: interchange.postinst
===================================================================
RCS file: /var/cvs/interchange/debian/interchange.postinst,v
retrieving revision 2.12
retrieving revision 2.13
diff -u -r2.12 -r2.13
--- interchange.postinst	14 Jan 2003 11:46:34 -0000	2.12
+++ interchange.postinst	14 Jan 2003 22:38:39 -0000	2.13
@@ -75,9 +75,9 @@
 case "$RET" in
 	"unix mode") MODE=--unix;;
 	"internet mode") MODE=--inetmode;;
-	"both") MODE="";;
+	"both") MODE="--unix --inetmode";;
 esac
-echo MODE=$MODE >> $INITCFG
+echo MODE=\"$MODE\" >> $INITCFG
 echo USER=$USER >> $INITCFG
 echo GROUP=$GROUP >> $INITCFG