Bug#774369: openssh-client: Port is not correctly handled in ssh_config when CanonicalizeHostname is enabled

2015-01-01 Thread Zhang Cheng
Package: openssh-client
Version: 1:6.7p1-3
Severity: normal

Given an user ssh_config (~/.ssh/config) like this:

  1 Host server*.example.com
  2 User name
  3 Port 1234
  4
  5 Host *
  6 CanonicalizeHostname yes
  7 CanonicalDomains example.com
  8 CanonicalizeMaxDots 0
  9 CanonicalizeFallbackLocal yes
 10 ControlMaster auto
 11 ControlPath /tmp/ssh_mux_%h_%p_%r
 12 ControlPersist 1h


Then run ``ssh -v server0``, here is the output:

  1 OpenSSH_6.7p1 Debian-3, OpenSSL 1.0.1j 15 Oct 2014
  2 debug1: Reading configuration data home/.ssh/config
  3 debug1: home/.ssh/config line 5: Applying options for *
  4 debug1: Reading configuration data /etc/ssh/ssh_config
  5 debug1: /etc/ssh/ssh_config line 19: Applying options for *
  6 debug1: Canonicalized hostname server0 = server0.example.com
  7 debug1: Hostname has changed; re-reading configuration
  8 debug1: Reading configuration data home/.ssh/config
  9 debug1: home/.ssh/config line 1: Applying options for server*.example.com
 10 debug1: home/.ssh/config line 5: Applying options for *
 11 debug1: Reading configuration data /etc/ssh/ssh_config
 12 debug1: /etc/ssh/ssh_config line 19: Applying options for *
 13 debug1: auto-mux: Trying existing master
 14 debug1: Control socket /tmp/ssh_mux_server0.example.com_1234_name does
not exist
 15 debug1: Connecting to server0.example.com [127.0.0.1] port 22.
 16 debug1: connect to address 127.0.0.1 port 22: Connection refused
 17 ssh: connect to host server0.example.com port 22: Connection refused

As you can see, ssh didn't use the specified port 1234, but the default port 22
to connect,
while when creating ControlPath socket, it uses the given port.

I have scanned the source code, and believe I have found the cause, but I don't
know how to fix it nicely.
So I just give my description to it. The source code is fetched with ``apt-get
source openssh-client``.

In ssh.c, the procedure is like this:

* line 902, process_config_files(pw), now options.port is not set, since no
config block with ``Port`` option is matched.
* line 919, addrs = resolve_canonicalize(host, options.port), now, port in
``addrs`` is default_ssh_port()
* line 948-954, the target hostname has changed, so config files re-parsed.
now, options.port is set to 1234
* line 1037-1052, expand control_path, %p is expanded to portstr(assigned in
line 1007), which is 1234
* line 1073, ssh_connect(host, addrs, hostaddr, options.port, ...), in
ssh_connect() function, however, the ``options.port`` is not used, but directly
use address info from ``addrs``, so ssh_connect actually uses port 22.

Following this procedure, whenever CanonicalizeHostname is enabled, ``Port``
may not be handled as expected in ssh_config file.



-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages openssh-client depends on:
ii  adduser   3.113+nmu3
ii  dpkg  1.17.22
ii  libc6 2.19-13
ii  libedit2  3.1-20140620-2
ii  libgssapi-krb5-2  1.12.1+dfsg-16
ii  libselinux1   2.3-2
ii  libssl1.0.0   1.0.1j-1
ii  passwd1:4.2-3
ii  zlib1g1:1.2.8.dfsg-2+b1

Versions of packages openssh-client recommends:
ii  xauth  1:1.0.9-1

Versions of packages openssh-client suggests:
pn  keychain  none
pn  libpam-sshnone
pn  monkeysphere  none
pn  ssh-askpass   none

-- no debconf information


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



Bug#745717: di-utils: fetch-url runs mountmedia without cleaning up; blocks partitioner preseeding

2014-12-11 Thread Zhang Cheng
This bug also affects the hd-media installer.

With hd-media installer, iso-scan will try mount each partition to find
isos with the following command:

mount -t auto -o ro $device /hd-media

Since the partition contains preseed file, which very likely contains the
iso file, is mounted, this mount will fail, and iso-scan will eventually
fail to find the iso file.

The same problem also exists in /usr/lib/fetch-url/floppy, which also mount
partitions without umount.

