[Bug 1797386] Re: [SRU] OpenSSL 1.1.1 to 18.04 LTS

2019-06-24 Thread Sascha Silbe
Dimitri John Ledkov (xnox) wrote on 2019-06-19:
> Have you tried openssl 1.1.1-1ubuntu2.1~18.04.3 from bionic proposed?

I can confirm that 1.1.1-1ubuntu2.1~18.04.3 (already released a couple
of days ago) fixes the issue. Thanks a lot!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1797386

Title:
  [SRU] OpenSSL 1.1.1 to 18.04 LTS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libwww-perl/+bug/1797386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1797386] Re: [SRU] OpenSSL 1.1.1 to 18.04 LTS

2019-06-19 Thread Sascha Silbe
This update breaks salt-ssh 2016.11.2 (started from a different computer
that's running Debian Stretch) on Ubuntu 18.04 (running on the machine
being managed). Having Salt break from one day to the next for managing
an LTS (!) release is a rather major PITA.

Curiously enough, salt-ssh 2016.11.2 continues to work just fine on
minions running Ubuntu 19.04 which ships openssl 1.1.1b-1ubuntu2.1. So
whatever this SRU does apparently is different from how it works on
Ubuntu 19.04.

This is the error message (from salt-ssh):

=== Begin ===
Traceback (most recent call last):
  File "/var/tmp/.root_bdab0e_salt/salt-call", line 15, in 
salt_call()
  File "/var/tmp/.root_bdab0e_salt/py2/salt/scripts.py", line 374, in 
salt_call
import salt.cli.call
  File "/var/tmp/.root_bdab0e_salt/py2/salt/cli/call.py", line 9, in 

import salt.cli.caller
  File "/var/tmp/.root_bdab0e_salt/py2/salt/cli/caller.py", line 18, in 

import salt.loader
  File "/var/tmp/.root_bdab0e_salt/py2/salt/loader.py", line 29, in 

import salt.utils.event
  File "/var/tmp/.root_bdab0e_salt/py2/salt/utils/event.py", line 72, 
in 
import salt.payload
  File "/var/tmp/.root_bdab0e_salt/py2/salt/payload.py", line 17, in 

import salt.crypt
  File "/var/tmp/.root_bdab0e_salt/py2/salt/crypt.py", line 43, in 

import salt.utils.rsax931
  File "/var/tmp/.root_bdab0e_salt/py2/salt/utils/rsax931.py", line 83, 
in 
libcrypto = _init_libcrypto()
  File "/var/tmp/.root_bdab0e_salt/py2/salt/utils/rsax931.py", line 74, 
in _init_libcrypto
raise OSError("Failed to initialize OpenSSL library 
(OPENSSL_init_crypto failed)")
OSError: Failed to initialize OpenSSL library (OPENSSL_init_crypto 
failed)
=== End ===

I was able to narrow it down to ssl.create_default_context() (invoked by
tornado.netutil which salt-ssh imports indirectly via tornado.iostream)
causing OPENSSL_init_crypto() to return 0 (error) on Ubuntu 18.04, but 1
(success) on Ubuntu 19.04.

=== Begin Ubuntu 18.04 ===
root@bob:~# PYTHONPATH=/var/tmp/.root_bdab0e_salt/py2 python 
Python 2.7.15+ (default, Nov 27 2018, 23:36:35) 
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ssl
>>> _client_ssl_defaults = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
[ctypes setup for libcrypto]
>>> libcrypto.OPENSSL_init_crypto(OPENSSL_INIT_NO_LOAD_CONFIG |
...  OPENSSL_INIT_ADD_ALL_CIPHERS |
...  OPENSSL_INIT_ADD_ALL_DIGESTS, None)
0
>>> 
=== End Ubuntu 18.04 ===


=== Begin Ubuntu 19.04 ===
root@bob:~# PYTHONPATH=/var/tmp/.root_bdab0e_salt/py2 python 
Python 2.7.15+ (default, Nov 27 2018, 23:36:35) 
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ssl
>>> _client_ssl_defaults = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
[ctypes setup for libcrypto]
>>> libcrypto.OPENSSL_init_crypto(OPENSSL_INIT_NO_LOAD_CONFIG |
...  OPENSSL_INIT_ADD_ALL_CIPHERS |
...  OPENSSL_INIT_ADD_ALL_DIGESTS, None)
1
>>> 
=== End Ubuntu 19.04 ===

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1797386

Title:
  [SRU] OpenSSL 1.1.1 to 18.04 LTS

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libwww-perl/+bug/1797386/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 706516] [NEW] unconditionally starts DenyHosts as a daemon in /etc/logrotate.d/denyhosts

2011-01-23 Thread Sascha Silbe
Public bug reported:

Binary package hint: denyhosts

We run DenyHosts as a cron job and have deactivated the DenyHosts daemon using 
update-rc.d and insserv.
Every once in a while, DenyHosts gets started in daemon mode anyway and causes 
the cron jobs to fail. Today I finally figured out why:

sunjammer:/etc# cat logrotate.d/denyhosts 
/var/log/denyhosts {
create 0640 root adm
missingok
weekly
rotate 7
compress
postrotate
/etc/init.d/denyhosts restart  /dev/null
endscript
}
sunjammer:/etc#

Not only does it use /etc/init.d/foo directly instead of calling
invoke-rc.d, but it also starts a daemon that has been explicitly
configured not to start.

