Bug#646125: empathy: Certificate complaints of every connect despite selecting "remember"

2012-11-13 Thread Stefan Hajnoczi
On Tue, Nov 13, 2012 at 10:57 PM, Laurent Bigonville  wrote:
> tag 646125 + moreinfo
> thanks
>
> Hi,
>
> Are you still experiencing this issue?

I'm no longer using a Debian workstation, so it's not easy for me to
retest, sorry.

> If it's the case, are you running GNOME or an other desktop environment?

No GNOME.  I was using ratpoison

> Is gnome-keyring running?

No gnome-keyring-daemon, only polkit-gnome-authentication-agent-1.

Stefan


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



Bug#676374: [Qemu-trivial] [PATCH] Install 'bepo' keymap already included in Qemu source

2012-06-12 Thread Stefan Hajnoczi
On Fri, Jun 08, 2012 at 08:06:25PM +0200, fboit...@free.fr wrote:
> From: Frédéric Boiteux 
> 
> The 'bepo' layout (a french dvorak-like keyboard layout) was added
> about one year ago, (see commit 2a3c633c1eb8692716220195b6d3fe78b7e411d0),
> but I missed to declare to install it.
> 
> Signed-off-by: Frédéric Boiteux 
> ---
>  Makefile |3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Thanks, applied to the trivial patches tree:
https://github.com/stefanha/qemu/commits/trivial-patches

Stefan



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



Bug#646125: empathy: Certificate complaints of every connect despite selecting "remember"

2011-11-08 Thread Stefan Hajnoczi
I see the same problem on Debian testing, GTalk and Facebook Chat cause
a certificate verification dialog box to appear.  When I tell it to
remember the certificate it fails to do so.

This issue seems to affect Ubuntu too and there is a bug with some
activity there:

https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/828756

Stefan



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



Bug#640953: linux-image-3.0.0-1-amd64: CONFIG_KPROBE_EVENT is not set

2011-09-08 Thread Stefan Hajnoczi
Package: linux-2.6
Version: 3.0.0-3
Severity: normal

Please set CONFIG_KPROBE_EVENT so that perf-probe(1) can be used.  The
perf-probe(1) sub-command allows dynamic probes to be added to the
kernel.  This allows observing performance problems or other kernel
behavior without a kernel recompile.

CONFIG_KPROBE_EVENT builds only one source file and doesn't impose
additional requirements since most of the other tracing related options
are already enabled in linux-image-3.0.0-1-amd64.


-- Package-specific info:
** Version:
Linux version 3.0.0-1-amd64 (Debian 3.0.0-3) (b...@decadent.org.uk) (gcc 
version 4.5.3 (Debian 4.5.3-8) ) #1 SMP Sat Aug 27 16:21:11 UTC 2011

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-3.0.0-1-amd64 depends on:
ii  debconf [debconf-2.0] 1.5.40 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.99   tools for generating an initramfs
ii  linux-base3.3Linux image base package
ii  module-init-tools 3.16-1 tools for managing Linux kernel mo

Versions of packages linux-image-3.0.0-1-amd64 recommends:
ii  firmware-linux-free   3  Binary firmware for various driver

Versions of packages linux-image-3.0.0-1-amd64 suggests:
ii  grub-pc   1.99-11GRand Unified Bootloader, version 
pn  linux-doc-3.0.0(no description available)

Versions of packages linux-image-3.0.0-1-amd64 is related to:
pn  firmware-bnx2  (no description available)
pn  firmware-bnx2x (no description available)
pn  firmware-ipw2x00   (no description available)
pn  firmware-ivtv  (no description available)
ii  firmware-iwlwifi  0.33   Binary firmware for Intel Wireless
pn  firmware-linux (no description available)
pn  firmware-linux-nonfree (no description available)
pn  firmware-qlogic(no description available)
pn  firmware-ralink(no description available)
pn  xen-hypervisor (no description available)

-- debconf information:
  linux-image-3.0.0-1-amd64/postinst/ignoring-ramdisk:
  linux-image-3.0.0-1-amd64/prerm/removing-running-kernel-3.0.0-1-amd64: true
  linux-image-3.0.0-1-amd64/postinst/missing-firmware-3.0.0-1-amd64:
  linux-image-3.0.0-1-amd64/postinst/depmod-error-initrd-3.0.0-1-amd64: false



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



Bug#346483: privoxy logrotate script restarts daemon even when not currently running

2006-01-08 Thread Stefan Hajnoczi
Package: privoxy
Version: 3.0.3-5

The logrotate script restarts privoxy via invoke-rc.d before checking
that it is currently running.  The check for a running daemon is
performed for direct init-script invocation, but not when using
invoke-rc.d.  The following patch checks for a running daemon before
restarting privoxy.  I have also changed the mixture of spaces and
tabs to use only tabs.

Stefan Hajnoczi

privoxy-3.0.3/debian/logrotate
9,13c9,13
<   if [ -x /usr/sbin/invoke-rc.d ]; then
<   invoke-rc.d privoxy restart
<   else
<   if [ -f /var/run/privoxy.pid ]; then
<   /etc/init.d/privoxy restart > /dev/null
---
>   if [ -f /var/run/privoxy.pid ]; then
>   if [ -x /usr/sbin/invoke-rc.d ]; then
>   invoke-rc.d privoxy restart
>   else
>   /etc/init.d/privoxy restart > /dev/null
15c15
<   fi
---
>   fi