I personally modified fetch-url/file and fetch-url/floppy, added `umount
/media || true` before every return path, then the installer works
incorrectly.


Bug#745717: di-utils: fetch-url runs mountmedia without cleaning up; blocks partitioner preseeding

2014-12-11 Thread Zhang Cheng
 I personally modified fetch-url/file and fetch-url/floppy, added `umount 
 /media || true` before every return path, then the installer works 
 incorrectly.

Sorry, typo here, then the installer works *correctly*.

BTW, this bug may not be triggered that frequently. fetch-url is
invoked such early that most filesystem modules are not modprobed,
thus will just fail to mount.
I'm using a self-compiled linux kernel with the d-i initrd.gz, I
compiled all needed filesystem modules into the kernel, so come into
this problem.


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



Bug#729614: atop: Please package latest upstream version (2.0.2)

2014-09-10 Thread Zhang Cheng
Hi there,

I have made package for version 2.0.2, and uploaded to mentors:

  http://mentors.debian.net/package/atop

Made two commits on top of Vcs-Git:

  * Import upstream 2.0.2 code

https://github.com/StephenPCG/debian-atop/commit/527db3149be62b097b7edcf702ae32825aa0eb50
  * refresh patches to fit new code, remove manpage-syntax patch (applied
upstream)

https://github.com/StephenPCG/debian-atop/commit/bc0b6f499a8c947bf45062572191d9656d033a7d

Is there anyone who can sponsor me?

BTW:

* It seems the upstream released a newer version 2.1 just a few days ago,
   if anyone requires it, I can also make package for it.
* Someone asked to package netatop, I will have a look into this.

Hope this helps.

-- 
Cheng,
Best Regards


Bug#623451: mirror submission for mirrors.ustc.edu.cn

2011-05-02 Thread Zhang Cheng
Hi Simon,

I have some more questions, see below.