** Affects: denyhosts (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/706516

Title:
  unconditionally starts DenyHosts as a daemon in
  /etc/logrotate.d/denyhosts

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 42057] Re: installer: no option to rename existing VG

2010-09-15 Thread Sascha Silbe
No idea, I've stopped using Ubuntu on real hosts (only VMs for testing
now) so I haven't tried the LVM support in the installer for a long
time.

-- 
installer: no option to rename existing VG
https://bugs.launchpad.net/bugs/42057
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390037] Re: version 3.10-5 is available

2010-05-30 Thread Sascha Silbe
Thanks!

-- 
version 3.10-5 is available
https://bugs.launchpad.net/bugs/390037
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 421336] Re: package aiccu 20070115-9 failed to install/upgrade: subprocess post-installation script returned error exit status 255

2010-05-30 Thread Sascha Silbe
Debian has released a fixed version (20070115-11) in January. But given
that Ubuntu hasn't even triaged this bug I doubt it'll get fixed in the
LTS...

-- 
package aiccu 20070115-9 failed to install/upgrade: subprocess 
post-installation script returned error exit status 255
https://bugs.launchpad.net/bugs/421336
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 480407] Re: [needs-packaging] pyxpcom

2010-04-09 Thread Sascha Silbe
There's no reverse dependency because python-xpcom isn't packaged again
yet (see #352968 for the previous removal of python-xpcom). Catch-22.

See #459532 for an example of a package that requires python-xpcom. If you 
decide not to ship python-xpcom, you effectively make Sugar (the desktop / 
learning environment) unusable for the LTS as the web browser is used to 
download and install activities (applications) from activities.sugarlabs.org 
(the Sugar equivalent of addons.mozilla.org). Even more so since Ubuntu doesn't 
ship all of the most basic activities (e.g. Write is missing).
#364871 has another example for a package (pyjamas-desktop) breaking 
(indirectly via hulahop) due to python-xpcom being unavailable.

-- 
[needs-packaging] pyxpcom
https://bugs.launchpad.net/bugs/480407
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 184764] Re: vserver enabled kernel

2010-03-13 Thread Sascha Silbe
AFAICT there's still no vserver-enabled kernel in Ubuntu, so marking as
New as requested.


** Changed in: linux (Ubuntu)
   Status: Incomplete = New

-- 
vserver enabled kernel
https://bugs.launchpad.net/bugs/184764
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 534107] Re: sks build segfault

2010-03-08 Thread Sascha Silbe
FWIW SKS 1.1.1 backported from lucid to karmic seems to work fine - at
least it doesn't segfault immediately. Haven't tried simply rebuilding
SKS 1.1.0 as 1.1.1 contains fixes I wanted anyway.

-- 
sks build segfault
https://bugs.launchpad.net/bugs/534107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 533940] [NEW] SUDO_USER not tracked in git

2010-03-07 Thread Sascha Silbe
Public bug reported:

Binary package hint: etckeeper

etckeeper has special code to use SUDO_USER as the committer name, but
it doesn't work:

r...@buildslave-ubuntu-lucid-64bit:/etc# echo $SUDO_USER
silbe
r...@buildslave-ubuntu-lucid-64bit:/etc# git log HEAD^..|cat
commit 80529e8bd3c5f9d4b15b827718e0c324dc240c11
Author: root r...@buildslave-ubuntu-lucid-64bit.sugarlabs.org
Date:   Sun Mar 7 13:30:57 2010 -0500

fully automatic upgrades


A quick guess would be that GIT_COMMITTER_NAME and GIT_COMMITTER_EMAIL (used in 
/etc/etckeeper/commit.d/50vcs-commit) got replaced by GIT_COMMITTER_IDENT 
(documented in man git-var).

** Affects: etckeeper (Ubuntu)
 Importance: Undecided
 Status: New

-- 
SUDO_USER not tracked in git
https://bugs.launchpad.net/bugs/533940
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 533940] Re: SUDO_USER not tracked in git

2010-03-07 Thread Sascha Silbe
Ah, ubuntu-bug it is now, thanks for the hint. I've tried to use reportbug 
(like I'm used to from Debian) in the past but that didn't work back then, so I 
just used launchpad (which is a bit of a PITA because I have to use a browser 
and need to be online).
Since I don't seem to be able to amend an existing bug, I'll paste the output 
inline:

SourcePackage: etckeeper
Package: etckeeper 0.41ubuntu3
PackageArchitecture: all
Tags: lucid
ProblemType: Bug
ProcEnviron:
  LC_TIME=C
  LC_CTYPE=en_US.UTF-8
  LC_COLLATE=C
  PATH=(custom, no user)
  LANG=en_US.UTF-8
  SHELL=/bin/bash
Uname: Linux 2.6.32-13-generic x86_64
Dependencies:
  coreutils 7.4-2ubuntu2
  debconf 1.5.28ubuntu2
  debconf-i18n 1.5.28ubuntu2
  dpkg 1.15.5.6ubuntu1
  findutils 4.4.2-1build1
  gcc-4.4-base 4.4.3-3ubuntu1
  libacl1 2.2.49-2
  libattr1 1:2.4.44-1
  libc-bin 2.11.1-0ubuntu4
  libc6 2.11.1-0ubuntu4
  libgcc1 1:4.4.3-3ubuntu1
  liblocale-gettext-perl 1.05-6
  libselinux1 2.0.89-4
  libstdc++6 4.4.3-3ubuntu1
  libtext-charwidth-perl 0.04-6
  libtext-iconv-perl 1.7-2
  libtext-wrapi18n-perl 0.06-7
  lzma 4.43-14ubuntu2
  perl-base 5.10.1-8ubuntu1
  tzdata 2010c-1
Architecture: amd64
Date: Sun Mar  7 15:14:04 2010
ProcVersionSignature: Ubuntu 2.6.32-13.18-generic
DistroRelease: Ubuntu 10.04

-- 
SUDO_USER not tracked in git
https://bugs.launchpad.net/bugs/533940
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 534107] [NEW] sks build segfault

