Bug#899185: im-config: Does not work with kdialog
Package: im-config Version: 0.34-1 im-config does not work with kdialog because menulist_*() functions in im-config.common don't support it. Please apply the attached patch. Thanks. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: https://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA >From c40e3dd6e6d4ea21104150513a7c228f9fde5939 Mon Sep 17 00:00:00 2001 From: SATOH Fumiyasu Date: Sun, 20 May 2018 22:17:42 +0900 Subject: [PATCH] Fix kdialog support --- share/im-config.common | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/im-config.common b/share/im-config.common index 01ffa73..2a188a9 100644 --- a/share/im-config.common +++ b/share/im-config.common @@ -174,6 +174,8 @@ menulist_init () { if [ $IM_CONFIG_DIALOG = "console" ]; then # console printf "%s" "whiptail --title \"$IM_CONFIG_ID\" --radiolist \"$1\" 23 76 18" +elif [ "$KDE_FULL_SESSION" = true ] && [ -x /usr/bin/kdialog ]; then +printf "%s" "kdialog --title=\"$IM_CONFIG_ID\" --radiolist \"$1\"" else # GTK GUI printf "%s" "zenity --title=\"$IM_CONFIG_ID\" --width=600 --height=400 --text=\"$1\" --list --radiolist --column \"$2\" --column \"$3\" --column \"$4\"" @@ -188,6 +190,8 @@ menulist_add () { if [ $IM_CONFIG_DIALOG = "console" ]; then # console printf "%s" "$1 \"$2\" $3" +elif [ "$KDE_FULL_SESSION" = true ] && [ -x /usr/bin/kdialog ]; then +printf "%s" "$1 \"$2\" $3" else # GTK GUI if [ "x$3" = "xon" ]; then @@ -205,7 +209,7 @@ menulist_eval () { # console eval "$1" else -# GTK GUI +# KDE or GTK GUI eval "$1" 3>&2 2>/dev/null 1>&3 fi } -- 2.17.0
Bug#873475: ifupdown: wait-online.sh: Evaluate "$WAIT_ONLINE_IFACE"
Package: ifupdown Version: 0.8.24 Severity: normal Please apply the following patch. Thanks. From 856ab8570f7ccb7ddfa08803cc22ab6dafc37bb6 Mon Sep 17 00:00:00 2001 From: SATOH Fumiyasu Date: Mon, 28 Aug 2017 13:39:03 +0900 Subject: [PATCH] wait-online.sh: Evaluate "$WAIT_ONLINE_IFACE" --- wait-online.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wait-online.sh b/wait-online.sh index e69b1ac..27ea79a 100755 --- a/wait-online.sh +++ b/wait-online.sh @@ -28,7 +28,7 @@ ping6) ifup|iface|interface) up=false - if [ -z "WAIT_ONLINE_IFACE" ]; then + if [ -z "$WAIT_ONLINE_IFACE" ]; then auto_list="$(/sbin/ifquery -X lo --list)" hotplug_list="$(/sbin/ifquery -X lo --allow=hotplug --list)" if [ -n "$auto_list" ]; then -- 2.14.1 -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#873073: samba: smbd starts before interface is ready, listening only on localhost when "bind to interfaces only = yes"
Have you tried systemd-networkd-wait-online.service(8) or ifupdown-wait-online.service? -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#866245: dokuwiki: Invalid argument supplied for foreach() /usr/share/dokuwiki/lib/exe/js.php
Package: dokuwiki Version: 0.0.20160626.a-2 Severity: normal debian/add-ons/preload.php must be updated for newer DokuWiki release that includes the following changes: * Extendable config cascade for userstyles and userscript by Klap-in · Pull Request #954 · splitbrain/dokuwiki * https://github.com/splitbrain/dokuwiki/pull/954/files --- debian/add-ons/preload.php.dist 2016-02-25 23:02:29.0 +0900 +++ debian/add-ons/preload.php 2017-06-29 03:49:44.269455964 +0900 @@ -138,14 +138,14 @@ 'default' => DOKU_CONF.'users.auth.php', ), 'userstyle' => array( -'default' => DOKU_CONF.'userstyle.css', // 'default' was renamed to 'screen' on 2011-02-26, so will be deprecated in the next version -'screen' => DOKU_CONF.'userstyle.css', -'rtl' => DOKU_CONF.'userrtl.css', -'print' => DOKU_CONF.'userprint.css', -'feed'=> DOKU_CONF.'userfeed.css', -'all' => DOKU_CONF.'userall.css', +'default' => array(DOKU_CONF.'userstyle.css'), // 'default' was renamed to 'screen' on 2011-02-26, so will be deprecated in the next version +'screen' => array(DOKU_CONF.'userstyle.css'), +'rtl' => array(DOKU_CONF.'userrtl.css'), +'print' => array(DOKU_CONF.'userprint.css'), +'feed'=> array(DOKU_CONF.'userfeed.css'), +'all' => array(DOKU_CONF.'userall.css'), ), 'userscript' => array( -'default' => DOKU_CONF.'userscript.js' +'default' => array(DOKU_CONF.'userscript.js') ), ); See also: * Invalid argument supplied for foreach() /usr/share/dokuwiki/lib/exe/js.php · Issue #1726 · splitbrain/dokuwiki * https://github.com/splitbrain/dokuwiki/issues/1726 * Invalid argument supplied for foreach() · Issue #1664 · splitbrain/dokuwiki * https://github.com/splitbrain/dokuwiki/issues/1664 Regards, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#794126: plasma-widgets-addons: Digital clock widget does not show proper time
Hi! On Wed, 22 Mar 2017 16:47:37 +0900, Maximiliano Curia wrote: > > KDE 5 digital clock widget gets this bug when $TZ environment variable is > > set. I had TZ=JST-9 (it's Japan standard time) and looked this bug. > > Sorry that this took so long in getting back to you. > > What you mean here is that KDE honours a subset of values of the TZ > environment variable [1], right? As far as I know, kde supports the TZ=std > format, I think this is a qt functionality, I'm not really sure. I'm using plasma-* 4:5.8.4-1 now, and can not see this bug. I don't know what Plasma version fixed this bug. (maybe version 4:5.5.X?) Sorry. > Michael was this really the issue here? Is the issue still reproducible for > you? > > Btw, the digitalclock is part of the plasma-workspace package, locate > digitalclock and dpkg -S > /usr/share/plasma/plasmoids/org.kde.plasma.digitalclock can be of help to find > this out. > > Happy hacking, > > [1]: https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#857722: python-jinja2: Wrong changelog file is included
Package: python-jinja2 Version: 2.9.5-1 Severity: normal python-jinja2 package includes docs/changelog.rst as a changelog file. But it has the following content: $ zcat /usr/share/doc/python-jinja2/changelog.gz .. module:: jinja2 .. include:: ../CHANGES Please include CHANGES file instead. Thanks, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#854860: postfix: dynamicmaps.cf is NOT converted from Postfix 2.9 format
Not 2.9, but 2.X. Sorry.
Bug#854860: postfix: dynamicmaps.cf is NOT converted from Postfix 2.9 format
I'm sorry for the previous bad patch. Corrected. (Remove the suffix '.1.0.1' from the module names) From 798fe18329d63a8a163a90948ccbdc77161d43bd Mon Sep 17 00:00:00 2001 From: SATOH Fumiyasu Date: Sat, 11 Feb 2017 19:16:17 +0900 Subject: [PATCH] Convert intalled dynamicmaps.cf Fix a regression in the commit 629c47c61d22fd9a9825159ff403d2a9043ce676 --- debian/postfix.postinst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/debian/postfix.postinst b/debian/postfix.postinst index b413a50e..d2f4b055 100644 --- a/debian/postfix.postinst +++ b/debian/postfix.postinst @@ -293,6 +293,12 @@ if [ ! -f dynamicmaps.cf ]; then fi done < /usr/share/postfix/dynamicmaps.cf > dynamicmaps.cf chmod 644 dynamicmaps.cf +else +if [ -f /var/spool/postfix/dynamicmaps_3.0_transition ]; then + echo "Updating dynamicmaps.cf" + sed -i '/^tcp[[:space:]]/d; s/\/usr\/lib\/postfix\/dict_\([a-z]*\).so/postfix-\1.so/' dynamicmaps.cf + rm -f /var/spool/postfix/dynamicmaps_3.0_transition +fi fi # Remove from postfix postinst after stretch and uncomment in postfix-sqlite.postinst -- 2.11.0 -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#854860: postfix: dynamicmaps.cf is NOT converted from Postfix 2.9 format
Package: postfix Version: 3.1.3-3 Severity: important The postfix.postinst script in postfix-3.1.3-3 and later does NOT convert an old dynamicmaps.cf file because the commit 629c47c61d22fd9a9825159ff403d2a9043ce676 drops the conversion script. Please see the following patch. Thank you. From 98e3e0130ab093cb4340aadf8c7f36fe55fb28a7 Mon Sep 17 00:00:00 2001 From: SATOH Fumiyasu Date: Sat, 11 Feb 2017 19:16:17 +0900 Subject: [PATCH] Convert intalled dynamicmaps.cf Fix a regression in the commit 629c47c61d22fd9a9825159ff403d2a9043ce676 --- debian/postfix.postinst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/debian/postfix.postinst b/debian/postfix.postinst index b413a50e..004a26ae 100644 --- a/debian/postfix.postinst +++ b/debian/postfix.postinst @@ -293,6 +293,12 @@ if [ ! -f dynamicmaps.cf ]; then fi done < /usr/share/postfix/dynamicmaps.cf > dynamicmaps.cf chmod 644 dynamicmaps.cf +else +if [ -f /var/spool/postfix/dynamicmaps_3.0_transition ]; then + echo "Updating dynamicmaps.cf" + sed -i '/^tcp[[:space:]]/d; s/\/usr\/lib\/postfix\/dict_\([a-z]*\).so/postfix-\1.so.1.0.1/' dynamicmaps.cf + rm -f /var/spool/postfix/dynamicmaps_3.0_transition +fi fi # Remove from postfix postinst after stretch and uncomment in postfix-sqlite.postinst -- 2.11.0 -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#841221: mlterm: New upstream version 3.7.2
Package: mlterm Version: 3.5.0-1+b1 Severity: wishlist Please follow the new mlterm 3.7.2. Thanks, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#836229: vagrant: Configuring and enabling network interfaces fail on Red Hat guests
Package: vagrant Version: 1.8.5+dfsg-1 Severity: important 0012-plugins-don-t-abuse-require_relative.patch has a bug that results the following problem: $ vagrant up host0 ... ==> host0: Configuring and enabling network interfaces... /usr/share/vagrant/plugins/guests/redhat/cap/configure_networks.rb:4:in `require_relative': cannot load such file -- /usr/share/vagrant/lib/vagrant/util/template_renderer (LoadError) from /usr/share/vagrant/plugins/guests/redhat/cap/configure_networks.rb:4:in `' ... See the attached patch. Thank you. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA >From 750ead977e49365a0f7a4296046bf06133131401 Mon Sep 17 00:00:00 2001 From: SATOH Fumiyasu Date: Thu, 1 Sep 2016 03:11:26 +0900 Subject: [PATCH] 0012-plugins-don-t-abuse-require_relative.patch: Fix previous refreshing Configuring and enabling network interfaces fail on Red Hat guests: $ vagrant up ... ==> host5: Configuring and enabling network interfaces... /usr/share/vagrant/plugins/guests/redhat/cap/configure_networks.rb:4:in `require_relative': cannot load such file -- /usr/share/vagrant/lib/vagrant/util/template_renderer (LoadError) from /usr/share/vagrant/plugins/guests/redhat/cap/configure_networks.rb:4:in `' ... --- debian/patches/0012-plugins-don-t-abuse-require_relative.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/patches/0012-plugins-don-t-abuse-require_relative.patch b/debian/patches/0012-plugins-don-t-abuse-require_relative.patch index 4ce5299..24ecaf4 100644 --- a/debian/patches/0012-plugins-don-t-abuse-require_relative.patch +++ b/debian/patches/0012-plugins-don-t-abuse-require_relative.patch @@ -153,7 +153,7 @@ index 6cbc9ec..8f5f4c7 100644 require "tempfile" -require_relative "../../../../lib/vagrant/util/template_renderer" -+require_relative "vagrant/util/template_renderer" ++require "vagrant/util/template_renderer" module VagrantPlugins module GuestRedHat -- 2.9.3
Bug#825324: byobu: Byobu session closes on SSH disconnect
Fix a typo. On Thu, 26 May 2016 14:43:56 +0900, SATOH Fumiyasu wrote: > systemd-logind in systemd version 230 set KillUserProcesses=yes > by default. See the logind(5) man page for details. logind.conf(5). -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#825324: byobu: Byobu session closes on SSH disconnect
Hi, systemd-logind in systemd version 230 set KillUserProcesses=yes by default. See the logind(5) man page for details. Regards. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#815064: shellcheck: New upstream version 0.4.3
Package: shellcheck Version: 0.3.7-5 Severity: wishlist ShellCheck version 0.4.3 has been released. I think this version fixes many false-positive/-negative bugs. Please update the debian package. Thank you. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#807011: ksh: Conditional variable expansion problem in while loop
Hi, On Sat, 05 Dec 2015 08:03:32 +0900, Nicholas Bamber wrote: > It is not releveant how this works in other shells (or even other > versions of ksh). All that matters is whether this syntax is defined by the > POSIX standard. It's not even documented as a bash feature let alone a POSIX > standard. The POSIX standard defines ${parameter+word} behavior: http://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02 and old ksh 93s+20080202-1 (Debian jessie, squeeze) behaves as I and POSIX standard expected. > It may be of interest to you to be reminded that this version of ksh is > dead upstream, so even if I agreed it really was a problem it is very > possible the most I would do is tag it confirmed. > > As it is I believe you are trying to use an undocumented syntax that > just happens to do something you like in lots of other shells. I would > however be interested to know what YOU think the "${v+set}" syntax should do. No. I use the documented syntax. Regards, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#807011: ksh: Conditional variable expansion problem in while loop
Hi, > The problem seems to be that you are using "${v+set}" rather than > "${v}set" . No. Do you understand what does "${v+set}" mean? Please reopen this bug. I want use this trick to avoid additional first blank line in the following script with ksh: https://github.com/fumiyas/fumiyas.github.io/blob/master/2015/12/02/ldifunwrap.sh On Solaris 10: $ uname -a SunOS build-sol10 5.10 Generic_144501-19 i86pc i386 i86pc $ for s in '' ba k z; do sh=${s}sh echo -n $sh: seq 4 |${s}sh -c 'unset v; while read n; do [ -n "${v+set}" ] && printf "%s " "$v "; v="$n"; done; echo "$v"' done sh:1 2 3 4 bash:1 2 3 4 ksh:1 2 3 4 zsh:1 2 3 4 On AIX 6.1: $ uname -a AIX build-aix6 1 6 00CF28B34C00 $ for s in '' ba k z; do sh=${s}sh echo -n $sh: seq 4 |${s}sh -c 'unset v; while read n; do [ -n "${v+set}" ] && printf "%s " "$v "; v="$n"; done; echo "$v"' done sh:1 2 3 4 bash:1 2 3 4 ksh:1 2 3 4 zsh:1 2 3 4 -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#807011: ksh: Conditional variable expansion problem in while loop
Package: ksh Version: 93u+20120801-2 Severity: important $ for s in '' ba da k mk z; do sh=${s}sh echo -n $sh: seq 4 |${s}sh -c 'unset v; while read n; do [ -n "${v+set}" ] && echo -n "$v "; v="$n"; done; echo "$v"' done sh:1 2 3 4 bash:1 2 3 4 dash:1 2 3 4 ksh:4 mksh:1 2 3 4 zsh:1 2 3 4 `[ -n "${v+set}" ] ` must be true on 2nd iteration and later in all *sh, but only ksh returns the false on all iteration. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA
Bug#794126: plasma-widgets-addons: Digital clock widget does not show proper time
Hi, FYI. KDE 5 digital clock widget gets this bug when $TZ environment variable is set. I had TZ=JST-9 (it's Japan standard time) and looked this bug. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#777762: wiki.debian.org: path separator must be "/", not "." in sysfs.conf
Package: wiki.debian.org Severity: normal In https://wiki.debian.org/SSDOptimization: echo "block.sdX.queue.scheduler = deadline" >> /etc/sysfs.conf is wrong. This results "Setting sysfs variables...unknown attribute block.sda.queue.scheduler ... failed!" in syslog. Must be: echo "block/sdX/queue/scheduler = deadline" >> /etc/sysfs.conf -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#722659: pdns-recursor: Disable resolvconf support if $RESOLVCONF is not 'yes'
Package: pdns-recursor Version: 3.5.2-2 Severity: wishlist I wrote a patch to disable resolvconf hooks in /etc/init.d/pdns-recursor by $RESOLVCONF environment variable set in /etc/default/pdns-recursor. Please review the attached patch, and commit it your repository if you feel good. Thanks! -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA 0001-Enable-resolvconf-hooks-only-when-RESOLVCONF-is-set-.patch Description: Binary data
Bug#716660: xterm: Sixel support
Package: xterm Version: 295-1 Severity: wishlist xterm patch #294 supports sixel graphics. Please add --enable-sixel-graphics option to the configure command-line for enabling sixel graphics. Regards, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#471021: locales: EastAsianAmbiguous character width is always 1 in UTF-8
Hi, FYI. I've created a $LD_REPLOAD-able library and a wrapper script to run a command with CJK-friendly wcwidth(3) implementation for fixing "East Asian Ambiguous Width chars" problem. https://github.com/fumiyas/wcwidth-cjk Regards, -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#700477: smbldap-tools: wrong "net" command name
package: smbldap-tools version: 0.9.7-1 severity: important Patch attached. Fixed in smbldap-tools 0.9.9. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA smbldap-tools-net-command-name.patch Description: Binary data
Bug#679936: smbldap-tools: smbldap-useradd does not work with -M
Patch for smbldap-tools 0.9.7-1 attached. Fixed in smbldap-tools 0.9.8. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA smbldap-useradd-add-attr.patch Description: Binary data
Bug#691329: smbldap-grouplist fails: Can't use string ("['gid','cn']") as an
Patch for smbldap-tools 0.9.7-1 attached. Fixed in smbldap-tools 0.9.9. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA smbldap-grouplist-array-ref.patch Description: Binary data
Bug#692530: [regression] option -h of smbldap-usershow doesn't show non date
Patch attached. Fixed in smbldap-tools 0.9.10 (not yet released). -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA smbldap-usershow-human-readable.patch Description: Binary data
Bug#700371: pulseaudio-module-*: changelog.gz contains "git-changelog.perl failed"
Package: pulseaudio Version: 2.0-6 Severity: minor $ ls /usr/share/doc/pulseaudio-module-*/changelog.gz /usr/share/doc/pulseaudio-module-gconf/changelog.gz /usr/share/doc/pulseaudio-module-x11/changelog.gz /usr/share/doc/pulseaudio-module-raop/changelog.gz /usr/share/doc/pulseaudio-module-zeroconf/changelog.gz $ zcat /usr/share/doc/pulseaudio-module-*/changelog.gz /bin/sh: line 3: git-changelog.perl: command not found git-changelog.perl failed. /bin/sh: line 3: git-changelog.perl: command not found git-changelog.perl failed. /bin/sh: line 3: git-changelog.perl: command not found git-changelog.perl failed. /bin/sh: line 3: git-changelog.perl: command not found git-changelog.perl failed. -- -- Name: SATOH Fumiyasu @ OSS Technology Corp. (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- PGP Fingerprint: BBE1 A1C9 525A 292E 6729 CDEC ADC2 9DCA 5E1C CBCA -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#691623: mlterm: Sixel support
Package: mlterm Version: 3.1.2-1.1 Severity: wishlist mlterm 3.1.2 add support for Sixel (http://en.wikipedia.org/wiki/Sixel), but Debian mlterm package does not enabled it. Please add '--enable-sixel' option to the configure command-line. Regards, -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#647860: smbldap-tools 0.9.9 released
Hi, I've released smbldap-tools 0.9.9: http://download.gna.org/smbldap-tools/ChangeLog http://download.gna.org/smbldap-tools/sources/?C=M&O=D This 0.9.9 release fixes the following bugs: #647860 smbldap-tools: smbldap-passwd fails with SSL-enabled ldap #679935 smbldap-tools: smbldap-useradd -P fails with .../smbldap-passwd.cmd not found #680939 smbldap-tools: Perl array error at last Debian version #681350 libconvert-asn1-perl: "use strict" breaks smbldap-tools Version 0.9.8 release fixes the following bug: #670246 smbldap-tools: deprecated use of qw() means all tools fail Regards, -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- GitHub Home: https://GitHub.com/fumiyas/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#480386: smbldap-tools 0.9.7 release
Hi, The following bugs have been fixed by smbldap-tools 0.9.7: #480386 #519551 #561941 #568259 #572711 #582902 See also: http://download.gna.org/smbldap-tools/ChangeLog http://download.gna.org/smbldap-tools/sources/latest/ -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#530519: Adding that hack as a note in README.Debian ?
> "If you want play with shell and ldapsearch output, be sure your dn > entries are one per line. An perl script could be: > ldapsearch ... | perl -p -0040 -e 's/\n //'" On OpenLDAP 2.4.24 or later, ldapsearch and slapcat have -o ldif-wrap= option for that. Use `ldapsearch -o ldif-wrap=no ...` instead. See also: http://www.openldap.org/its/index.cgi?findid=6645 -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#636580: ksh: ${-#pattern} fails in set -u mode
Package: ksh Version: 93u-1 Severity: important ksh treats ${-#pattern} (and others) as an error with set -u mode. $- is always set by ksh, thus ${-#pattern} must NOT fails whether set -u or not. $ /bin/ksh --version version sh (AT&T Research) 93u 2011-02-08 $ /bin/ksh -c 'set -u; echo $-; echo ${-#dummy}' chsuB /bin/ksh: line 1: -: parameter not set $ /bin/ksh -c 'set -u; echo $-; echo ${-##dummy}' chsuB /bin/ksh: line 1: -: parameter not set $ /bin/ksh -c 'set -u; echo $-; echo ${-%dummy}' chsuB /bin/ksh: line 1: -: parameter not set $ /bin/ksh -c 'set -u; echo $-; echo ${-%%dummy}' chsuB /bin/ksh: line 1: -: parameter not set $ /bin/ksh -c 'set -u; echo $-; echo ${-/dummy1/dummy2}' chsuB /bin/ksh: line 1: -: parameter not set -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#600042: ksh: Broken error message when undefined variable is referred in set -u
Package: ksh Version: 93s+20080202-1 Severity: normal ksh prints a broken error message when an undefined variable is referred in set -u mode: Version: $ /bin/ksh --version version sh (AT&T Research) 93s+ 2008-01-31 This is OK: $ /bin/ksh -c 'set -u;echo echo "[$CBA987654321]"' /bin/ksh: line 1: CBA987654321: parameter not set This is not OK: $ /bin/ksh -c 'set -u;echo echo "[$DCBA987654321]"' /bin/ksh: line 1: DCBA987654321/bin/ksh: line 1: : parameter not set $ /bin/ksh -c 'set -u;echo echo "[$NMLKJIHGFEDCBA987654321]"' /bin/ksh: line 1: NMLKJIHGFEDCB/bin/ksh: line 1: : parameter not set -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#571458: libeb13 4.4.2-1 changes ABI?
Hi, At Mon, 01 Mar 2010 21:23:51 +0900 (JST), Tatsuya Kinoshita wrote: > > Package: libeb13 > > Version: 4.4.2-1 > > > > eblook 1:1.6.1-4.1, that was built with libeb13 4.4.1-1 (or older, maybe), > > is NOT usable with libeb13 4.4.2-1: > > > > $ eblook /usr/local/share/dict/srd-fpw > > zsh: segmentation fault eblook /usr/local/share/dict/srd-fpw > > > > I've tried to build eblook with libeb13 4.4.2-2, then eblook is > > usable with libeb13 4.4.2-2: I'm sorry for my mistake: s/libeb13 4.4.2-2/libeb13 4.4.2-1/ > > $ eblook /usr/local/share/dict/srd-fpw > > eblook> > > Hmm, I couldn't reproduce this bug. On my i386 box, eblook > 1:1.6.1-3 and 1:1.6.1-4 built with libeb13 4.4.1-1 work with > libeb13 4.4.2-1 nicely. I'm using Debian GNU/Linux unstable amd64 flavor. $ uname -a Linux sugar.osstech.co.jp 2.6.32-2-amd64 #1 SMP Fri Feb 12 00:01:47 UTC 2010 x86_64 GNU/Linux $ LC_ALL=C dpkg -l libc6 Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Description +++--- ii libc62.10.2-6 Embedded GNU C Library: Shared libraries $ /usr/bin/eblook /usr/local/share/dict/srd-fpw zsh: segmentation fault env - /usr/bin/eblook /usr/local/share/dict/srd-fpw $ /usr/bin/eblook /usr/local/share/dict/spdict-2001 zsh: segmentation fault env - /usr/bin/eblook /usr/local/share/dict/spdict-2001 $ sudo dpkg -i eblook_1.6.1-4+libeb13.4.4.2.1_amd64.deb $ /usr/bin/eblook /usr/local/share/dict/srd-fpw eblook> list 1. srd-fpw ランダムハウス英語辞典 eblook> ^D $ /usr/bin/eblook /usr/local/share/dict/spdict-2001 eblook> list 1. kojien 広辞苑第五版 2. readers 研究社 リーダーズ英和辞典第2版 3. kanjigen漢字源 4. gn01ep01現代用語の基礎知識2001年版 5. screen 書籍選択 eblook> ^D ... FYI: I've found another bug of eblook: $ env -u HOME /usr/bin/eblook /usr/local/share/dict/srd-fpw zsh: segmentation fault env -u HOME /usr/bin/eblook /usr/local/share/dict/srd-fpw -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ > > $ eblook /usr/share/dict/epwing/edict > eblook> list > 1. edict EDICT > eblook> select 1 > eblook> search test > 1. 13058:436 (n) (1) test > 2. 13058:514 (n,vs) test > 3. 13058:564 test > eblook> quit > $ > > > Motoyuki, does the eb 4.4.2 package really break the binary compatibility? > If so, the SONAME version should be bumped up. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#571458: libeb13 4.4.2-1 changes ABI?
Package: libeb13 Version: 4.4.2-1 eblook 1:1.6.1-4.1, that was built with libeb13 4.4.1-1 (or older, maybe), is NOT usable with libeb13 4.4.2-1: $ eblook /usr/local/share/dict/srd-fpw zsh: segmentation fault eblook /usr/local/share/dict/srd-fpw I've tried to build eblook with libeb13 4.4.2-2, then eblook is usable with libeb13 4.4.2-2: $ eblook /usr/local/share/dict/srd-fpw eblook> -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#531721: bash: glob pattern "[A-Z]" matches "b", "c" .. and "z" on LC_ALL=en_US.UTF-8
Package: bash Version: 3.2-5 Severity: important $ dpkg -l libc6 bash ... ii bash 3.2-5The GNU Bourne Again SHell ii libc62.9-13 GNU C Library: Shared libraries $ mkdir tmp $ cd tmp $ touch a b c x y z A B C X Y Z $ LC_ALL=C /bin/bash --noprofile --norc -c 'echo [A-Z]' A B C X Y Z $ LC_ALL=ja_JP.UTF-8 /bin/bash --noprofile --norc -c 'echo [A-Z]' A B C X Y Z $ LC_ALL=en_US.UTF-8 /bin/bash --noprofile --norc -c 'echo [A-Z]' A b B c C x X y Y z Z -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#471225: Missing manpages that are shipped by upstream
This bug should be reopen. /usr/share/man/man5/slap* are still missing. $ dpkg -l slapd Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad) ||/ Name Version Description +++--- ii slapd2.4.9-1 OpenLDAP server (slapd) $ dpkg -L slapd |grep /man/ /usr/share/man/man8 /usr/share/man/man8/slapcat.8.gz /usr/share/man/man8/slapadd.8.gz /usr/share/man/man8/slapauth.8.gz /usr/share/man/man8/slapdn.8.gz /usr/share/man/man8/slapd.8.gz /usr/share/man/man8/slapindex.8.gz /usr/share/man/man8/slaptest.8.gz /usr/share/man/man8/slappasswd.8.gz /usr/share/man/man8/slapacl.8.gz -- -- Name: SATOH Fumiyasu (fumiyas @ osstech co jp) -- Business Home: http://www.OSSTech.co.jp/ -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#428956: hyperestraier: correct URI for master_ui
Package: hyperestraier Version: 1.4.9-1.1 Severity: minor In README.Debian, through "Manage Users" on http://localhost:1978/masterui should be through "Manage Users" on http://localhost:1978/master_ui -- -- Name: SATOH Fumiyasu / fumiyas @ osstech.co.jp -- Business Home: http://www.OSSTech.co.jp -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#377150: libnss-ldap: upgrade failed if base dn has hyphen
Package: libnss-ldap Version: 251-5 Severity: normal I met the following error when I tried to upgrade libnss-ldap to 251-5: # apt-get install libnss-ldap Reading package lists... Building dependency tree... libnss-ldap is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 1 not fully installed or removed. Need to get 0B of archives. After unpacking 0B of additional disk space will be used. Setting up libnss-ldap (251-5) ... Bareword found where operator expected at -e line 1, near "s-^base .*-base dc=domain-name" syntax error at -e line 1, near "s-^base .*-base dc=domain-name" Execution of -e aborted due to compilation errors. dpkg: error processing libnss-ldap (--configure): subprocess post-installation script returned error exit status 255 Errors were encountered while processing: libnss-ldap E: Sub-process /usr/bin/dpkg returned an error code (1) # debconf-show libnss-ldap * libnss-ldap/rootbindpw: (password omitted) libnss-ldap/bindpw: (password omitted) * libnss-ldap/dblogin: false libnss-ldap/override: true * shared/ldapns/base-dn: dc=domain-name,dc=co,dc=jp * shared/ldapns/ldap-server: 127.0.0.1 * libnss-ldap/confperm: false * libnss-ldap/rootbinddn: cn=manager,dc=example,dc=net * shared/ldapns/ldap_version: 3 libnss-ldap/binddn: cn=proxyuser,dc=example,dc=net * libnss-ldap/nsswitch: * libnss-ldap/dbrootlogin: true -- -- Name: SATOH Fumiyasu / fumiyas @ miraclelinux.com -- Business Home: http://www.MiracleLinux.com -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#376855: skksearch: Increase DIC_BUFSIZE for newer SKK-JISYO.L
Package: skksearch Version: 0.0-5 Severity: important SKK-JISYO.L (included in skkdic 20060610-1) has some long (>1024) entries that are ignored by skksearch because skksearch has only 1024 bytes buffer. Please add the following patch to the skksearch package. #! /bin/sh /usr/share/dpatch/dpatch-run ## dic_bufsize.dpatch by SATOH Fumiyasu ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: Extend DIC_BUFSIZE for newer SKK-JISYO.L @DPATCH@ diff -urNad skksearch-0.0/dic_db.c.dist skksearch-0.0/dic_db.c --- skksearch-0.0/dic.h.dist2000-12-15 18:06:06.0 +0900 +++ skksearch-0.0/dic.h 2006-07-05 22:24:53.408746058 +0900 @@ -12,7 +12,7 @@ * GNU General Public License for more details. */ -#define DIC_BUFSIZE 1024 +#define DIC_BUFSIZE 4096 struct dic { char buf[DIC_BUFSIZE]; -- -- Name: SATOH Fumiyasu / fumiyas @ miraclelinux.com -- Business Home: http://www.MiracleLinux.com -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#368010: pwgen: pwgen -Bs generates mangled password
Package: pwgen Version: 2.05-1 Severity: normal Correct behaviors: $ pwgen -B 32 1 oqu4eipaej7aishaesh9eigieree9Efe $ pwgen -s 32 1 lHNxCOXNxcZaxeALe3TCSDBhm6jgs6eb Wrong behaviors: $ pwgen -Bs 32 1 fjL $ pwgen -Bs 32 2 FgRL ievLdoVJhir4EeHpqCXqTE9yLAhRjLxp $ pwgen -Bs 32 3 ocrK 4c4R PcpMTVMzKJsH99scWg7jWhxncJJCwUKJ $ pwgen -Bs 32 4 vq Jq9KrngKPtaio Jq9TrnAKktaioratCYpNUtkhkAPc79TT Jy9mynz7FUiXocasCvpNyyybtAi9r4TR -- -- Name: SATOH Fumiyasu / fumiyas @ miraclelinux.com -- Business Home: http://www.MiracleLinux.com -- Personal Home: http://www.SFO.jp/blog/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#314878: apache2-common: Do 'reload' instead of 'restart' in logrotate.d/apache2
Package: apache2-common Severity: important Version: 2.0.54-4 In /etc/logrotate.d/apache2, `/etc/init.d/apache2 restart` is invoked to rotate Apache2 logs. `/etc/init.d/apachw2 restart` stops and starts Apache2, not reloads. There are 2 problems in this situation: 1. Web service by Apache2 is stopped in a short time. 2. Web service by Apache2 is NOT started if Apache2 configuration is broken. Use `/etc/init.d/apache2 reload` in this situation. -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#300173: mlterm: separate terminfo/m/mlterm to another package
Package: mlterm-common Version: 2.9.2-2 Severity: wishlist I want to install /usr/share/terminfo/m/mlterm only on remote server machine without X server/client, but does NOT want to install other files included in mlterm-common and packages depended by mlterm-common (X libraries). Please separate /usr/share/terminfo/m/mlterm file to another ('mlterm-terminfo'?) package. -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#298577: cvs: ':ext:user@cvs.example.com:/' in CVS/Root is not acceptable on cvs update
Package: cvs Version: 1.12.9-11 Severity: important `cvs -d :ext:[EMAIL PROTECTED]:/ checkout module` is acceptable on checkouting, but not on updating. For example (see http://cvs.idealx.org/index.en.html): $ cvs -d :ext:[EMAIL PROTECTED]:/ checkout samba/smbldap-tools cvs server: Updating samba/smbldap-tools U samba/smbldap-tools/AUTHORS U samba/smbldap-tools/CONTRIBUTORS U samba/smbldap-tools/COPYING ... snip ... $ cd samba $ cvs update cvs update: CVSROOT requires a path spec: cvs update: :(gserver|kserver|pserver):[[user][:[EMAIL PROTECTED]:[port]]/path cvs update: [:(ext|server):[EMAIL PROTECTED]:]/path cvs [update aborted]: Bad CVSROOT: `:ext:[EMAIL PROTECTED]:'. $ cat CVS/Root :ext:[EMAIL PROTECTED]:/ -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#295352: logcheck doesn't ignore rsync's log "rsync on modulename-with-hyphen from host (ip)"
Futhermore, I want to use '.' and '_' for module name in rsyncd.conf. --- /etc/logcheck/ignore.d.server/rsync.dist2005-01-24 11:37:31.0 +0900 +++ /etc/logcheck/ignore.d.server/rsync 2005-02-16 12:01:38.0 +0900 @@ -1,3 +1,3 @@ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsync\[[0-9]+\]: connect from [0-9.]{7,15} \([0-9.]{7,15}\)$ -^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: rsync on [[:alnum:]/]+ from [._[:alnum:]-]+ \([0-9.]{7,15}\)$ +^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: rsync on [[:alnum:]/._-]+ from [._[:alnum:]-]+ \([0-9.]{7,15}\)$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: wrote [0-9]+ bytes read [0-9]+ bytes total size [0-9]+$ -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#295352: logcheck doesn't ignore rsync's log "rsync on modulename-with-hyphen from host (ip)"
Package: rsync Version: 2.6.3-2 Priority: wishlist If /etc/rsyncd.conf has a [modulename-with-hyphen], /etc/logcheck/ignore.d.server/rsync does NOT affect logcheck and logcheck reports rsync daemon's log as: System Events =-=-=-=-=-=-= Feb 15 14:02:13 foobar rsyncd[8419]: rsync on modulename-with-hyphen from host.example.com (192.168.0.1) Proposed patch: --- /etc/logcheck/ignore.d.server/rsync.dist 2005-02-15 15:54:12.0 +0900 +++ /etc/logcheck/ignore.d.server/rsync 2005-02-15 15:54:21.0 +0900 @@ -1,3 +1,3 @@ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsync\[[0-9]+\]: connect from [0-9.]{7,15} \([0-9.]{7,15}\)$ -^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: rsync on [[:alnum:]/]+ from [._[:alnum:]-]+ \([0-9.]{7,15}\)$ +^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: rsync on [[:alnum:]/\-]+ from [._[:alnum:]-]+ \([0-9.]{7,15}\)$ ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ rsyncd\[[0-9]+\]: wrote [0-9]+ bytes read [0-9]+ bytes total size [0-9]+$ -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#295325: /usr/share/doc/qmail/examples/logcheck.ignore.gz has DOS-style EOL
Package: qmail Version: 1.03-36 Severity: minor /usr/share/doc/qmail/exmaples/logcheck.ignore.gz has DOS-style end-of-line (EOL), i.e. \x0D + \x0A. Please change it to UNIX-style EOL (\x0A only). $ zcat /usr/share/doc/qmail/examples/logcheck.ignore.gz |cat -v ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ status: local [0-9]+\/[0-9]+ remote [0-9]+\/[0-9]+$^M ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ (new|end) msg [0-9]+$^M ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ info msg [0-9]+: bytes [0-9]+ from .* qp [0-9]+ uid [0-9]+$^M ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ starting delivery [0-9]+: msg [0-9]+ to local [^[:space:]]+$^M ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ starting delivery [0-9]+: msg [0-9]+ to remote [^[:space:]]+$^M ^\w{3} [ :0-9]{11} [._[:alnum:]-]+ qmail: [0-9\.]+ delivery [0-9]+: success:^M $ zcat /usr/share/doc/qmail/examples/logcheck.ignore.gz \ |tr -d '\r' \ >/etc/logcheck/ignore.d.server/qmail -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#295170: Acknowledgement (Clients in maintainer scripts read /root/.my.cnf and fail)
I'm sorry for my wrong report... /etc/init.d/mysql and /etc/logrotate.d/mysql-server have no problem because HOME environment variable is set in thease scripts. Only /etc/cron.daily/mysql-server has problem. --- mysql-server.dist2004-09-12 07:49:32.0 +0900 +++ mysql-server2005-02-14 09:49:11.0 +0900 @@ -11,6 +11,11 @@ ### +# mysql and mysqladmin likes to read /root/.my.cnf. This is usually not +# what I want as many admins e.g. only store a password without a username +# there and so break my scripts. +export HOME=/etc/mysql/ + M="mysql --defaults-extra-file=/etc/mysql/debian.cnf" MA="mysqladmin --defaults-extra-file=/etc/mysql/debian.cnf" tmp=`tempfile`; -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#295170: Clients in maintainer scripts read /root/.my.cnf and fail
Package: mysql-server Version: 4.0.23-3 Severity: grave If /root/.my.cnf (~root/.my.cnf) exists and contains some client configuration(s), the following scripts are failed because MySQL clients connect to another (not local) server or cannot connect to server: /etc/init.d/mysql /etc/cron.daily/mysql-server /etc/logrotate.d/mysql-server For example: # cat /root/.my.cnf [client] host = another-remote-host-not-localhost user = a-user password = password-for-user-on-another-remote-host Use --defaults-file instead of --defaults-extra-file for client commands in these scrpts. For example: --- /etc/cron.daily/mysql-server.dist2004-09-12 07:49:32.0 +0900 +++ /etc/cron.daily/mysql-server2005-02-14 13:40:32.0 +0900 @@ -11,8 +11,8 @@ ### -M="mysql --defaults-extra-file=/etc/mysql/debian.cnf" -MA="mysqladmin --defaults-extra-file=/etc/mysql/debian.cnf" +M="mysql --defaults-file=/etc/mysql/debian.cnf" +MA="mysqladmin --defaults-file=/etc/mysql/debian.cnf" tmp=`tempfile`; my_exit () { -- -- Name: SATOH Fumiyasu -- Home: http://www.sfo.jp (in Japanese only) -- Mail: fumiya at net-thrust.com, samba.gr.jp, namazu.org or ... -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]