On Tue, May 3, 2011 at 03:43, Simon Paillard spaill...@debian.org wrote:
 Here is the record added:
 
 revision 1.1838
 date: 2011-05-02 21:39:52 +0200;
 Add mirrors.ustc.edu.cn (Closes: #623451)
 

 We can push you backports.

Then who should I contact, or how should I setup? We are also using
ftpsync to sync backports.
By the way, can I replace 'command=~/bin/ftpsync' with
'command=~/bin/ftpsync sync:archive:debian'
in authorized_keys instead of renaming ftpsync-debian.conf to
ftpsync.conf? As in the latter way, the
log filename is different as before, which confuses some of our other scripts.

 For CDImage, please use jigdo: http://www.debian.org/CD/mirroring/#jigdomirror

We are using rsync for all images currently. We will set up soon to
use jigdomirror.

 Volatile is deprecated, no need to mirror it: 
 http://lists.debian.org/debian-volatile-announce/2011/msg0.html

So this means that we just have to keep the debian-volatile directory,
but do not have to rsync any more,
am I right?

 (snip)

 Maintainer: Stephen Zhang stephen...@gmail.com, mirr...@ustc.edu.cn
 Country: CN China
 Location: Hefei
 Sponsor: USTC Network Information Center http://ustcnet.ustc.edu.cn/
 Sponsor: University of Science and Technology of China http://www.ustc.edu.cn/
 Bandwidth: 1Gbps

After I contacted with the network manager of our school, there is one
thing I should make clear.
As the bandwidth of China Telecom (public access) is shared with the
whole campus, we
can not use too much in peak time. So the network manager requires us
to limit bandwidth to
100Mbps during peak time (8am - 11pm, mon-fri, CST), during off-peak
time, there are no limitations.
We have sufficient bandwidth with CERNET and CERNET2 (universities in
China and partially public
access), so there are no limitations on them at anytime. I will put an
announcement on the homepage
of our site as well as in the rsync motd.

-- 
Linux User Group
University of Science and Technology of China
Homepage: http://lug.ustc.edu.cn/
E-Mail: l...@ustc.edu.cn
Mirror Admin: mirr...@ustc.edu.cn
Zhang Cheng stephen...@gmail.com




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



Bug#623451: mirror submission for mirrors.ustc.edu.cn

2011-04-27 Thread Zhang Cheng
Hi,

On Thu, Apr 28, 2011 at 04:20, Simon Paillard spaill...@debian.org wrote:
 On Mon, Apr 25, 2011 at 06:06:14PM +0800, Aron Xu wrote:
 To Zhang, thanks for your attention, now I'll let Simon to see if
 there are missing information.

 Thanks Aron Xu for processing this.

 Please do notify this bugs address (and
 better CC'ing Simon and me) when you have got push mirror being set
 up.

 (Please don't CC me, the bug address is sufficient)

 To Simon, here are the additional information for you:

 0. It seems now all archs are mirrored ? (great !)
 USTC admins, can you please confirm ?

We began mirroring all archs two days ago, now it's not finished yet,
it should finish today.

We are planning to add some disk to the machine at this weekend or
the next week, so the machine will be shutdown for about two hours.
I would like to report back after everything's done.


-- 
Linux User Group
University of Science and Technology of China
Homepage: http://lug.ustc.edu.cn/
E-Mail: l...@ustc.edu.cn
Mirror Admin: mirr...@ustc.edu.cn
Zhang Cheng stephen...@gmail.com




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



Bug#623451: Bug #623451: mirror submission for mirrors.ustc.edu.cn

2011-04-25 Thread Zhang Cheng
Hi Aron Xu,

Currently we do passive ftpsync four times a day. We want push triggered update,
what procedure should we follow?

By the way, we now have a new email to handle mirror related tasks,
mirr...@ustc.edu.cn, can you help me update my submitted information?

Thanks!

On Mon, Apr 25, 2011 at 14:18, Aron Xu happyaron...@gmail.com wrote:

 Nice to see your ticket about bringing the ustc mirror to be an
 official Debian mirror, and thanks for your great work!

 We would like to know that whether your mirror update is push
 triggered, or you just do passive ftpsync twice a day?

 --
 Regards,
 Aron Xu





--
Best Regards,
Cheng



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



Bug#623451: Bug #623451: mirror submission for mirrors.ustc.edu.cn

2011-04-25 Thread Zhang Cheng
On Mon, Apr 25, 2011 at 15:13, Aron Xu happyaron...@gmail.com wrote:

 You should contact the upstream mirror's administrator to help you set
 up push triggered update.

OK, I will contact the upstream soon. Do I have to report back to this
mail after
I have set up push triggered update?


--
Linux User Group
University of Science and Technology of China
Homepage: http://lug.ustc.edu.cn/
E-Mail: l...@ustc.edu.cn
Mirror Admin: mirr...@ustc.edu.cn
Zhang Cheng stephen...@gmail.com




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



Bug#623451: Bug #623451: mirror submission for mirrors.ustc.edu.cn

2011-04-25 Thread Zhang Cheng
On Mon, Apr 25, 2011 at 15:43, Aron Xu happyaron...@gmail.com wrote:

 Your mirror is hosted by University of Science and Technology of China
 and it is in CERNET, correct? If so, there might be some problem when
 setting up push updates and could be solved if you use IPv6. Just a
 note.

We have three IPs:

Telecom: 202.141.160.110
CERNET: 202.38.95.110
CERNET2: 2001:da8:d800:95::110

DNS will return the best IP for mirrors.ustc.edu.cn.

 What's more, how much bandwidth is available?

The total bandwidth of our school is as follow:
Telcome: 700MB
CERNET: 2.5GB
CERNET2: 1GB

The network interface card of our server is 1GB (Only a single NIC).


--
Linux User Group
University of Science and Technology of China
Homepage: http://lug.ustc.edu.cn/
E-Mail: l...@ustc.edu.cn
Mirror Admin: mirr...@ustc.edu.cn
Zhang Cheng stephen...@gmail.com




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



Bug#623451: Bug #623451: mirror submission for mirrors.ustc.edu.cn

2011-04-25 Thread Zhang Cheng
On Mon, Apr 25, 2011 at 16:32, Aron Xu happyaron...@gmail.com wrote:
 Thanks for your update. Please also check the following:
 - that you are subscribed to http://lists.debian.org/debian-mirrors-announce]

I have subscribed to this list.

 - any link to the university website that can be displayed on
  http://www.debian.org/mirrors/sponsors ?

a href=http://www.ustc.edu.cn/;University of Science and Technology
of China/a  will be fine.



-- 
Linux User Group
University of Science and Technology of China
Homepage: http://lug.ustc.edu.cn/
E-Mail: l...@ustc.edu.cn
Mirror Admin: mirr...@ustc.edu.cn
Zhang Cheng stephen...@gmail.com




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



Bug#374075: python2.3: python package upgrade error

2006-06-16 Thread Zhang Cheng
Package: python2.3
Version: 2.3.5-14
Severity: normal

Hi, DD

I upgrade my debian, and I encounter such dpkg error as follows:

Traceback (most recent call last):
  File /usr/bin/pycentral, line 1365, in ?
main()
  File /usr/bin/pycentral, line 1359, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 892, in run
pkg.set_default_runtime_from_version_info()
  File /usr/bin/pycentral, line 575, in set_default_runtime_from_version_info
self.default_runtime = get_runtime_for_version(versions[0])
TypeError: unindexable object
dpkg: error processing python2.3 (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of python:
 python depends on python2.3 (= 2.3.5-1); however:
  Package python2.3 is not configured yet.
dpkg: error processing python (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of python-minimal:
 python-minimal depends on python2.3 (= 2.3.5-1); however:
  Package python2.3 is not configured yet.
dpkg: error processing python-minimal (--configure):
 dependency problems - leaving unconfigured
Setting up python2.4-minimal (2.4.3-7) ...
Traceback (most recent call last):


Is it a bug? Many thanks for your attention.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14zc.0.1
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages python2.3 depends on:
ii  libbz2-1.01.0.3-2high-quality block-sorting file co
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdb4.3  4.3.29-5   Berkeley v4.3 Database Libraries [
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries
ii  python-central0.4.16 register and build utility for Pyt
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages python2.3 recommends:
pn  python2.3-cjkcodecs | python2 none (no description available)
pn  python2.3-cjkcodecs | python2 none (no description available)

-- no debconf information

-- 
Zhang Cheng 

PGP-Key-ID: 25990B35
A Proud Debian GNU/Linux User
Xi'an Jiaotong University, China


signature.asc
Description: Digital signature


Bug#367372: imagemagick: Magick-config should be updated

2006-05-15 Thread Zhang Cheng
Package: imagemagick
Version: 7:6.2.4.5-0.8
Severity: normal

Hi, I compile a program using libs from ImageMagick today. Although the
version of ImageMagick on my debian box is 6.2.4, the output of Magick-config
--version is 6.2.3. Is it a small bug?

Cheers,



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14zc.0.1
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages imagemagick depends on:
ii  libbz2-1.0 1.0.3-2   high-quality block-sorting file co
ii  libc6  2.3.6-7   GNU C Library: Shared libraries
ii  libfreetype6   2.1.10-3  FreeType 2 font engine, shared lib
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  libjasper-1.701-1  1.701.0-2 The JasPer JPEG-2000 runtime libra
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  liblcms1   1.15-1Color management library
ii  libmagick9 7:6.2.4.5-0.8 Image manipulation library
ii  libpng12-0 1.2.8rel-5.1  PNG library - runtime
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libtiff4   3.8.2-2   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.0.0-6 X11 client-side library
ii  libxext6   1:1.0.0-4 X11 miscellaneous extension librar
ii  libxml22.6.24.dfsg-1 GNOME XML library
ii  zlib1g 1:1.2.3-11compression library - runtime

imagemagick recommends no packages.

-- no debconf information

-- 
Zhang Cheng 

PGP-Key-ID: 25990B35
A Proud Debian GNU/Linux User
Xi'an Jiaotong University, China


signature.asc
Description: Digital signature


Bug#360420: nfs-kernel-server: fail to upgrade

2006-04-01 Thread Zhang Cheng
Package: nfs-kernel-server
Version: 1:1.0.7-5
Severity: minor

Hi, I met an upgrade error on nfs-kernel-server.
The error is listed as follows:

Setting up nfs-kernel-server (1.0.7-5) ...
Stopping NFS kernel daemon: mountd nfsd.
Unexporting directories for NFS kernel daemon...done.
Exporting directories for NFS kernel daemon...done.
Starting NFS kernel daemon: nfsdinvoke-rc.d: initscript
nfs-kernel-server, action restart failed.
dpkg: error processing nfs-kernel-server (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 nfs-kernel-server
  


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14zc.0.1
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages nfs-kernel-server depends on:
ii  libc6 2.3.6-4GNU C Library: Shared libraries an
ii  libcomerr21.38+1.39-WIP-2006.03.29-2 common error description library
ii  libkrb53  1.4.3-6MIT Kerberos runtime libraries
ii  libnfsidmap1  0.13-1 An nfs idmapping library
ii  libwrap0  7.6.dbs-9  Wietse Venema's TCP wrappers libra
ii  nfs-common1:1.0.7-5  NFS support files common to client
ii  sysvinit  2.86.ds1-14System-V-like init utilities

nfs-kernel-server recommends no packages.

-- no debconf information


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



Bug#344611: vim conflicts with vim-runtime in Sid

2005-12-23 Thread Zhang Cheng
Package: vim
Version: 1:6.4-004+2
Severity: minor

I upgrade my debian today and encounter the error message as follows:

The following packages have unmet dependencies:
  vim: Depends: vim-runtime (= 1:6.4-004+2) but 1:6.4-004+1 is installed
vim-perl: Depends: vim-runtime (= 1:6.4-004+2) but 1:6.4-004+1 is
installed



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages vim depends on:
ii  libc62.3.5-9 GNU C Library: Shared libraries an
ii  libgpmg1 1.19.6-21   General Purpose Mouse - shared lib
ii  libncurses5  5.5-1   Shared libraries for terminal hand
pn  vim-common   none  (no description available)
ii  vim-runtime  1:6.4-004+1 Vi IMproved - Runtime files

vim recommends no packages.

-- no debconf information


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



Bug#337583: slib: fails to upgrade

2005-11-04 Thread Zhang Cheng
Package: slib
Version: 3a2-1
Severity: normal


Setting up slib (3a2-1) ...
ERROR: Unbound variable: with-load-pathname
dpkg: error processing slib (--configure):
 subprocess post-installation script returned error exit status 2
 

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

-- no debconf information


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



Bug#334818: tetex-doc upgrade error

2005-10-19 Thread Zhang Cheng
Package: tetex-doc
Version: 2.0.2c-9
Severity: normal


I upgrade my debian using apt, the following error messages occur:


Preparing to replace tetex-doc 2.0.2c-9 (using .../tetex-doc_3.0-9_all.deb) ...
Unpacking replacement tetex-doc ...
dpkg: error processing /var/cache/apt/archives/tetex-doc_3.0-9_all.deb 
(--unpack):
 trying to overwrite `/usr/share/doc/texmf/Makefile', which is also in package 
tetex-base
 dpkg-deb: subprocess paste killed by signal (Broken pipe)



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages tetex-doc depends on:
ii  dpkg 1.13.11.0.1 package maintenance system for Deb

Versions of packages tetex-doc recommends:
ii  acroread [pdf-viewe 7.0-0.9  Adobe Acrobat Reader: Portable Doc
ii  gnome-gv [postscrip 1:2.8.5-2GNOME PostScript viewer
ii  gs-esp [postscript- 8+8.15rc4.dfsg.1-2.1 The Ghostscript PostScript interpr
ii  gs-gpl [postscript- 8.15-4   The GPL Ghostscript PostScript int
ii  gv [pdf-viewer] 1:3.6.1-12   PostScript and PDF viewer for X
ii  kghostview [pdf-vie 4:3.4.2-2PostScript viewer for KDE
ii  konqueror [www-brow 4:3.4.2-3KDE's advanced file manager, web b
ii  mozilla-browser [ww 2:1.7.12-1   The Mozilla Internet application s
hi  tetex-bin   2.0.2-24 The teTeX binary files
ii  w3m [www-browser]   0.5.1-4  WWW browsable pager with excellent
ii  xpdf-utils [pdf-vie 3.01-2   Portable Document Format (PDF) sui

-- no debconf information


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



Bug#330689: passwd conflicts with manpages-zh

2005-09-29 Thread Zhang Cheng
Package: passwd
Version: 1:4.0.3-39
Severity: important
Tags: l10n


Reading package lists... Done
Building dependency tree... Done
The following packages will be upgraded:
  passwd
1 upgraded, 0 newly installed, 0 to remove and 20 not upgraded.
1 not fully installed or removed.
Need to get 525kB of archives.
After unpacking 425kB of additional disk space will be used.
Get:1 http://debian.ustc.edu.cn sid/main passwd 1:4.0.12-3 [525kB]
Fetched 525kB in 1s (413kB/s)
Preconfiguring packages ...
(Reading database ... 157813 files and directories currently installed.)
Preparing to replace passwd 1:4.0.3-39 (using .../passwd_1%3a4.0.12-3_i386.deb) 
...
Unpacking replacement passwd ...
dpkg: error processing /var/cache/apt/archives/passwd_1%3a4.0.12-3_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/man/zh_CN/man1/chfn.1.gz', which is also in 
package manpages-zh
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/passwd_1%3a4.0.12-3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages passwd depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libpam-modules0.76-23Pluggable Authentication Modules f
ii  libpam0g  0.76-23Pluggable Authentication Modules l
ii  login 1:4.0.12-2 system login tools

passwd recommends no packages.

-- debconf information:
  passwd/root-password: (password omitted)
  passwd/root-password-again: (password omitted)
  passwd/user-password-again: (password omitted)
  passwd/user-password: (password omitted)
  passwd/password-mismatch:
  passwd/username:
  passwd/password-empty:
  passwd/md5: false
  passwd/shadow: true
  passwd/username-bad:
  passwd/user-fullname:
  passwd/make-user: true


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



Bug#308261: libopts25: apt-get install error

2005-05-08 Thread Zhang Cheng
Package: libopts25
Version: 1:5.7-1
Severity: minor

Unpacking libopts25 (from .../libopts25_1%3a5.7-1_i386.deb) ...
dpkg: error processing
/var/cache/apt/archives/libopts25_1%3a5.7-1_i386.deb (--unpack):
 trying to overwrite `/usr/lib/libguileopts.so.0.0.1', which is also in
 package libopts9
 Selecting previously deselected package libopts25-dev.
 Unpacking libopts25-dev (from .../libopts25-dev_1%3a5.7-1_i386.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/libopts25-dev_1%3a5.7-1_i386.deb (--unpack):
  trying to overwrite `/usr/lib/libopts.a', which is also in package
  libopts9-dev
  dpkg-deb: subprocess paste killed by signal (Broken pipe)
  

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)


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



Bug#305346: mozilla startup script error

2005-04-19 Thread Zhang Cheng
Package: mozilla
Version: 2:1.7.7-1
Severity: normal

I just upgrade mozilla, and get an error message when I star Mozilla:
/usr/bin/mozilla: line 75: syntax error near unexpected token `elif'
/usr/bin/mozilla: line 75: `elif [ $MOZILLA_DSP = none ];then'

I check the script of /usr/bin/mozilla and if a minor typo at 72nd line:
elif echo $P | xargs ps -p | grep arts /dev/null 21; then 
MOZILLA_DSP=artsdsp; fi
the *fi* is needless and should be deleted.



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages mozilla depends on:
ii  dpkg  1.10.27Package maintenance system for Deb
ii  mozilla-browser   2:1.7.7-1  The Mozilla Internet application s
ii  mozilla-mailnews  2:1.7.7-1  The Mozilla Internet application s
ii  mozilla-psm   2:1.7.7-1  The Mozilla Internet application s

-- no debconf information


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



Bug#305185: cupsys upgrade error

2005-04-18 Thread Zhang Cheng
Package: cupsys
Version: 1.1.23-8
Severity: normal

Setting up cupsys (1.1.23-8) ...
Installing new version of config file /etc/init.d/cupsys ...
Installing new version of config file /etc/logrotate.d/cupsys ...
error in control file: `Section' value not specified at
/usr/sbin/install-docs line 606, IN line 7.
dpkg: error processing cupsys (--configure):
 subprocess post-installation script returned error exit status 9



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=en_US.UTF-8, LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)

Versions of packages cupsys depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf 1.4.48   Debian configuration management sy
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libcupsimage2   1.1.23-8 Common UNIX Printing System(tm) - 
ii  libcupsys2-gnutls10 1.1.23-8 Common UNIX Printing System(tm) - 
ii  libgnutls11 1.0.16-13GNU TLS library - runtime library
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libpaper1   1.1.14-3 Library for handling paper charact
ii  libslp1 1.0.11a-2OpenSLP libraries
ii  patch   2.5.9-2  Apply a diff file to an original
ii  perl-modules5.8.4-8  Core Perl modules
ii  xpdf-utils  3.00-13  Portable Document Format (PDF) sui
ii  zlib1g  1:1.2.2-4compression library - runtime

-- debconf information:
  cupsys/raw-print: true
  cupsys/backend: ipp, lpd, parallel, socket, usb


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