2010-03-07 Thread Sascha Silbe
Public bug reported:

Binary package hint: sks

sks build immediately segfaults:

debian-...@lightwave:~$ sks build /var/lib/sks/dump/*.pgp -n 10 -cache 100
DB_ENV-log_put interface requires an environment configured for the logging 
subsystem
Segmentation fault (core dumped)

ProblemType: Bug
Architecture: amd64
Date: Sun Mar  7 19:07:40 2010
DistroRelease: Ubuntu 9.10
Package: sks 1.1.0-4
ProcVersionSignature: Ubuntu 2.6.31-17.54-server
SourcePackage: sks
Uname: Linux 2.6.31-17-server x86_64

** Affects: sks (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
sks build segfault
https://bugs.launchpad.net/bugs/534107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 534107] Re: sks build segfault

2010-03-07 Thread Sascha Silbe

** Attachment added: core dump
   http://launchpadlibrarian.net/40456775/core

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40456371/Dependencies.txt

** Attachment added: ProcEnviron.txt
   http://launchpadlibrarian.net/40456372/ProcEnviron.txt

-- 
sks build segfault
https://bugs.launchpad.net/bugs/534107
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 494591] Re: Ship 0.8.9

2010-01-26 Thread Sascha Silbe
Thanks for updating telepathy-gabble on 10.04!

-- 
Ship 0.8.9
https://bugs.launchpad.net/bugs/494591
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 494591] Re: Ship 0.8.9

2010-01-19 Thread Sascha Silbe
Same rationale applies to getting 0.8.9 into lucid.

-- 
Ship 0.8.9
https://bugs.launchpad.net/bugs/494591
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 325706] Re: [jaunty] Xephyr fails with D-Bus AccessDenied

2010-01-06 Thread Sascha Silbe
 Hard to fix since we can't clutter the config file with values until 100.
Timo Aaltonen suggested (in comment #18) to disable the DBus stuff altogether 
since it's unused. That should be an easy enough fix; is there a reason not to 
go that route?

-- 
[jaunty] Xephyr fails with D-Bus AccessDenied
https://bugs.launchpad.net/bugs/325706
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330304] Re: synce-hal: should conflict with odccm

2009-12-04 Thread Sascha Silbe
Has been fixed in the meantime, probably as a sideeffect of syncing with
Debian.

-- 
synce-hal: should conflict with odccm
https://bugs.launchpad.net/bugs/330304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 390037] [NEW] version 3.10-5 is available

2009-06-20 Thread Sascha Silbe
Public bug reported:

Binary package hint: squeak-vm

squeak-vm 3.10-5 is available [1,2] and - unlike 3.9.8 - fully usable
for Sugar [3]. Would be nice to get this into karmic.


[1] http://www.squeakvm.org/unix/index.html
[2] http://www.squeakvm.org/unix/release/Squeak-3.10-5.src.tar.gz
[3] http://www.sugarlabs.org/

** Affects: squeak-vm (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: squeak-vm (Debian)
 Importance: Unknown
 Status: Unknown

** Bug watch added: Debian Bug tracker #533845
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533845

** Also affects: squeak-vm (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=533845
   Importance: Unknown
   Status: Unknown

-- 
version 3.10-5 is available
https://bugs.launchpad.net/bugs/390037
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-05-30 Thread Sascha Silbe
I can now confirm it works using KVM-85 (on a Debian lenny host).

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-05-10 Thread Sascha Silbe
Happens for Fedora Rawhide as well now (Fedora Bug #500057 [1]), so most
likely an upstream bug.

[1] https://bugzilla.redhat.com/show_bug.cgi?id=500057


** Bug watch added: Red Hat Bugzilla #500057
   https://bugzilla.redhat.com/show_bug.cgi?id=500057

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-05-10 Thread Sascha Silbe
** Bug watch added: freedesktop.org Bugzilla #21661
   https://bugs.freedesktop.org/show_bug.cgi?id=21661

** Also affects: xorg-server via
   https://bugs.freedesktop.org/show_bug.cgi?id=21661
   Importance: Unknown
   Status: Unknown

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-22 Thread Sascha Silbe
Care to elaborate why a host-side change is necessary? In my case, the
host isn't running Ubuntu, so whether or not it gets into jaunty is
irrelevant.

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-06 Thread Sascha Silbe

** Attachment added: Output of apt-cache policy: just the standard repos
   http://launchpadlibrarian.net/24858303/apt-policy.txt

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-06 Thread Sascha Silbe

** Attachment added: Xorg.0.log (no devices found, after update)
   http://launchpadlibrarian.net/24858161/Xorg.0.log

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-06 Thread Sascha Silbe

** Attachment added: dpkg.log excerpt containing all updates done yesterday
   http://launchpadlibrarian.net/24858215/dpkg.log

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] Re: [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-06 Thread Sascha Silbe

** Attachment added: Xorg.0.log.old (working, before update)
   http://launchpadlibrarian.net/24858284/Xorg.0.log.old

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 356133] [NEW] [jaunty] vesa driver stopped working (no devices found) inside KVM after X update

2009-04-06 Thread Sascha Silbe
Public bug reported:

Binary package hint: xserver-xorg-video-vesa

After an update yesterday (including xorg packages, but not xserver-
xorg-video-vesa), X stopped working inside KVM:

(II) VESA: driver for VESA chipsets: vesa
(WW) Falling back to old probe method for vesa
(EE) No devices detected.

** Affects: xserver-xorg-video-vesa (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[jaunty] vesa driver stopped working (no devices found) inside KVM after X 
update
https://bugs.launchpad.net/bugs/356133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 338395] Re: distutils appends '/local' to to user-specified install prefix

2009-03-15 Thread Sascha Silbe
This breaks the whole sugar-jhbuild environment [1] on Ubuntu Jaunty as
Python packages will install to the wrong path.

[1] http://wiki.sugarlabs.org/go/DevelopmentTeam/Jhbuild

-- 
distutils appends '/local' to to user-specified install prefix
https://bugs.launchpad.net/bugs/338395
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 327671] Re: python-gconf: built with rpath

2009-03-12 Thread Sascha Silbe
Reported at Debian as #519462.

[1] http://bugs.debian.org/

-- 
python-gconf: built with rpath
https://bugs.launchpad.net/bugs/327671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 334457] [NEW] libpango1.0-0: /usr/lib/libpangocairo-1.0.so.0.2002.3 contains RPATH setting

2009-02-25 Thread Sascha Silbe
Public bug reported:

Binary package hint: libpango1.0-0

/usr/lib/libpangocairo-1.0.so.0.2002.3 contains an RPATH setting, causing third 
party software like sugar-jhbuild to fail under certain circumstances (see [1] 
for an example of problems caused by this - the actual bug caused by 
libpango1.0-0 is a similar, but different one).
Debians current opinion on rpath [2] seems to be that it should NOT be set, 
except under very rare circumstances.
I haven't tested whether Debians packages contain the rpath setting as well, so 
it might be an upstream packaging bug.

Steps to reproduce:
1. install chrpath
2. chrpath -l /usr/lib/libpangocairo-1.0.so.0.2002.3

Results:
/usr/lib/libpangocairo-1.0.so.0.2002.3: RPATH=/usr/lib

Expected:
no rpath setting

[1] http://dev.sugarlabs.org/ticket/111
[2] http://wiki.debian.org/RpathIssue

** Affects: pango1.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
libpango1.0-0: /usr/lib/libpangocairo-1.0.so.0.2002.3 contains RPATH setting
https://bugs.launchpad.net/bugs/334457
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 334457] Re: libpango1.0-0: /usr/lib/libpangocairo-1.0.so.0.2002.3 contains RPATH setting

2009-02-25 Thread Sascha Silbe
I noticed the issue on Ubuntu intrepid. Sorry for not including that in
the original report (an entry field for that would be great).

-- 
libpango1.0-0: /usr/lib/libpangocairo-1.0.so.0.2002.3 contains RPATH setting
https://bugs.launchpad.net/bugs/334457
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330710] [NEW] python-gnome: built with rpath

2009-02-17 Thread Sascha Silbe
Public bug reported:

/usr/lib/python-support/python-gnome2/python2.5/gtk-2.0/gnomevfs/_gnomevfs.so 
contains an RPATH setting, causing third party software like sugar-jhbuild to 
fail under certain circumstances (see [1] for an example of problems caused by 
this - the actual bug caused by python-gnome2 is a similar, but different one).
Debians current opinion on rpath [2] seems to be that it should NOT be set, 
except under very rare circumstances.
I haven't tested whether Debians packages contain the rpath setting as well, so 
it might be an upstream packaging bug.
python-gnome2-desktop and python-gnome2-extras might have the same issue, 
haven't tested this.

Steps to reproduce:
1. install chrpath
2. chrpath -l 
/usr/lib/python-support/python-gnome2/python2.5/gtk-2.0/gnomevfs/_gnomevfs.so

Results:
/usr/lib/python-support/python-gnome2/python2.5/gtk-2.0/gnomevfs/_gnomevfs.so: 
RPATH=/usr/lib

Expected:
no rpath setting

[1] http://dev.sugarlabs.org/ticket/111
[2] http://wiki.debian.org/RpathIssue

** Affects: python-gnome (Ubuntu)
 Importance: Undecided
 Status: New

-- 
python-gnome: built with rpath
https://bugs.launchpad.net/bugs/330710
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330304] [NEW] synce-hal: should conflict with odccm

2009-02-16 Thread Sascha Silbe
Public bug reported:

Binary package hint: synce-hal

synce-hal doesn't work while odccm is running:

Feb 16 23:19:36 elaine hal-dccm[10148]: CRITICAL: check_interface_cb: unable to 
listen on rndis port (990), server invalid
Feb 16 23:19:36 elaine hal-dccm[10148]: CRITICAL: check_interface_cb: unable to 
listen on legacy port (5679), server invalid


Probably for this reason, the Debian odccm package conflicts with synce-hal:

Package: odccm
Priority: optional
Section: utils
Installed-Size: 168
Maintainer: Jonny Lamb jo...@debian.org
Architecture: amd64
Version: 0.11.1-4
Depends: libc6 (= 2.7-1), libdbus-1-3 (= 1.0.2), libdbus-glib-1-2 (= 0.71), 
libglib2.0-0 (= 2.16.0), libgnet2.0-0 (= 2.0.8), libhal1 (= 0.5.8.1), 
libsynce0
Conflicts: synce-hal
Filename: pool/main/o/odccm/odccm_0.11.1-4_amd64.deb
Size: 30008
MD5sum: a1d193d49c38dfde463a9872584aa313
SHA1: fd30c520b1c4594c3594a21351e87a4c30168c40
SHA256: d044617db5d14f67f8bface29a4ad3cbff7db8da97b8c8b12b25a0a99108bc86
Description: Daemon to keep a connection to Windows Mobile device
 odccm is a dccm-implementation for Windows Mobile devices. It
 responds to keep alives and provides other members of the SynCE
 suite of tools with details of the connected device.
Homepage: http://www.synce.org/
Tag: implemented-in::c, role::program


It probably makes more sense for synce-hal to conflict on odccm than the other 
way round, so I'm filing this against synce-hal.

** Affects: synce-hal (Ubuntu)
 Importance: Undecided
 Status: New

-- 
synce-hal: should conflict with odccm
https://bugs.launchpad.net/bugs/330304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 330304] Re: synce-hal: should conflict with odccm

2009-02-16 Thread Sascha Silbe
Actually, it seems the issue is a bit more complex, as synce-sync-engine
explicitly depends on odccm. So synce-hal probably should Provide odccm
as well or something like that.

-- 
synce-hal: should conflict with odccm
https://bugs.launchpad.net/bugs/330304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 327671] [NEW] python-gconf: built with rpath

2009-02-10 Thread Sascha Silbe
Public bug reported:

Binary package hint: python-gconf

/usr/lib/python-support/python-gconf/python2.5/gtk-2.0/gconf.so contains an 
RPATH setting, causing third party software like sugar-jhbuild to fail under 
certain circumstances [1].
Debians current opinion on rpath [2] seems to be that it should NOT be set, 
except under very rare circumstances.
Please note that the library search order mentioned in [2] seems to be 
incorrect: LD_LIBRARY_PATH does NOT override rpath, so (apart from modifying 
the installed library with chrpath) there's no workaround.
I haven't tested whether Debians packages contain the rpath setting as well, so 
it might be an upstream packaging bug.

Steps to reproduce:
1. install chrpath
2. chrpath -l /usr/lib/python-support/python-gconf/python2.5/gtk-2.0/gconf.so

Results:
/usr/lib/python-support/python-gconf/python2.5/gtk-2.0/gconf.so: RPATH=/usr/lib

Expected:
no rpath setting


[1] http://dev.sugarlabs.org/ticket/111
[2] http://wiki.debian.org/RpathIssue

** Affects: gnome-python (Ubuntu)
 Importance: Undecided
 Status: New

-- 
python-gconf: built with rpath
https://bugs.launchpad.net/bugs/327671
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 72599] Re: Option no-addresses spelled wrong in man krb.conf (/usr/share/man/man5/krb5.conf.5.gz)

2008-07-14 Thread Sascha Silbe
OK, then let's close this bug for now. The machine I could test it on needs 
repair, which won't happen in the near future.
Thanks!


** Changed in: krb5 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Option no-addresses spelled wrong in man krb.conf 
(/usr/share/man/man5/krb5.conf.5.gz)
https://bugs.launchpad.net/bugs/72599
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 72599] Re: Option no-addresses spelled wrong in man krb.conf (/usr/share/man/man5/krb5.conf.5.gz)

2008-07-14 Thread Sascha Silbe
OK, then let's close this bug for now. The machine I could test it on needs 
repair, which won't happen in the near future.
Thanks!


** Changed in: krb5 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Option no-addresses spelled wrong in man krb.conf 
(/usr/share/man/man5/krb5.conf.5.gz)
https://bugs.launchpad.net/bugs/72599
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 148037] Re: blender crashes on camera view

2008-05-14 Thread Sascha Silbe
Similar issue here. Blender 2.44-2ubuntu2 (gutsy) crashes when switching
to camera view. Backtrace:

(gdb) bt full
#0  0xb6c990fd in ?? () from /usr/lib/dri/radeon_dri.so
No symbol table info available.
#1  0x0004 in ?? ()
No symbol table info available.
#2  0x0198 in ?? ()
No symbol table info available.
#3  0xbfda1c08 in ?? ()
No symbol table info available.
#4  0xb6c8116c in radeonEmitVbufPrim () from /usr/lib/dri/radeon_dri.so
No symbol table info available.
#5  0xb6d2c1b5 in ?? () from /usr/lib/dri/radeon_dri.so
No symbol table info available.
#6  0x08b07608 in ?? ()
No symbol table info available.
#7  0x0001 in ?? ()
No symbol table info available.
#8  0x0002 in ?? ()
No symbol table info available.
#9  0x in ?? ()
No symbol table info available.


lspci output (graphics card only):
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV200 QW [Radeon 
7500]


Using the open source ATI driver (Driver ati in xorg.conf) with DRI enabled. 
Works fine with several games.

-- 
blender crashes on camera view
https://bugs.launchpad.net/bugs/148037
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152109] Re: gsm/startx will ignore xorg.conf resolution settings and run with very low resolution

2008-04-24 Thread Sascha Silbe
FWIW, I noticed that while the order of the modes for xrandr is usually
from highest resolution to lowest resolution, the 1024x768 mode shows up
first on this system:

[EMAIL PROTECTED]:~$ xrandr 
Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 1600 x 1200
VGA-0 connected 1280x1024+0+0 (normal left inverted right) 300mm x 230mm
   1024x768   85.0 +   84.9 75.1  
   1600x1200  75.0  
   1280x1024  84.8*75.0  
   1280x960   84.9  
   800x60084.9 75.0  
   640x48084.6 75.0 60.0  
   720x40070.1  
DVI-0 disconnected (normal left inverted right)
S-video disconnected (normal left inverted right)
[EMAIL PROTECTED]:~$ 


xrandr -s 2 has been called before this, so it's now at 1280x1024 instead of 
the default 1024x768.

-- 
gsm/startx will ignore xorg.conf resolution settings and run with very low 
resolution
https://bugs.launchpad.net/bugs/152109
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 42019] Re: installer: grub password not verified

2008-04-15 Thread Sascha Silbe
Thanks!

-- 
installer: grub password not verified
https://bugs.launchpad.net/bugs/42019
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 152109] Re: gsm/startx will ignore xorg.conf resolution settings and run with very low resolution

2008-03-27 Thread Sascha Silbe
Having the same problem after upgrading to gutsy. The X server correctly 
detects all modes and I can switch to higher resolutions using xrandr, but 
since ion3 doesn't properly cope with that (the additional screen space does 
not get used), I'm now restricted to 1024x768. This happens both with gdm and 
startx.
Hardware: ATI Radeon 7500 on AGP (lspci: Radeon RV200 QW, Xorg: Radeon 7500 
QW), AOC Spectrum (Xorg: model a790) on VGA

What exactly do you need to reproduce and/or fix this bug? The bug
status was set to Incomplete, but no explanation given.

-- 
gsm/startx will ignore xorg.conf resolution settings and run with very low 
resolution
https://bugs.launchpad.net/bugs/152109
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 66615] Re: upstart breaks inittab

2007-07-29 Thread Sascha Silbe
Any chance of getting the event.d file installed by daemontools-
installer instead of the init.d entry?

-- 
upstart breaks inittab
https://bugs.launchpad.net/bugs/66615
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 42264] Re: language pack po files drop cflag comment which causes segfaults in e. g. 'dd'

2007-06-17 Thread Sascha Silbe
OK. I feared it wouldn't even spit out an error on the command line. So
it's just back to normal.

-- 
language pack po files drop cflag comment which causes segfaults in e. g. 'dd'
https://bugs.launchpad.net/bugs/42264
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 42264] Re: language pack po files drop cflag comment which causes segfaults in e. g. 'dd'

2007-06-16 Thread Sascha Silbe
What exactly do you mean with segfault detection is switched off now?

-- 
language pack po files drop cflag comment which causes segfaults in e. g. 'dd'
https://bugs.launchpad.net/bugs/42264
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55463] Re: Several services no longer startup automatically

2007-02-03 Thread Sascha Silbe
Same problem here, avahi-daemon doesn't get started anymore (there are
no symlinks in /etc/rc?.d). Running dpkg-reconfigure -plow avahi-
daemon doesn't help, though.

-- 
Several services no longer startup automatically
https://launchpad.net/bugs/55463

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55463] Re: Several services no longer startup automatically

2007-02-03 Thread Sascha Silbe
Editing /etc/default/avahi-daemon to enable avahi-daemon (after reading
the init script, since it just aborted silently) AND running dpkg-
reconfigure -plow avahi-daemon did the trick.

-- 
Several services no longer startup automatically
https://launchpad.net/bugs/55463

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 81388] sketch throws exception upon start

2007-01-24 Thread Sascha Silbe
Public bug reported:

Binary package hint: sketch

The dapper version of sketch doesn't work at all:

[EMAIL PROTECTED]:~$ sketch 
Traceback (most recent call last):
  File /usr/bin/sketch, line 34, in ?
Sketch.main.main()
  File /usr/lib/sketch-0.6.15/Sketch/Base/main.py, line 148, in main
run_script = options.run_script)
  File /usr/lib/sketch-0.6.15/Sketch/UI/skapp.py, line 184, in __init__
geometry = geometry)
  File /usr/lib/sketch-0.6.15/Sketch/UI/skapp.py, line 103, in __init__
self.init_tk(screen_name, geometry)
  File /usr/lib/sketch-0.6.15/Sketch/UI/skapp.py, line 213, in init_tk
geometry = geometry)
  File /usr/lib/sketch-0.6.15/Sketch/UI/skapp.py, line 108, in init_tk
className = self.tk_class_name)
  File /usr/lib/python2.4/lib-tk/Tkinter.py, line 1569, in __init__
self.tk = _tkinter.create(screenName, baseName, className, interactive, 
wantobjects, useTk, sync, use)
TypeError: function takes at most 4 arguments (8 given)

** Affects: skencil (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
sketch throws exception upon start
https://launchpad.net/bugs/81388

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 5347] Re: sketch does not start

2007-01-24 Thread Sascha Silbe
As reported in a dupe to this one (bug #81388), this is still an issue
on dapper (Long Time Support version).

-- 
sketch does not start
https://launchpad.net/bugs/5347

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 81388] Re: sketch throws exception upon start

2007-01-24 Thread Sascha Silbe
*** This bug is a duplicate of bug 5347 ***

Sorry for the dupe. Didn't find the original report because the search
excludes rejected bugs by default.

-- 
sketch throws exception upon start
https://launchpad.net/bugs/81388

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 53609] Re: uml_switch doesn't start via /etc/init.d/uml-utilities

2007-01-22 Thread Sascha Silbe
Is there a chance to get this fix into dapper?

-- 
uml_switch doesn't start via /etc/init.d/uml-utilities
https://launchpad.net/bugs/53609

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57486] Re: gpsd doesn't start when USB GPS is plugged in

2007-01-22 Thread Sascha Silbe
Is there a chance to get the dapper version fixed?

-- 
gpsd doesn't start when USB GPS is plugged in
https://launchpad.net/bugs/57486

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57486] Re: gpsd doesn't start when USB GPS is plugged in

2007-01-22 Thread Sascha Silbe
Done [1].

[1] https://bugs.launchpad.net/dapper-backports/+bug/80957

-- 
gpsd doesn't start when USB GPS is plugged in
https://launchpad.net/bugs/57486

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 53609] Re: uml_switch doesn't start via /etc/init.d/uml-utilities

2007-01-22 Thread Sascha Silbe
Done [1].

[1] https://launchpad.net/dapper-backports/+bug/80960

-- 
uml_switch doesn't start via /etc/init.d/uml-utilities
https://launchpad.net/bugs/53609

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 46663] Re: hangman doesn't find wordlist and refuses to start

2006-12-25 Thread Sascha Silbe
I'm using the LTS release (dapper) and currently don't plan to use a
short-term version, so I cannot test it on edgy, sorry.

-- 
hangman doesn't find wordlist and refuses to start
https://launchpad.net/bugs/46663

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 74868] /etc/init.d/uml-utilities: need to create directory /var/run/uml-utilities

2006-12-07 Thread Sascha Silbe
Public bug reported:

Binary package hint: uml-utilities

/etc/init.d/uml-utilities doesn't work because /var/run/uml-utilities doesn't 
exist. Even if I create it manually, it will disappear after a reboot since 
/var/run is on tmpfs.
The init script needs to create and chown this directory so uml_switch can use 
it.

** Affects: uml-utilities (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
/etc/init.d/uml-utilities: need to create directory /var/run/uml-utilities
https://launchpad.net/bugs/74868

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 31569] Re: kde doesn't use /usr/share/applications/ooo2-impress.desktop

2006-10-12 Thread Sascha Silbe
On a fresh dapper (6.06.1) install, Open Office is started, so this
seems to be fixed. Thanks!

-- 
kde doesn't use /usr/share/applications/ooo2-impress.desktop
https://launchpad.net/bugs/31569

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 49719] Re: #define PRISM2_NON_VOLATILE_DOWNLOAD commented out in hostap_config.h

2006-09-26 Thread Sascha Silbe
Same issue here, except that I don't have Windows, so I cannot use it to
flash the card.

-- 
#define PRISM2_NON_VOLATILE_DOWNLOAD commented out in hostap_config.h
https://launchpad.net/bugs/49719

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 31126] Re: Doesn't check for failure due to full filesystem

2006-09-20 Thread Sascha Silbe
Just happened for me again, too:

[...]
Setting up linux-image-2.6.15-27-386 (2.6.15-27.48) ...

gzip: stdout: No space left on device
Searching for GRUB installation directory ... found: /boot/grub
[...]
[EMAIL PROTECTED]:~# gzip -t /boot/initrd.img-2.6.15-27-386 

gzip: /boot/initrd.img-2.6.15-27-386: unexpected end of file


So now the default grub entry points to an unbootable kernel. :(
If it's hard to fix initramfs-tools, please at least use gzip -t to check if 
the initrd has been successfully created.

-- 
Doesn't check for failure due to full filesystem
https://launchpad.net/bugs/31126

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 61524] ion3 outdated in dapper

2006-09-20 Thread Sascha Silbe
Public bug reported:

The version of ion3 in dapper (20060107) has at least one annoying bug 
(statusbar causes layouts to shrink on every restart/login), probably 
several, that have already been fixed in later versions.
While 20060519 requires lua 5.1 and thus is not acceptable for dapper (lua 5.1 
has incompatible changes), 20060326 probably is fine.

** Affects: ion3 (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
ion3 outdated in dapper
https://launchpad.net/bugs/61524

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57549] /usr/share/man/man3/open_memstream.3.gz is a dangling symlink

2006-08-24 Thread Sascha Silbe
Public bug reported:

Binary package hint: manpages-dev

Reported by cron.daily:

/etc/cron.daily/man-db:
mandb: warning: /usr/share/man/man3/open_memstream.3.gz is a dangling symlink


This link belongs to manpages-dev and points to the non-existant fmemopen.3.gz:

[EMAIL PROTECTED]:~$ dpkg -S /usr/share/man/man3/open_memstream.3.gz
manpages-dev: /usr/share/man/man3/open_memstream.3.gz
[EMAIL PROTECTED]:~$ ls -l /usr/share/man/man3/open_memstream.3.gz
lrwxrwxrwx 1 root root 13 2006-08-17 00:07 
/usr/share/man/man3/open_memstream.3.gz - fmemopen.3.gz
[EMAIL PROTECTED]:~$ ls -l /usr/share/man/man3/fmemopen.3.gz
ls: /usr/share/man/man3/fmemopen.3.gz: No such file or directory
[EMAIL PROTECTED]:~$ locate fmemopen
[EMAIL PROTECTED]:~$

** Affects: manpages (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
/usr/share/man/man3/open_memstream.3.gz is a dangling symlink
https://launchpad.net/bugs/57549

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57549] Re: /usr/share/man/man3/open_memstream.3.gz is a dangling symlink

2006-08-24 Thread Sascha Silbe
*** This bug is a duplicate of bug 6416 ***

Sorry for the dupe. I searched for open_memstream but Launchpad showed
no matches.

-- 
/usr/share/man/man3/open_memstream.3.gz is a dangling symlink
https://launchpad.net/bugs/57549

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57223] gpg-agent uses /usr/bin/pinentry-gtk instead of /usr/bin/pinentry

2006-08-22 Thread Sascha Silbe
Public bug reported:

Binary package hint: gnupg-agent

Even though /etc/alternatives/pinentry-x11 and
/etc/alternatives/pinentry point to /usr/bin/pinentry-qt, gpg-agent
tries to use the non-existent /usr/bin/pinentry-gtk (only pinentry-gtk-2
and pinentry-qt are installed), thus failing to work:

[EMAIL PROTECTED]:~$ ls -l /etc/alternatives/pinentry-x11
lrwxrwxrwx 1 root root 20 2006-08-17 12:50 /etc/alternatives/pinentry-x11 - 
/usr/bin/pinentry-qt
[EMAIL PROTECTED]:~$ ls -l /etc/alternatives/pinentry
lrwxrwxrwx 1 root root 20 2006-08-17 12:50 /etc/alternatives/pinentry - 
/usr/bin/pinentry-qt


7781  write(1, ERR 7 can\'t exec `/usr/bin/pinentry-gtk\': No such file or 
directory\n, 68 unfinished ...

** Affects: gnupg2 (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
gpg-agent uses /usr/bin/pinentry-gtk instead of /usr/bin/pinentry
https://launchpad.net/bugs/57223

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57223] Re: gpg-agent uses /usr/bin/pinentry-gtk instead of /usr/bin/pinentry

2006-08-22 Thread Sascha Silbe
D'oh! Forgot that this file even exists...
Sorry for the noise.


** Changed in: gnupg2 (Ubuntu)
   Status: Unconfirmed = Rejected

-- 
gpg-agent uses /usr/bin/pinentry-gtk instead of /usr/bin/pinentry
https://launchpad.net/bugs/57223

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 57287] X fails to find ATI Radeon chip after upgrade to xserver-xorg-core-1:1.0.2-0ubuntu10.3

2006-08-22 Thread Sascha Silbe
Public bug reported:

Binary package hint: xserver-xorg-core

After upgrading xserver-xorg-core from 1:1.0.2-0ubuntu10.1 to
1:1.0.2-0ubuntu10.3, X won't start anymore. The errors logged in
/var/log/Xorg.0.log are:

(EE) Failed to load /usr/lib/xorg/modules/extensions/libGLcore.so
(EE) Failed to load module GLcore (loader failed, 7)
(EE) No devices detected.


The graphics chip is an ATI Radeon Mobility U1 (PCI id 1002:4336).

** Affects: xorg-server (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
X fails to find ATI Radeon chip after upgrade to 
xserver-xorg-core-1:1.0.2-0ubuntu10.3
https://launchpad.net/bugs/57287

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 49361] Re: Wrong font path for xfonts-efont-unicode

2006-08-17 Thread Sascha Silbe
It is an issue NOW for me (i.e. this font doesn't work on my system
because of the wrong path), so please raise the importance.

-- 
Wrong font path for xfonts-efont-unicode
https://launchpad.net/bugs/49361

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39526] Re: wacom-tools init.d script is broken

2006-07-29 Thread Sascha Silbe
I had the same problem as Wouter. Checking
/etc/udev/rules.d/65-wacom.rules showed that udev creates a symlink
/dev/input/wacom, not /dev/wacom. After changing /etc/X11/xorg.conf to
use /dev/input/wacom instead of /dev/wacom, it works fine so far.

-- 
wacom-tools init.d script is broken
https://launchpad.net/bugs/39526

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 18661] Re: Temporary /tmp and /var/tmp

2006-06-29 Thread Sascha Silbe
Having sensitive data in swap is no better than having it on a normal
partition. If you employ encryption, you can do it the same way for both
swap and regular file systems (you could even use random keys for /tmp
and create the filesystem on boot), so nothing's gained (w.r.t.
confidentiality) by using tmpfs for /tmp.

Regarding /var/tmp: A usual policy is to clean files older (mtime) than
7 days. AFAIR this has been default on Debian potato.

-- 
Temporary /tmp and /var/tmp
https://launchpad.net/bugs/18661

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 18661] Re: Temporary /tmp and /var/tmp

2006-06-28 Thread Sascha Silbe
I'm running ALL of my systems successfully with a tmpfs as /tmp. Applications 
that need loads of space usually can be configured to use a different directory 
(on my system /cdtemp, which is a separate LV so it won't disturb anything 
else).
Systems with a real, but small /tmp (like all my systems before I switched to 
tmpfs) will run into exactly the same issues you mentioned, so that's not an 
argument against tmpfs.
The installer doesn't need to default to using tmpfs for /tmp, it just has to 
support it, so users who like it (and know how to configure or even fix their 
applications) can choose it at installation time, instead of having to boot 
single-user mode to change this (or reboot after changing fstab, which isn't 
much better).

-- 
Temporary /tmp and /var/tmp
https://launchpad.net/bugs/18661

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 42065] Re: installer: confusion about partition sizes (1000 vs. 1024 issue)

2006-06-20 Thread Sascha Silbe
It should at least be noted that there's a difference and what exactly
uses which unit.

-- 
installer: confusion about partition sizes (1000 vs. 1024 issue)
https://launchpad.net/bugs/42065

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs