[Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum
So I've done some more thinking about this, and I had a bit of an aha!
moment.

While we *should* in fact stop using 'stop on runlevel [016]' or 'stop
on runlevel [!2345]', I think we can solve this without touching all of
those jobs.

/etc/init.d/sendsigs has this code:


# Upstart jobs have their own stop on clauses that sends
# SIGTERM/SIGKILL just like this, so if they're still running,
# they're supposed to be
for pid in $(initctl list | sed -n -e /process [0-9]/s/.*process 
//p); do
OMITPIDS=${OMITPIDS:+$OMITPIDS }-o $pid
done


It uses this to determine which pids not to kill because, presumably, upstart 
should be managing them.

However, this code is flawed. killall5 will kill the children of all of
these if they are multi process daemons or scripts running things. This
would only be solved by walking through /proc looking for these as
parent pids (and then doing the same again with the new list.. ).

However, this technique can actually be used to determine if there are
still jobs that are supposed to be stopped, but haven't finished
stopping yet. Since they should be listed as stop/(pre-stop|post-
stop|killed), we can determine exactly which pids we expect to go away.
Since upstart has its own idea of how long to wait before it kills
these, we should actually wait indefinitely.

I'm attaching a debdiff that solves the race as far as I can tell,
though I think it needs a good long look, since it could mean shutdowns
hang for a long time waiting (I'm especially curious if the pre-stop
/post-stop's are subject to kill timeout)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum

** Patch added: lp688541.diff
   
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+attachment/1767453/+files/lp688541.diff

** Changed in: sysvinit (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 690983] [NEW] package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2010-12-16 Thread Mauro Cecamore
Public bug reported:

During general upgrade.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: mysql-server-5.1 5.1.41-3ubuntu12.8
ProcVersionSignature: Ubuntu 2.6.32-26.48-generic 2.6.32.24+drm33.11
Uname: Linux 2.6.32-26-generic i686
Architecture: i386
Date: Thu Dec 16 08:53:26 2010
ErrorMessage: il sottoprocesso vecchio script di post-installation ha 
restituito lo stato di errore 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
Logs.var.log.daemon.log:
 
Logs.var.log.kern.log: Dec 16 09:00:53 digitalavenues-netbook kernel: [   
53.595533] type=1505 audit(1292486453.346:11):  operation=profile_load 
pid=748 name=/usr/sbin/mysqld
MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['mysql_upgrade_info', 'digitalavenues-netbook.pid', 
'ib_logfile1', 'ib_logfile0', 'debian-5.1.flag', 'ibdata1', 'unidav_sync', 
'mysql']
SourcePackage: mysql-dfsg-5.1
Title: package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: 
il sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

** Affects: mysql-dfsg-5.1 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/690983

Title:
  package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

-- 
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 690983] Re: package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2010-12-16 Thread Mauro Cecamore


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/690983

Title:
  package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

-- 
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 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Thomas Herve
Client, thanks for looking at it. As Björn mentioned there is not much
to say. I think I've identified one linked problem though, where the
service doesn't start sometimes: rabbitmq is tied to the existence of a
particular hostname (generally the one detected when first installed).

Since Maverick, NetworkManager seems to do some weird trick with
/etc/hosts, making the local hostname unresolvable at some points. At
least when it doesn't start, I get a can't resolve hostname error in
startup_err, which could map with what Björn is saying, where the
hostname can't be found at shutdown (presumably after NM did his job on
a laptop).

Björn: do you have anything in shutdown_err by any chance?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in ubuntu.
https://bugs.launchpad.net/bugs/670289

Title:
  Laptop won't shut down with rabbitmq running

-- 
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 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Björn Tillenius
To add further to Thomas' observations, after disconnecting NM, the
beginning of my /etc/hosts file look like this:

192.168.60.104|_ixia|___# Added by NetworkManager
127.0.0.1|__localhost.localdomain|__localhost
::1|ixia|___localhost6.localdomain6|localhost6
127.0.1.1|__ixia

If I comment out the first line (192.168.60.104), rabbitmq-multi status
and stop_all work as expected. Could it be that NetworkManager should
remove the added line in /etc/hosts when it disconnects from a network?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in ubuntu.
https://bugs.launchpad.net/bugs/670289

Title:
  Laptop won't shut down with rabbitmq running

-- 
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 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum
Also attaching the bash script that I used to test this, which simulates
a process taking a long time on SIGTERM without forking.. it *should*
work with sleep too, given the sendsigs change I posted, but when that
change is not there.. sendsigs kills the sleeps and ruins all the fun.

Below is the upstart job I used to run it. I tested this on lucid,
10.04.1, and without the sendsigs change, the script would continue to
run right up to the umounts and beyond despite having been stopped.
With the sendsigs change to wait, the test script would be sent SIGKILL
well before the end of the halt.

start on filesystem and net-device-up
stop on runlevel [016]

console output

kill timeout 20

exec /home/clint/test_dies_slowly.bash


** Attachment added: test_dies_slowly.bash
   
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+attachment/1767468/+files/test_dies_slowly.bash

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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


Re: [Bug 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Björn Tillenius
On Thu, Dec 16, 2010 at 08:12:49AM -, Thomas Herve wrote:
 Since Maverick, NetworkManager seems to do some weird trick with
 /etc/hosts, making the local hostname unresolvable at some points. At
 least when it doesn't start, I get a can't resolve hostname error in
 startup_err, which could map with what Björn is saying, where the
 hostname can't be found at shutdown (presumably after NM did his job on
 a laptop).

Right, this seems to be the issue somehow. I can reproduce the issue
without shutting down the laptop, if I disconnect any network that
NetworkManager is connected to. If NM isn't connected to anything,
rabbit-multi status says that rab...@ixia is not_running and
rabbitmq-multi stop_all hangs while trying to stop rab...@ixia.


 Björn: do you have anything in shutdown_err by any chance?

No, nothing.

-- 
Björn Tillenius | https://launchpad.net/~bjornt

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in ubuntu.
https://bugs.launchpad.net/bugs/670289

Title:
  Laptop won't shut down with rabbitmq running

-- 
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 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Björn Tillenius
FWIW, an ugly workaround to this bug is to place a file in /etc/rc0.d
and /etc/rc6.d that removes the line NetworkManager added before
rabbitmq is shut down. I'm attaching the file I'm using to do that.

** Attachment added: K19remove-nm-from-hosts
   
https://bugs.launchpad.net/ubuntu/+source/rabbitmq-server/+bug/670289/+attachment/1767484/+files/K19remove-nm-from-hosts

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in ubuntu.
https://bugs.launchpad.net/bugs/670289

Title:
  Laptop won't shut down with rabbitmq running

-- 
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 351307] Re: Libvirt NFS mount on boot.

2010-12-16 Thread Clint Byrum
Since libvirt-bin.conf comes up a runlevel [2345] .. its possible that
the network is not up yet.

This is because runlevel 2 is triggered when all automount filesystems
are mounted, and the loopback is up.

You can probably correct this issue by changing libvirt-bin.conf to be

start on net-device-up IFACE=eth0

But I don't think we could make that a generic change, since many
(most?) libvirt users will be just fine with runlevel 2.

We could do

start on runlevel [2345] or net-device-up IFACE=eth0

But that assumes that it fails to start when the network is
unavailable.. does it fail to start, or just start without the NFS
storage pool?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.
https://bugs.launchpad.net/bugs/351307

Title:
  Libvirt NFS mount on boot.

-- 
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 574665] Re: kvm + virtio disk corrupts large volumes (1TB).

2010-12-16 Thread Unlogic
Is there any way to speedup the backports process cause kvm 0.12.3 that
currently ships with Lucid has a few serious bugs which are fixed in
0.12.5.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.
https://bugs.launchpad.net/bugs/574665

Title:
  kvm + virtio disk corrupts large volumes (1TB).

-- 
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 691011] [NEW] package tomcat6 6.0.24-2u buntu1.5 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

2010-12-16 Thread Glabou
Public bug reported:

Binary package hint: tomcat6

while updating system.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: tomcat6 6.0.24-2ubuntu1.5
ProcVersionSignature: Ubuntu 2.6.32-27.49-server 2.6.32.26+drm33.12
Uname: Linux 2.6.32-27-server x86_64
Architecture: amd64
Date: Thu Dec 16 10:52:15 2010
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 2
InstallationMedia: Ubuntu-Server 10.04.1 LTS Lucid Lynx - Release amd64 
(20100816.2)
PackageArchitecture: all
SourcePackage: tomcat6
Title: package tomcat6 6.0.24-2ubuntu1.5 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 2

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


** Tags: amd64 apport-package lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.
https://bugs.launchpad.net/bugs/691011

Title:
  package tomcat6 6.0.24-2ubuntu1.5 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 2

-- 
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 691011] Re: package tomcat6 6.0.24-2ubunt u1.5 failed to install/upgrade: le sous-processus scri pt post-installation installé a retourné une err eur de sortie d'état 2

2010-12-16 Thread Glabou


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.
https://bugs.launchpad.net/bugs/691011

Title:
  package tomcat6 6.0.24-2ubuntu1.5 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 2

-- 
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 691011] Re: package tomcat6 6.0.24-2ubunt u1.5 failed to install/upgrade: le sous-processus scri pt post-installation installé a retourné une err eur de sortie d'état 2

2010-12-16 Thread Thierry Carrez
Paramétrage de tomcat6 (6.0.24-2ubuntu1.5) ...
Installation de la nouvelle version du fichier de configuration 
/etc/init.d/tomcat6 ...
/etc/default/tomcat6: 39: Syntax error: Unterminated quoted string
dpkg : erreur de traitement de tomcat6 (--configure) :
 le sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 2

Looks like you modified /etc/default/tomcat6 and it now contains an
error on line 39, preventing tomcat6 from restarting.

** Changed in: tomcat6 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.
https://bugs.launchpad.net/bugs/691011

Title:
  package tomcat6 6.0.24-2ubuntu1.5 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 2

-- 
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 672328] Re: vsftpd: discloses whether usernames are valid or not

2010-12-16 Thread Marc Deslauriers
Thanks for reporting this issue. Could you please give specific steps on
how to reproduce it?

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/672328

Title:
  vsftpd: discloses whether usernames are valid or not 

-- 
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 672328] Re: vsftpd: discloses whether usernames are valid or not

2010-12-16 Thread Marc Deslauriers
Also, could you please say which version of vsftpd on which version of
Ubuntu you are using?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/672328

Title:
  vsftpd: discloses whether usernames are valid or not 

-- 
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 683955] Re: Please upgrade tftpd-hpa in lucid to at least 5.0-14

2010-12-16 Thread Robbie Williamson
** Also affects: tftp-hpa (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Changed in: tftp-hpa (Ubuntu Lucid)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/683955

Title:
  Please upgrade tftpd-hpa in lucid to at least 5.0-14

-- 
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


Re: [Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Michael Biebl
2010/12/16 Clint Byrum cl...@fewbar.com:

 /etc/init.d/sendsigs has this code:


        # Upstart jobs have their own stop on clauses that sends
        # SIGTERM/SIGKILL just like this, so if they're still running,
        # they're supposed to be
        for pid in $(initctl list | sed -n -e /process [0-9]/s/.*process 
 //p); do
                OMITPIDS=${OMITPIDS:+$OMITPIDS }-o $pid
        done


 It uses this to determine which pids not to kill because, presumably, upstart 
 should be managing them.

 However, this code is flawed. killall5 will kill the children of all of
 these if they are multi process daemons or scripts running things.

This observation is correct. On the other hand, isn't this exactly
what the sendsigs script is for: clean up any remaining, stray
processes  which have not been stopped by its corresponding sysv init
script or upstart job (or have been e.g. started by the user)?

But I guess you are right, we should first stop all upstart jobs, give
them time to finish stopping, and then let sendsigs clean up anything
remaining afterwards.

 However, this technique can actually be used to determine if there are
 still jobs that are supposed to be stopped, but haven't finished
 stopping yet. Since they should be listed as stop/(pre-stop|post-
 stop|killed), we can determine exactly which pids we expect to go away.
 Since upstart has its own idea of how long to wait before it kills
 these, we should actually wait indefinitely.

 I'm attaching a debdiff that solves the race as far as I can tell,
 though I think it needs a good long look, since it could mean shutdowns
 hang for a long time waiting (I'm especially curious if the pre-stop
 /post-stop's are subject to kill timeout)

This code is still racy, afaics. What about upstart jobs, which are
not stopped by stop on runlevel [016]? They could receive their stop
signal at a point when your loop has already been run.

If you don't want to change existing jobs, we probably have to pick up
Ante's suggestion, and do the following in sendsigs:

1) run a for loop to wait for *all* running upstart jobs to stop.
upstart jobs which need to keep running past sendsigs (e.g. plymouth)
need to signal that using a similar mechanism like the killall5
sendsigs.d omit interface. I'd at least give upstart jobs 60secs time
to stop, so big databases etc have enough time to cleanly shutdown
2.) run a for loop and send SIGTERM all remaining processes, but do
*not* add upstart pids to $OMITPIDS
3.) send a final SIGKILL if any processes are left.


Regarding 1.), it would be nice to have a native C implementation in
upstart, instead of running initctl, grep and sleep manually.


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 683955] Re: [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

2010-12-16 Thread Chuck Short
** Summary changed:

- Please upgrade tftpd-hpa in lucid to at least 5.0-14
+ [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/683955

Title:
  [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

-- 
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 683955] Re: [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

2010-12-16 Thread Chuck Short
Tftp-hpa in lucid was shipped with a bug that when the log files are
rotated nothing is written in the log files after the restart. This has
been fixed in natty with a recent merge of tftp-hpa. I have backported
the back to lucid and have attached the debdiff to this bug.

To reproduce:

1. Install tftpd-hpa
2. Check to see if log files for tftpd-hpa is running.
3. Rotate the /etc/cron.daily/logrotate
4. Check to see if tftpd-hpa is writting to the log files.

If you have any questions please let me know.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/683955

Title:
  [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

-- 
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 683955] Re: [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

2010-12-16 Thread Chuck Short
Tftp-hpa in lucid was shipped with a bug that when the log files are
rotated nothing is written in the log files after the restart. This has
been fixed in natty with a recent merge of tftp-hpa. I have backported
the back to lucid and have attached the debdiff to this bug.

To reproduce:

1. Install tftpd-hpa
2. Check to see if log files for tftpd-hpa is running.
3. Rotate the /etc/cron.daily/logrotate
4. Check to see if tftpd-hpa is writting to the log files.

If you have any questions please let me know.


** Attachment added: patch
   
https://bugs.launchpad.net/ubuntu/natty/+source/tftp-hpa/+bug/683955/+attachment/1767807/+files/patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/683955

Title:
  [SRU] Please upgrade tftpd-hpa in lucid to at least 5.0-14

-- 
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 688922] Re: package samba 2:3.4.0-3ubuntu5.7 failed to install/upgrade:

2010-12-16 Thread Serge Hallyn
Thanks for reporting this bug and helping to make Ubuntu better.  Unfortunately,
the attached log files (especially Apttermlog, which would be the most helpful)
are corrupted.  Could you please attach /var/log/dpkg.log and 
/var/log/apt/term.log?

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/688922

Title:
  package samba 2:3.4.0-3ubuntu5.7 failed to install/upgrade:

-- 
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 688922] Re: package samba 2:3.4.0-3ubuntu5.7 failed to install/upgrade:

2010-12-16 Thread Serge Hallyn
(after you attach those files, please mark the bug as New again.
Thanks!)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/688922

Title:
  package samba 2:3.4.0-3ubuntu5.7 failed to install/upgrade:

-- 
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 689152] Re: package bind9 1:9.7.0.dfs g.P1-1ubuntu0.1 failed to install/upgrade: el subpro ceso script post-installation instalado devolvió el c ódigo de salida de error 1

2010-12-16 Thread Serge Hallyn
Thanks for reporting this bug and helping to make Ubuntu better.

The logs show that the bind9 configuration failed because of:

adduser: `/usr/sbin/useradd -d /var/cache/bind -g bind -s /bin/false -u
116 bind' devolvió el código de error 1. Saliendo.


Could you show the results of
grep bind /etc/group
grep bind /etc/passwd
grep 116 /etc/passwd
?

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/689152

Title:
  package bind9 1:9.7.0.dfsg.P1-1ubuntu0.1 failed to install/upgrade: el 
subproceso script post-installation instalado devolvió el código de salida de 
error 1

-- 
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 689248] Re: package bind9 1:9.7.0.dfs g.P1-1ubuntu0.1 failed to install/upgrade: el subpro ceso script post-installation instalado devolvió el c ódigo de salida de error 1

2010-12-16 Thread Serge Hallyn
Thanks for reporting this bug and helping to make Ubuntu better.

The logs show that bind9 failed to start, but don't say why.  Could you please
attach the result of 'grep named /var/log/syslog' ?

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/689248

Title:
  package bind9 1:9.7.0.dfsg.P1-1ubuntu0.1 failed to install/upgrade: el 
subproceso script post-installation instalado devolvió el código de salida de 
error 1

-- 
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 689115] Re: package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-16 Thread Serge Hallyn
Thanks for reporting this bug and helping to make ubuntu better.

The logs show that bind9 failed to start because /etc/resolv.conf was not a
symbolic link.  Depending on where the file came from, could you try renaming
your existing one

   mv /etc/resolv.conf /etc/resolv.conf.orig

and then re-try restarting bind9?

** Changed in: bind9 (Ubuntu)
   Status: New = Invalid

** Changed in: bind9 (Ubuntu)
   Status: Invalid = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/689115

Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

-- 
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 689783] Re: package bind9 1:9.7.1.dfs g.P2-2ubuntu0.1 failed to install/upgrade: ErrorMess age: el subproceso script post-installation instalado de volvió el código de salida de error 1

2010-12-16 Thread Serge Hallyn
Thanks for reporting this bug and helping to make Ubuntu better.

The logs show that bind9 failed to start because the directory

   /var/lib/named/dev

already existed.  Presumably this is from a previous installation.  In
any case, please go ahead and move that out of the way:

   mv /var/lib/named /var/lib/named.orig

and try starting bind9 again.

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/689783

Title:
  package bind9 1:9.7.1.dfsg.P2-2ubuntu0.1 failed to install/upgrade: 
ErrorMessage: el subproceso script post-installation instalado devolvió el 
código de salida de error 1

-- 
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 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Brian Murray
** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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 653405] Re: rabbitmq-server fails to start if hostname is unresolvable or has changed since first starting

2010-12-16 Thread Cerin
Clint, it was resolving, but I had two entries for localhost in my hosts
file, so ping currenthostname was coming back as oldhostname, and I
guess this was throwing off rabbitmq. After I removed the first entry, I
was able to install the latest deb without error.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to rabbitmq-server in ubuntu.
https://bugs.launchpad.net/bugs/653405

Title:
  rabbitmq-server fails to start if hostname is unresolvable or has changed 
since first starting

-- 
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 691215] [NEW] package vsftpd 2.2.2-3ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-16 Thread funsnail
Public bug reported:

Binary package hint: vsftpd

Installed package. Uninstalled package. Reinstalled package caused error
message. Package seems to be working properly.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: vsftpd 2.2.2-3ubuntu6
ProcVersionSignature: Ubuntu 2.6.32-26.48-generic 2.6.32.24+drm33.11
Uname: Linux 2.6.32-26-generic i686
AptOrdering:
 vsftpd: Install
 vsftpd: Configure
Architecture: i386
Date: Thu Dec 16 10:51:25 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
SourcePackage: vsftpd
Title: package vsftpd 2.2.2-3ubuntu6 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

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


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/691215

Title:
  package vsftpd 2.2.2-3ubuntu6 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1

-- 
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 691215] Re: package vsftpd 2.2.2-3ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-16 Thread funsnail


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.
https://bugs.launchpad.net/bugs/691215

Title:
  package vsftpd 2.2.2-3ubuntu6 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1

-- 
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 620441] Re: MySQL upstart stop job does not cleanly shutdown mysql

2010-12-16 Thread Robert Citek
We got bitten by this bug and are now checking tables on our DBs.
What's interesting is that we made changes to the mysql upstart script
but they do not seem to be taking effect.  In particular:

1) changes to the kill timeout.  Changing the value to 300 had no
effect.  Even after issuing an initctl reload-configuration, upstart
still appeared to kill mysqld after about 5 seconds.  We are still in
the process of confirming.

2) commented out respawn.  This also had no effect on mysqladmin stop,
which would cleanly stop mysql, but almost immediatly, mysqld would
restart.  Here's a sample:

$ (  set -x ; sudo mysqladmin status ; sudo mysqladmin shutdown ; sleep 10 ; 
sudo mysqladmin status )
+ sudo mysqladmin status
Uptime: 92  Threads: 1  Questions: 7882  Slow queries: 1  Opens: 71 Flush 
tables: 1  Open tables: 64  Queries per second avg: 85.673
+ sudo mysqladmin shutdown
+ sleep 10
+ sudo mysqladmin status
Uptime: 11  Threads: 1  Questions: 919  Slow queries: 1  Opens: 49 Flush 
tables: 1  Open tables: 42  Queries per second avg: 83.545

This is on Ubuntu Lucid. 10.04 running mysql-server-5.1
(5.1.41-3ubuntu12.6)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/620441

Title:
  MySQL upstart stop job does not cleanly shutdown mysql

-- 
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


Re: [Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum
On Thu, 2010-12-16 at 15:45 +, Michael Biebl wrote:
 2010/12/16 Clint Byrum cl...@fewbar.com:
 
  
  I'm attaching a debdiff that solves the race as far as I can tell,
  though I think it needs a good long look, since it could mean shutdowns
  hang for a long time waiting (I'm especially curious if the pre-stop
  /post-stop's are subject to kill timeout)
 
 This code is still racy, afaics. What about upstart jobs, which are
 not stopped by stop on runlevel [016]? They could receive their stop
 signal at a point when your loop has already been run.
 

Indeed, there is still a race I think now that I dig through upstart's
code a bit. If any of the jobs in the stop/!waiting state have 'stop on
stopped' jobs that will be stopped after they stop, the event isn't
emitted until *after* the transition to stop/waiting.

thread A (upstart job foo):

start/running - stop/pre-stop
sends TERM to owned process
stop/pre-stop - stop/killed
process dies
stop/killed - stop/waiting
emit stopped JOB=foo

thread B (upstart job baz)
start/running - stop/pre-stop
sends kill to owned process
stop/pre-stop - stop/killed
process dies
stop/killed - stop/waiting

thread C (sleep loop)

runs initctl list
greps
sleeps
runs initctl list
greps
sleeps

list is handled by doing a get all jobs command first, and then
individual status commands for each job, so its entirely possible that
we will ask for the status of baz and it will say start/running, and
then foo finishes its transition, then we ask for foo's status and it is
stop/waiting, and we think we're done.

This race would probably be solved by having a list all jobs with
status command, as long as the stopped event is guaranteed to be
consumed before any commands, which, I believe it will.

One delicate issue is that if an upstart managed process dies for any
other reason than being stopped, upstart will try to respawn it, so we
can't just go sending SIGTERM/SIGKILL to all pids, as upstart will fight
us on those. We actually have to stop everything.

 If you don't want to change existing jobs, we probably have to pick up
 Ante's suggestion, and do the following in sendsigs:
 
 1) run a for loop to wait for *all* running upstart jobs to stop.
 upstart jobs which need to keep running past sendsigs (e.g. plymouth)
 need to signal that using a similar mechanism like the killall5
 sendsigs.d omit interface. I'd at least give upstart jobs 60secs time
 to stop, so big databases etc have enough time to cleanly shutdown

IMO, leaving out a valid stop on that gets it stopped at or before
runlevel [016] is the equivilent of the omit interface. You've started
it, saying exactly when upstart should or should not stop it. However,
if you've wandered into the scenario mentioned above with stop on
stopped foo, then we need to handle that.

 2.) run a for loop and send SIGTERM all remaining processes, but do
 *not* add upstart pids to $OMITPIDS

See above, you'd have to send 'stop' commands to upstart for them,
instead of omitting them.

 3.) send a final SIGKILL if any processes are left.
 

I'd say let upstart do that.. but how do we know when we can continue
on to unmounting? I suppose after a lengthy timeout (60s does seem long
enough, though mysql can take longer) this makes sense.

 
 Regarding 1.), it would be nice to have a native C implementation in
 upstart, instead of running initctl, grep and sleep manually.
 

I agree, but I'm having trouble envisioning exactly what one would ask
for. Block until all current goals are reached. Would work maybe.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

-- 
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


Re: [Bug 689115] Re: package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-12-16 Thread WeberEInc
Serge,

Thank you for your reply.  While I did find that error message, I didn't
know why I would need to change the file and why it wasn't
programmatic-ally  handled during the upgrade.  I did a 'cat' of the
file which showed how it was created: 

r...@webentu2:/home/evweber# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 10.110.0.15

If the NetworkManager applet creates this file as a file instead of as a
symbolic link like Bind9 needs it would seem that one of them is in
error.

Please advise.

- Ed


On Thu, 2010-12-16 at 16:23 +, Serge Hallyn wrote:

 Thanks for reporting this bug and helping to make ubuntu better.
 
 The logs show that bind9 failed to start because /etc/resolv.conf was not a
 symbolic link.  Depending on where the file came from, could you try renaming
 your existing one
 
mv /etc/resolv.conf /etc/resolv.conf.orig
 
 and then re-try restarting bind9?
 
 ** Changed in: bind9 (Ubuntu)
Status: New = Invalid
 
 ** Changed in: bind9 (Ubuntu)
Status: Invalid = Incomplete
 


** Attachment added: EmailSig.JPG
   
https://bugs.launchpad.net/bugs/689115/+attachment/1768029/+files/EmailSig.JPG

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.
https://bugs.launchpad.net/bugs/689115

Title:
  package bind9 1:9.6.1.dfsg.P1-3ubuntu0.4 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

-- 
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 658023] Re: registration token computed incorrectly

2010-12-16 Thread Dave Walker
** Changed in: eucalyptus (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in ubuntu.
https://bugs.launchpad.net/bugs/658023

Title:
  registration token computed incorrectly

-- 
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 620441] Re: MySQL upstart stop job does not cleanly shutdown mysql

2010-12-16 Thread Robert Citek
Had some issues getting changes in mysql's upstart script from taking
effect.  This demonstrates the issue, using the respawn command as the
example, and a solution.

$ grep respawn /etc/init/mysql.conf 
respawn

$ sudo mysqladmin status ; sudo mysqladmin shutdown ; sudo mysqladmin status ; 
sleep 10 ; sudo mysqladmin status
Uptime: 29  Threads: 1  Questions: 100  Slow queries: 0  Opens: 99  Flush 
tables: 1  Open tables: 23  Queries per second avg: 3.448
Uptime: 1  Threads: 1  Questions: 1  Slow queries: 0  Opens: 15  Flush tables: 
1  Open tables: 8  Queries per second avg: 1.0
Uptime: 11  Threads: 1  Questions: 99  Slow queries: 0  Opens: 99  Flush 
tables: 1  Open tables: 23  Queries per second avg: 9.0

$ sudo sed -i.bak -e 's/respawn/# respawn/' /etc/init/mysql.conf

$ grep respawn /etc/init/mysql.conf 
# respawn

$ sudo mysqladmin status ; sudo mysqladmin shutdown ; sudo mysqladmin status ; 
sleep 10 ; sudo mysqladmin status
Uptime: 5  Threads: 1  Questions: 98  Slow queries: 0  Opens: 99  Flush tables: 
1  Open tables: 23  Queries per second avg: 19.600
Uptime: 1  Threads: 1  Questions: 1  Slow queries: 0  Opens: 15  Flush tables: 
1  Open tables: 8  Queries per second avg: 1.0
Uptime: 11  Threads: 1  Questions: 99  Slow queries: 0  Opens: 99  Flush 
tables: 1  Open tables: 23  Queries per second avg: 9.0

$ sudo mysqladmin shutdown ; sudo service mysql stop
mysql stop/waiting

$ sudo service mysql start
mysql start/running, process 10405

$ sudo mysqladmin status ; sudo mysqladmin shutdown ; sudo mysqladmin status ; 
sleep 10 ; sudo mysqladmin status
Uptime: 6  Threads: 1  Questions: 98  Slow queries: 0  Opens: 99  Flush tables: 
1  Open tables: 23  Queries per second avg: 16.333
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/620441

Title:
  MySQL upstart stop job does not cleanly shutdown mysql

-- 
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 667762] Re: tkmib problem.

2010-12-16 Thread happymcplaksin
I have the same problem and tried to run apport-collect but it said that
there was nothing to send.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.
https://bugs.launchpad.net/bugs/667762

Title:
  tkmib problem.

-- 
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 691329] [NEW] dnsmasq init file has incorrect DNSMASQ_INTERFACE reference

2010-12-16 Thread Paul Smith
Public bug reported:

Binary package hint: dnsmasq

Looking at the /etc/init.d/dnsmasq file I see a bug; in the start()
function it says:

${DNSMASQ_INTERFACE:+ $DNSMASQ_INTERFACES} \

This is wrong; the variable names should both be the same.  Assuming the
right variable name is DNSMASQ_INTERFACES (plural) for example this
should be:

${DNSMASQ_INTERFACES:+ $DNSMASQ_INTERFACES} \


~$ lsb_release -rd
Description:Ubuntu 10.10
Release:10.10
~$ apt-cache policy dnsmasq
dnsmasq:
  Installed: 2.55-1
  Candidate: 2.55-1
  Version table:
 *** 2.55-1 0
500 http://us.archive.ubuntu.com/ubuntu/ maverick/universe amd64 
Packages
100 /var/lib/dpkg/status

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in ubuntu.
https://bugs.launchpad.net/bugs/691329

Title:
  dnsmasq init file has incorrect DNSMASQ_INTERFACE reference

-- 
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


Re: [Bug 691329] [NEW] dnsmasq init file has incorrect DNSMASQ_INTERFACE reference

2010-12-16 Thread Simon Kelley
To Ubuntu triagers: This is a real bug, but it only affects code which 
provides compatibility with very old (pre-Ubuntu) Debian installations 
which might have interface configuration in /etc/default/dnsmasq. The 
accepted place for such configuration has always been /etc/dnsmasq.conf 
during the entire life of Ubuntu, so this is very unlikely to bite on 
any Ubuntu installation. I'll fix it in the next Debian package.


Cheers,

Simon.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in ubuntu.
https://bugs.launchpad.net/bugs/691329

Title:
  dnsmasq init file has incorrect DNSMASQ_INTERFACE reference

-- 
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 691345] Re: buffer overflow

2010-12-16 Thread Dustin Kirkland
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: tftp-hpa
  
  I'm getting a buffer overflow from tftp in both tftp-hpa and tfp
  packages in Natty.  I'll attach each below.
  
- Looks like something exposed by Natty's updated toolchain, as I'm not
- seeing this error in Maverick or Lucid.
+ Looks like something exposed by Natty's updated toolchain, as I'm not seeing 
this error in Maverick or Lucid.
+ --- 
+ Architecture: amd64
+ DistroRelease: Ubuntu 11.04
+ EcryptfsInUse: Yes
+ InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20101202)
+ Package: tftp-hpa 5.0-18ubuntu1
+ PackageArchitecture: amd64
+ ProcEnviron:
+  LANGUAGE=en_US:en
+  PATH=(custom, user)
+  LANG=en_US.UTF-8
+  LC_MESSAGES=en_US.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.37-9.23-generic 2.6.37-rc5
+ Tags: natty
+ Uname: Linux 2.6.37-9-generic x86_64
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

** Attachment added: Dependencies.txt
   
https://bugs.edge.launchpad.net/bugs/691345/+attachment/1768199/+files/Dependencies.txt

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/691345

Title:
  buffer overflow in tftp

-- 
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 691345] Re: buffer overflow

2010-12-16 Thread Dustin Kirkland
Crashes attached.

** Attachment added: 691345.txt
   
https://bugs.launchpad.net/ubuntu/+source/netkit-tftp/+bug/691345/+attachment/1768201/+files/691345.txt

** Summary changed:

- buffer overflow
+ buffer overflow in tftp

** Description changed:

  Binary package hint: tftp-hpa
  
  I'm getting a buffer overflow from tftp in both tftp-hpa and tfp
  packages in Natty.  I'll attach each below.
  
  Looks like something exposed by Natty's updated toolchain, as I'm not seeing 
this error in Maverick or Lucid.
- --- 
+ ---
  Architecture: amd64
  DistroRelease: Ubuntu 11.04
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20101202)
  Package: tftp-hpa 5.0-18ubuntu1
  PackageArchitecture: amd64
  ProcEnviron:
-  LANGUAGE=en_US:en
-  PATH=(custom, user)
-  LANG=en_US.UTF-8
-  LC_MESSAGES=en_US.utf8
-  SHELL=/bin/bash
+  LANGUAGE=en_US:en
+  PATH=(custom, user)
+  LANG=en_US.UTF-8
+  LC_MESSAGES=en_US.utf8
+  SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.37-9.23-generic 2.6.37-rc5
  Tags: natty
  Uname: Linux 2.6.37-9-generic x86_64
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
+ 
+ 
+ kirkl...@x201:~$ tftp dalmation
+ tftp get cpuinfo
+ *** buffer overflow detected ***: tftp terminated
+ === Backtrace: =
+ /lib/libc.so.6(__fortify_fail+0x37)[0x7f5079977557]
+ /lib/libc.so.6(+0xfe410)[0x7f5079976410]
+ tftp[0x4015f1]
+ tftp[0x402065]
+ tftp[0x4036c9]
+ /lib/libc.so.6(__libc_start_main+0xfe)[0x7f5079896d8e]
+ tftp[0x4014d9]
+ === Memory map: 
+ 0040-00406000 r-xp  08:01 6297104
/usr/bin/tftp
+ 00605000-00606000 r--p 5000 08:01 6297104
/usr/bin/tftp
+ 00606000-00607000 rw-p 6000 08:01 6297104
/usr/bin/tftp
+ 00607000-00627000 rw-p  00:00 0
+ 0174d000-0176e000 rw-p  00:00 0  
[heap]
+ 7f5078e33000-7f5078e48000 r-xp  08:01 3932219
/lib/libgcc_s.so.1
+ 7f5078e48000-7f5079047000 ---p 00015000 08:01 3932219
/lib/libgcc_s.so.1
+ 7f5079047000-7f5079048000 r--p 00014000 08:01 3932219
/lib/libgcc_s.so.1
+ 7f5079048000-7f5079049000 rw-p 00015000 08:01 3932219
/lib/libgcc_s.so.1
+ 7f5079049000-7f507905f000 r-xp  08:01 3932328
/lib/libresolv-2.12.1.so
+ 7f507905f000-7f507925e000 ---p 00016000 08:01 3932328
/lib/libresolv-2.12.1.so
+ 7f507925e000-7f507925f000 r--p 00015000 08:01 3932328
/lib/libresolv-2.12.1.so
+ 7f507925f000-7f507926 rw-p 00016000 08:01 3932328
/lib/libresolv-2.12.1.so
+ 7f507926-7f5079262000 rw-p  00:00 0
+ 7f5079262000-7f5079267000 r-xp  08:01 3932280
/lib/libnss_dns-2.12.1.so
+ 7f5079267000-7f5079466000 ---p 5000 08:01 3932280
/lib/libnss_dns-2.12.1.so
+ 7f5079466000-7f5079467000 r--p 4000 08:01 3932280
/lib/libnss_dns-2.12.1.so
+ 7f5079467000-7f5079468000 rw-p 5000 08:01 3932280
/lib/libnss_dns-2.12.1.so
+ 7f5079468000-7f507946a000 r-xp  08:01 3932288
/lib/libnss_mdns4_minimal.so.2
+ 7f507946a000-7f5079669000 ---p 2000 08:01 3932288
/lib/libnss_mdns4_minimal.so.2
+ 7f5079669000-7f507966a000 r--p 1000 08:01 3932288
/lib/libnss_mdns4_minimal.so.2
+ 7f507966a000-7f507966b000 rw-p 2000 08:01 3932288
/lib/libnss_mdns4_minimal.so.2
+ 7f507966b000-7f5079677000 r-xp  08:01 3932282
/lib/libnss_files-2.12.1.so
+ 7f5079677000-7f5079876000 ---p c000 08:01 3932282
/lib/libnss_files-2.12.1.so
+ 7f5079876000-7f5079877000 r--p b000 08:01 3932282
/lib/libnss_files-2.12.1.so
+ 7f5079877000-7f5079878000 rw-p c000 08:01 3932282
/lib/libnss_files-2.12.1.so
+ 7f5079878000-7f50799f2000 r-xp  08:01 3932207
/lib/libc-2.12.1.so
+ 7f50799f2000-7f5079bf1000 ---p 0017a000 08:01 3932207
/lib/libc-2.12.1.so
+ 7f5079bf1000-7f5079bf5000 r--p 00179000 08:01 3932207
/lib/libc-2.12.1.so
+ 7f5079bf5000-7f5079bf6000 rw-p 0017d000 08:01 3932207
/lib/libc-2.12.1.so
+ 7f5079bf6000-7f5079bfb000 rw-p  00:00 0
+ 7f5079bfb000-7f5079c1b000 r-xp  08:01 3932183
/lib/ld-2.12.1.so
+ 7f5079df8000-7f5079dfb000 rw-p  00:00 0
+ 7f5079e16000-7f5079e1b000 rw-p  00:00 0
+ 7f5079e1b000-7f5079e1c000 r--p 0002 08:01 3932183
/lib/ld-2.12.1.so
+ 7f5079e1c000-7f5079e1d000 rw-p 00021000 08:01 3932183
/lib/ld-2.12.1.so
+ 7f5079e1d000-7f5079e1e000 rw-p  00:00 0
+ 7fffbc9fb000-7fffbca1d000 rw-p  00:00 0  
[stack]
+ 

[Bug 687979] Re: [FTBFS] package 'jug' (2.0.0-1) failed to build on natty

2010-12-16 Thread Tom Ellis
My attempt at a debdiff for this, although attaching two (one ubuntu
specific) as I think this is sync'ed from debian so probably just want
to patch there and re-sync.

** Patch added: jug_2.0.0-1ubuntu1.diff
   
https://bugs.launchpad.net/ubuntu/+source/jug/+bug/687979/+attachment/1768204/+files/jug_2.0.0-1ubuntu1.diff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to jug in ubuntu.
https://bugs.launchpad.net/bugs/687979

Title:
  [FTBFS] package 'jug' (2.0.0-1) failed to build on natty

-- 
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 691345] Re: buffer overflow in tftp

2010-12-16 Thread Kees Cook
** Changed in: tftp-hpa (Ubuntu)
   Status: New = Fix Committed

** Changed in: tftp-hpa (Ubuntu)
 Assignee: (unassigned) = Kees Cook (kees)

** Changed in: tftp-hpa (Ubuntu)
   Importance: Undecided = Medium

** Changed in: netkit-tftp (Ubuntu)
   Status: New = Confirmed

** Also affects: netkit-tftp (Ubuntu Natty)
   Importance: Undecided
   Status: Confirmed

** Also affects: tftp-hpa (Ubuntu Natty)
   Importance: Medium
 Assignee: Kees Cook (kees)
   Status: Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/691345

Title:
  buffer overflow in tftp

-- 
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 691345] Re: buffer overflow in tftp

2010-12-16 Thread Kees Cook
** Changed in: netkit-tftp (Ubuntu Natty)
   Status: Confirmed = Fix Committed

** Changed in: netkit-tftp (Ubuntu Natty)
 Assignee: (unassigned) = Kees Cook (kees)

** Changed in: netkit-tftp (Ubuntu Natty)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/691345

Title:
  buffer overflow in tftp

-- 
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 691345] Re: buffer overflow in tftp

2010-12-16 Thread Launchpad Bug Tracker
This bug was fixed in the package netkit-tftp - 0.17-18ubuntu2

---
netkit-tftp (0.17-18ubuntu2) natty; urgency=low

  * tftp/tftp.c: fix FORTIFY-detected potential memory corruption
(LP: #691345).
 -- Kees Cook k...@ubuntu.com   Thu, 16 Dec 2010 18:14:49 -0800

** Changed in: netkit-tftp (Ubuntu Natty)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tftp-hpa in ubuntu.
https://bugs.launchpad.net/bugs/691345

Title:
  buffer overflow in tftp

-- 
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 633523] Re: package unixodbc 2.2.11-21 failed to install/upgrade:

2010-12-16 Thread Launchpad Bug Tracker
[Expired for unixodbc (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unixodbc (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to unixodbc in ubuntu.
https://bugs.launchpad.net/bugs/633523

Title:
  package unixodbc 2.2.11-21 failed to install/upgrade: 

-- 
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 633516] Re: package odbcinst 2.2.11-21 failed to install/upgrade:

2010-12-16 Thread Launchpad Bug Tracker
[Expired for unixodbc (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unixodbc (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to unixodbc in ubuntu.
https://bugs.launchpad.net/bugs/633516

Title:
  package odbcinst 2.2.11-21 failed to install/upgrade: 

-- 
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 632997] Re: package mysql-server-5.0 5.1 .30really5.0.75-0ubuntu10.5 failed to install/upgr ade: el subproceso post-installation script devolvi ó el código de salida de error 1

2010-12-16 Thread Launchpad Bug Tracker
[Expired for mysql-dfsg-5.0 (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.
https://bugs.launchpad.net/bugs/632997

Title:
  package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.5 failed to 
install/upgrade: el subproceso post-installation script devolvió el código de 
salida de error 1

-- 
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 607311] Re: mount.cifs fails with cannot allocate memory

2010-12-16 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/607311

Title:
  mount.cifs fails with cannot allocate memory

-- 
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 514963] Re: samba-common-bin postinst returned error exit status 2 (update-alternatives nmblookup corrupt)

2010-12-16 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/514963

Title:
  samba-common-bin postinst returned error exit status 2 (update-alternatives 
nmblookup corrupt)

-- 
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 636573] Re: package mysql-server-5.1 (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 128

2010-12-16 Thread Launchpad Bug Tracker
[Expired for mysql-dfsg-5.1 (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.
https://bugs.launchpad.net/bugs/636573

Title:
  package mysql-server-5.1 (not installed) failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 128

-- 
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 636363] Re: After importing backend.ldif I get Invalid credentials (49)

2010-12-16 Thread Launchpad Bug Tracker
[Expired for openldap (Ubuntu) because there has been no activity for 60
days.]

** Changed in: openldap (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap in ubuntu.
https://bugs.launchpad.net/bugs/636363

Title:
  After importing backend.ldif I get Invalid credentials (49) 

-- 
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 633891] Re: package samba 2:3.4.0-3ubuntu5.6 failed to install/upgrade:

2010-12-16 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/633891

Title:
  package samba 2:3.4.0-3ubuntu5.6 failed to install/upgrade:

-- 
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 629236] Re: Can't install samba in 10.04.1 fresh install

2010-12-16 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.
https://bugs.launchpad.net/bugs/629236

Title:
  Can't install samba in 10.04.1 fresh install

-- 
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 691414] [NEW] clamav taking extremely long time to load database

2010-12-16 Thread Kees Cook
Public bug reported:

Binary package hint: clamav

# apt-cache policy clamav-daemon
clamav-daemon:
  Installed: 0.96.3+dfsg-2ubuntu1.0.10.04.2
  Candidate: 0.96.3+dfsg-2ubuntu1.0.10.04.2

Since the security update of clamav, the daemon takes multiple minutes
to load its virus database, and is causing random timeouts for users of
the unix socket (in my case, mimedefang), triggering repeated 400-series
email temp-fails each time freshclam issues a reload request.

strace just shows it slowly allocating memory and not doing much else.

Logs don't seem to help:
Thu Dec 16 20:58:34 2010 - +++ Started at Thu Dec 16 20:58:34 2010
Thu Dec 16 20:58:34 2010 - clamd daemon 0.96.3 (OS: linux-gnu, ARCH: x86_64, 
CPU: x86_64)
Thu Dec 16 20:58:34 2010 - Log file size limit disabled.
Thu Dec 16 20:58:34 2010 - Reading databases from /var/lib/clamav/
Thu Dec 16 20:58:34 2010 - Not loading PUA signatures.
Thu Dec 16 20:58:38 2010 - Loaded 856324 signatures.

But minutes later, it's still spinning at 100% CPU and non-responsive on
its socket.

Here's the backtrace while its stuck:

(gdb) bt
#0  __find__gnu_cxx::__normal_iteratorllvm::BasicBlock* const*, 
std::vectorllvm::BasicBlock*, std::allocatorllvm::BasicBlock*  , 
llvm::BasicBlock const* (this=0x1a9f300, L=0x1466740, ExitingBlock=value 
optimized out) at /usr/include/c++/4.4/bits/stl_algo.h:186
#1  find__gnu_cxx::__normal_iteratorllvm::BasicBlock* const*, 
std::vectorllvm::BasicBlock*, std::allocatorllvm::BasicBlock*  , 
llvm::BasicBlock const* (this=0x1a9f300, L=0x1466740, ExitingBlock=value 
optimized out) at /usr/include/c++/4.4/bits/stl_algo.h:4224
#2  llvm::LoopBasellvm::BasicBlock, llvm::Loop::contains (this=0x1a9f300, 
L=0x1466740, ExitingBlock=value optimized out)
at ./llvm/include/llvm/Analysis/LoopInfo.h:108
#3  llvm::ScalarEvolution::ComputeBackedgeTakenCountFromExit (this=0x1a9f300, 
L=0x1466740, ExitingBlock=value optimized out)
at llvm/lib/Analysis/ScalarEvolution.cpp:3612
#4  0x7f6591bad79f in llvm::ScalarEvolution::ComputeBackedgeTakenCount 
(this=0x1a9f300, L=0x1466740)
at llvm/lib/Analysis/ScalarEvolution.cpp:3542
#5  0x7f6591badaa5 in llvm::ScalarEvolution::getBackedgeTakenInfo 
(this=0x1a9f300, L=0x1466740) at llvm/lib/Analysis/ScalarEvolution.cpp:3415
#6  0x7f6591badfa9 in llvm::ScalarEvolution::getMaxBackedgeTakenCount 
(this=0x299a6e0, L=0x7) at llvm/lib/Analysis/ScalarEvolution.cpp:3390
#7  0x7f6591966040 in loopNeedsTimeoutCheck (this=value optimized out, 
F=value optimized out) at bytecode2llvm.cpp:363
#8  runOnFunction (this=value optimized out, F=value optimized out) at 
bytecode2llvm.cpp:435
#9  0x7f6591ab8166 in llvm::FPPassManager::runOnFunction (this=0x11a6ae0, 
F=...) at llvm/lib/VMCore/PassManager.cpp:1350
#10 0x7f6591ab827b in llvm::FPPassManager::runOnModule (this=0x11a6ae0, 
M=...) at llvm/lib/VMCore/PassManager.cpp:1371
#11 0x7f6591ab7d0b in llvm::MPPassManager::runOnModule (this=0x11cdab0, 
M=...) at llvm/lib/VMCore/PassManager.cpp:1424
#12 0x7f6591ab7e99 in llvm::PassManagerImpl::run (this=0x11a1dc0, M=...) at 
llvm/lib/VMCore/PassManager.cpp:1506
#13 0x7f659196dcff in generate (this=0x7fffe4746540) at 
bytecode2llvm.cpp:1411
#14 0x7f659196f85b in cli_bytecode_prepare_jit (bcs=value optimized out) 
at bytecode2llvm.cpp:1826
#15 0x7f659194bec1 in cli_bytecode_prepare2 (engine=0x10fdb60, 
bcs=0x10fdc50, dconfmask=7) at bytecode.c:2353
#16 0x7f65918d0310 in cl_engine_compile (engine=0x10fdb60) at readdb.c:3112
#17 0x00407cfc in main (argc=value optimized out, argv=value 
optimized out) at clamd.c:495

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

** Affects: clamav (Ubuntu Lucid)
 Importance: Undecided
 Status: New

** Description changed:

  Binary package hint: clamav
  
  # apt-cache policy clamav-daemon
  clamav-daemon:
-   Installed: 0.96.3+dfsg-2ubuntu1.0.10.04.2
-   Candidate: 0.96.3+dfsg-2ubuntu1.0.10.04.2
+   Installed: 0.96.3+dfsg-2ubuntu1.0.10.04.2
+   Candidate: 0.96.3+dfsg-2ubuntu1.0.10.04.2
  
- 
- Since the security update of clamav, the daemon takes multiple minutes to 
load its virus database, and is causing random timeouts for users of the unix 
socket (in my case, mimedefang), trigger 400-series email temp-fails.
+ Since the security update of clamav, the daemon takes multiple minutes
+ to load its virus database, and is causing random timeouts for users of
+ the unix socket (in my case, mimedefang), trigger 400-series email temp-
+ fails.
  
  strace just shows it slowly allocating memory and not doing much else.
  
  Logs don't seem to help:
  Thu Dec 16 20:58:34 2010 - +++ Started at Thu Dec 16 20:58:34 2010
  Thu Dec 16 20:58:34 2010 - clamd daemon 0.96.3 (OS: linux-gnu, ARCH: x86_64, 
CPU: x86_64)
  Thu Dec 16 20:58:34 2010 - Log file size limit disabled.
  Thu Dec 16 20:58:34 2010 - Reading databases from /var/lib/clamav/
  Thu Dec 16 20:58:34 2010 - Not loading PUA signatures.
  Thu Dec 16 20:58:38 

Re: [Bug 691414] [NEW] clamav taking extremely long time to load database

2010-12-16 Thread Scott Kitterman
What architecture is this? I don't see this on i386.  Also what's the
exact CPU?

I don't think the security patches would have affected this.

Can you replicate this with the newer clamav in backports?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in ubuntu.
https://bugs.launchpad.net/bugs/691414

Title:
  clamav taking extremely long time to load database

-- 
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 477333] Re: cron job is overly noisy

2010-12-16 Thread Mahyuddin Susanto
Try to rebuild systat package and apply this patch

** Patch added: sysstat-karmic.diff
   
https://bugs.launchpad.net/ubuntu/+source/sysstat/+bug/477333/+attachment/1768429/+files/sysstat-karmic.diff

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to sysstat in ubuntu.
https://bugs.launchpad.net/bugs/477333

Title:
  cron job is overly noisy

-- 
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 690979] [NEW] package ubuntu-desktop 1.197 failed to install/upgrade: dependency problems - leaving unconfigured

2010-12-16 Thread Michael Gunter
Public bug reported:

fourth in the series of failed package installs (attempted hardy -
lucid upgrade):

1. console-setup
2. xorg1:7.5+5ubuntu1
3. ubuntu-minimal 1.197
4. ubuntu-desktop1.197

(3 and 4 seem to be subsets of ubuntu-meta)

Now I have an ominous dialog saying

 (-) Could not install the upgrades

The upgrade is now aborted. Your system could be in an 
unusable state. A recovery will run now (dpkg --configure -a).

(Close)


HTH, cheers

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: ubuntu-desktop 1.197
ProcVersionSignature: Ubuntu 2.6.24-28.81-generic
Uname: Linux 2.6.24-28-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Thu Dec 16 18:16:16 2010
ErrorMessage: dependency problems - leaving unconfigured
SourcePackage: ubuntu-meta
Title: package ubuntu-desktop 1.197 failed to install/upgrade: dependency 
problems - leaving unconfigured

** Affects: ubuntu-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package ubuntu-desktop 1.197 failed to install/upgrade: dependency problems - 
leaving unconfigured

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


[Bug 690979] Re: package ubuntu-desktop 1.197 failed to install/upgrade: dependency problems - leaving unconfigured

2010-12-16 Thread Michael Gunter


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

Title:
  package ubuntu-desktop 1.197 failed to install/upgrade: dependency problems - 
leaving unconfigured

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


[Bug 690733] Re: Pulseaudio crash with Rhythmbox and K3B.

2010-12-16 Thread David Henningsson
Thanks for your bug report. Could you also supply an PA log? See
https://wiki.ubuntu.com/PulseAudio/Log - and make sure PulseAudio
crashes while the log is active. Thanks!

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

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

Title:
  Pulseaudio crash with Rhythmbox and K3B.

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


[Bug 490194] Re: /sbin/modemmanager is too aggressive managing devices that aren't known to be modems

2010-12-16 Thread Jochen Gruse
I concur, modemmanager is far too aggressive. Please take a look at
these bugs, too:

https://bugs.launchpad.net/ubuntu/+source/modemmanager/+bug/686418
https://bugs.launchpad.net/ubuntu/+source/gobi-loader/+bug/621743
https://bugs.launchpad.net/ubuntu/+source/gobi-loader/+bug/647471

gobi-loader is often blamed, but modemmanager is the culprit trying to
access the QDL device while the firmware load is still in progress und
thus corrupting the upload. Blacklisting all USB QDL devices of the Gobi
modem solves the problem by stopping modemmanager from accessing the
corresponding devices.

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

Title:
  /sbin/modemmanager is too aggressive managing devices that aren't known to be 
modems

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


[Bug 451673] Re: Untranslated Yelp main page (Ubuntu Help Center)

2010-12-16 Thread David Planella
** Description changed:

  Binary package hint: yelp
  
- The Yelp main page (System-Help and support) in my fully-updated Karmic
- shows untranslated in my Spanish desktop, although all the other
- document pages shows translated.
+ The Yelp main page (System-Help and support) is shown untranslated.
  
- Using yelp 2.28.0-0ubuntu1.
- 
- I attach an screenshot to illustrate the problem.
+ What needs to be done is to add the translations exported from Launchpad
+ to the package (attached to the bug report) and upload and build it with
+ them.

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

Title:
  Untranslated Yelp main page (Ubuntu Help Center)

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


[Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum
So I've done some more thinking about this, and I had a bit of an aha!
moment.

While we *should* in fact stop using 'stop on runlevel [016]' or 'stop
on runlevel [!2345]', I think we can solve this without touching all of
those jobs.

/etc/init.d/sendsigs has this code:


# Upstart jobs have their own stop on clauses that sends
# SIGTERM/SIGKILL just like this, so if they're still running,
# they're supposed to be
for pid in $(initctl list | sed -n -e /process [0-9]/s/.*process 
//p); do
OMITPIDS=${OMITPIDS:+$OMITPIDS }-o $pid
done


It uses this to determine which pids not to kill because, presumably, upstart 
should be managing them.

However, this code is flawed. killall5 will kill the children of all of
these if they are multi process daemons or scripts running things. This
would only be solved by walking through /proc looking for these as
parent pids (and then doing the same again with the new list.. ).

However, this technique can actually be used to determine if there are
still jobs that are supposed to be stopped, but haven't finished
stopping yet. Since they should be listed as stop/(pre-stop|post-
stop|killed), we can determine exactly which pids we expect to go away.
Since upstart has its own idea of how long to wait before it kills
these, we should actually wait indefinitely.

I'm attaching a debdiff that solves the race as far as I can tell,
though I think it needs a good long look, since it could mean shutdowns
hang for a long time waiting (I'm especially curious if the pre-stop
/post-stop's are subject to kill timeout)

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

Title:
  race condition on shutdown (leads to corrupted fs)

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


[Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum

** Patch added: lp688541.diff
   
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+attachment/1767453/+files/lp688541.diff

** Changed in: sysvinit (Ubuntu)
   Status: New = Triaged

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

Title:
  race condition on shutdown (leads to corrupted fs)

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


[Bug 690606] Re: crc32c_intel fails to load in 2.6.37-9-server

2010-12-16 Thread vlotho
** Changed in: ubuntu
 Assignee: (unassigned) = vlotho (gdalmas)

** Changed in: ubuntu
 Assignee: vlotho (gdalmas) = (unassigned)

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

Title:
  crc32c_intel fails to load in 2.6.37-9-server

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


[Bug 603126] Re: new software installation problem

2010-12-16 Thread Titan
The problem was solved by Arjun.
https://answers.edge.launchpad.net/ubuntu/+source/firefox/+question/117034
 i forgot to reply to you.

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

Title:
  new software installation problem

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


[Bug 690983] [NEW] package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2010-12-16 Thread Mauro Cecamore
Public bug reported:

During general upgrade.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: mysql-server-5.1 5.1.41-3ubuntu12.8
ProcVersionSignature: Ubuntu 2.6.32-26.48-generic 2.6.32.24+drm33.11
Uname: Linux 2.6.32-26-generic i686
Architecture: i386
Date: Thu Dec 16 08:53:26 2010
ErrorMessage: il sottoprocesso vecchio script di post-installation ha 
restituito lo stato di errore 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
Logs.var.log.daemon.log:
 
Logs.var.log.kern.log: Dec 16 09:00:53 digitalavenues-netbook kernel: [   
53.595533] type=1505 audit(1292486453.346:11):  operation=profile_load 
pid=748 name=/usr/sbin/mysqld
MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLVarLibDirListing: ['mysql_upgrade_info', 'digitalavenues-netbook.pid', 
'ib_logfile1', 'ib_logfile0', 'debian-5.1.flag', 'ibdata1', 'unidav_sync', 
'mysql']
SourcePackage: mysql-dfsg-5.1
Title: package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: 
il sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

** Affects: mysql-dfsg-5.1 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

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


[Bug 689865] Re: systemsettings breaks comments in config

2010-12-16 Thread Hai-Lam Bui
You have a point. What I wanted to tell you is where the root cause is,
and that you should assign this bug (or file the more general one) to
the correct package. Which might be, although I might be wrong,
kde4libs.

In the end, though, this has to be brought up upstream.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.
https://bugs.launchpad.net/bugs/689865

Title:
  systemsettings breaks comments in config

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


[Bug 690983] Re: package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2010-12-16 Thread Mauro Cecamore


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

Title:
  package mysql-server-5.1 5.1.41-3ubuntu12.8 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1

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


[Bug 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Thomas Herve
Client, thanks for looking at it. As Björn mentioned there is not much
to say. I think I've identified one linked problem though, where the
service doesn't start sometimes: rabbitmq is tied to the existence of a
particular hostname (generally the one detected when first installed).

Since Maverick, NetworkManager seems to do some weird trick with
/etc/hosts, making the local hostname unresolvable at some points. At
least when it doesn't start, I get a can't resolve hostname error in
startup_err, which could map with what Björn is saying, where the
hostname can't be found at shutdown (presumably after NM did his job on
a laptop).

Björn: do you have anything in shutdown_err by any chance?

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

Title:
  Laptop won't shut down with rabbitmq running

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

[Bug 681558] Re: The behavior of the desktop keeps changing to the equivalent of /apps/nautilus/preferences/show_desktop = false

2010-12-16 Thread Omer Akram
closing this bug now. if it happens again feel free to open this bug
again

** Changed in: nautilus (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  The behavior of the desktop keeps changing to the equivalent of 
/apps/nautilus/preferences/show_desktop = false

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


[Bug 672952] Re: no sound and can not shut down (intermittently after startup)

2010-12-16 Thread David Robinson
Bad news - the fault is still occurring ...

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

Title:
  no sound and can not shut down (intermittently after startup)

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


[Bug 608515] Re: Can't establish audio or video calls

2010-12-16 Thread Scott Severance
@Scott Lockwood: Are you using 10.10? This bug is currently marked
invalid (see Omer's latest post for details). If you're experiencing
this in 10.10, please re-open this bug.

I personally would love to test this, but unrelated issues prevent me
from upgrading to 10.10. I think I'll just have to stick with 10.04 for
a while. At any rate, if this is still an issue in 10.10, it'd be good
to know.

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

Title:
  Can't establish audio or video calls

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


[Bug 603126] Re: new software installation problem

2010-12-16 Thread Omer Akram
** Changed in: software-center (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  new software installation problem

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


[Bug 438870] Re: Downloads should start when the previous one ends

2010-12-16 Thread Shane Fagan
It still doesnt do it and is still wishlist and isnt being worked on id
say leave it as is.

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

Title:
  Downloads should start when the previous one ends

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


[Bug 682617] Re: Microphone not working in Optiplex 980

2010-12-16 Thread Raymond

* alsa-info.txt.FbRz3szq16 (28.0 KiB, text/plain)

 Alsainfo for Maverick

There is only one capture subdevice but two capture volume
controls/switches and two input sources

ARECORD

 List of CAPTURE Hardware Devices 
card 0: Intel [HDA Intel], device 0: ALC259 Analog [ALC259 Analog]
  Subdevices: 0/1
  Subdevice #0: subdevice #0


if  HDA controller does not have enough DMA for two capture subdevices for 
multistream capture , why the driver build two capture volume controls 
/switches and Input Source controls 


Simple mixer control 'Capture',0
  Capabilities: cvolume cswitch penum
  Capture channels: Front Left - Front Right
  Limits: Capture 0 - 31
  Front Left: Capture 11 [35%] [0.00dB] [on]
  Front Right: Capture 11 [35%] [0.00dB] [on]
Simple mixer control 'Capture',1
  Capabilities: cvolume cswitch penum
  Capture channels: Front Left - Front Right
  Limits: Capture 0 - 31
  Front Left: Capture 0 [0%] [-16.50dB] [on]
  Front Right: Capture 0 [0%] [-16.50dB] [on]
Simple mixer control 'Input Source',0
  Capabilities: cenum
  Items: 'Mic' 'Front Mic'
  Item0: 'Mic'
Simple mixer control 'Input Source',1
  Capabilities: cenum
  Items: 'Mic' 'Front Mic'
  Item0: 'Mic'

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

Title:
  Microphone not working in Optiplex 980

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


[Bug 441847] Re: software-center crashed with DatabaseCorruptError in __init__() (when the xapian db is corrupted)

2010-12-16 Thread Zygmunt Krynicki
Omer, I'm sorry I stopped working on that issue after some turmoil with
changing jobs. I did not encounter it in maverick and software-center
has undergone many changes since then. I'd recommend closing the bug and
reopening it if anyone can reproduce it again.

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

Title:
  software-center crashed with DatabaseCorruptError in __init__() (when the 
xapian db is corrupted)

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


[Bug 250211] Re: WLAN LED blinks incessantly on iwl3945 | iwl4965 laptop

2010-12-16 Thread Tom Chiverton
Does the script from #112 work for you instead (with ot without the
extra slash and colon) ? Intel changed the interface at some point, but
I had blink-free operation on 10.4 before upgrading to 10.10.

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

Title:
  WLAN LED blinks incessantly on iwl3945 | iwl4965 laptop

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


[Bug 250211] Re: WLAN LED blinks incessantly on iwl3945 | iwl4965 laptop

2010-12-16 Thread Tom Chiverton
Oops, #64 I meant

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

Title:
  WLAN LED blinks incessantly on iwl3945 | iwl4965 laptop

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


[Bug 660452] Re: monkeystudio always crashes when creating new file or trying to open existing one

2010-12-16 Thread Launchpad Bug Tracker
This bug was fixed in the package monkeystudio - 1.8.4.0-1ubuntu2

---
monkeystudio (1.8.4.0-1ubuntu2) natty; urgency=low

  * No change rebuild to fix segfault with qscintilla. lp: #660452
 -- Lionel Le Folgoc mrpo...@ubuntu.com   Wed, 15 Dec 2010 19:41:34 +0100

** Changed in: monkeystudio (Ubuntu)
   Status: New = Fix Released

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

Title:
  monkeystudio always crashes when creating new file or trying to open existing 
one

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


[Bug 690987] [NEW] Kubuntu 10.10 - Could not calculate the upgrade

2010-12-16 Thread Sajid
Public bug reported:

Binary package hint: update-manager

I am trying to upgrade Kubuntu 10.4 to 10.10, and the following error appears 
after step 3.
Could not calculate the upgrade
E: Error, pkgProblemResolver:: Resolve generated breaks, this may be 
caused by held packages.

** Affects: update-manager (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/690987

Title:
  Kubuntu 10.10 - Could not calculate the upgrade

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


[Bug 669399] Re: Touchpad bottom edge unresponsive in ubuntu 10.10 64-bit

2010-12-16 Thread Alan N
@juliobar what do you think, Does bug 687750 seem to describe your
problem ? From my point of view this seems to be the same issue, though
you are using a different model touchpad. For me I am ok with marking
this ticket as a duplicate

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

Title:
  Touchpad bottom edge unresponsive in ubuntu 10.10 64-bit

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


[Bug 644011] Re: Installer hangs if installation of grub fails

2010-12-16 Thread Jean-Baptiste Lallement
adding a maverick task to track the regression.

** Also affects: ubiquity (Ubuntu Maverick)
   Importance: Undecided
   Status: New

** Changed in: ubiquity (Ubuntu Maverick)
   Status: New = Confirmed

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

Title:
  Installer hangs if installation of grub fails

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


[Bug 422202] Re: [P4M900] Laptop TFT flickers after wake up from S3 sleep

2010-12-16 Thread Bartosz
Hi Gabor.

Check if this problem was solved in latest openchrome revision.

Please build/install the latest openchrome driver
The detail build instruction for Ubuntu/Debian is available at:
https://help.ubuntu.com/community/OpenChrome

Next attach your /var/log/Xorg.0.log file.

I think it could be Linux kernel related problem, for example:
https://bugs.launchpad.net/ubuntu/+source/pm-utils/+bug/574573
https://bugs.launchpad.net/ubuntu/+source/pm-utils/+bug/677440

** Also affects: linux (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/422202

Title:
  [P4M900] Laptop TFT flickers after wake up from S3 sleep

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


[Bug 690989] [NEW] Sudoku currently does not have a unique solution

2010-12-16 Thread Christoff Erasmus
Public bug reported:

Binary package hint: gnome-games

Hello,

Per my understanding of Sudo Puzzles, each puzzle should only have one correct 
answer (Unique Solution).
If there is more than one solution the puzzle is considered not properly 
formed.

On a personal level I feel that its very frustrating that the Sudoku
puzzles comes to a point where I have to Quess which number to pick,
as this is not Logical. And Soduko is suppose to be a logical game.

Please refer to:
* http://en.wikipedia.org/wiki/Sudoku
* http://www.dailysudoku.com/sudoku/faq.shtml

Also refer to my attachement of a game I can not complete with out
guessing.

Request:
Please fix the Sudoku that comes with Ubuntu to allow me to Force it to give me 
only Properly Formed one solution puzzles.

Regards,
Christoff Erasmus

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: gnome-sudoku 1:2.32.0-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-23.41-generic 2.6.35.7
Uname: Linux 2.6.35-23-generic i686
Architecture: i386
Date: Thu Dec 16 10:19:10 2010
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANG=en_ZA.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-games

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


** Tags: apport-bug i386 maverick

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

Title:
  Sudoku currently does not have a unique solution

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


[Bug 690989] Re: Sudo currently does not have a unique solution

2010-12-16 Thread Christoff Erasmus

** Attachment added: Sudoku Puzzle without a unique solution
   https://bugs.launchpad.net/bugs/690989/+attachment/1767463/+files/Sudoku.png

** Summary changed:

- Sudo currently does not have a unique solution
+ Sudoku currently does not have a unique solution

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

Title:
  Sudoku currently does not have a unique solution

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


[Bug 670289] Re: Laptop won't shut down with rabbitmq running

2010-12-16 Thread Björn Tillenius
To add further to Thomas' observations, after disconnecting NM, the
beginning of my /etc/hosts file look like this:

192.168.60.104|_ixia|___# Added by NetworkManager
127.0.0.1|__localhost.localdomain|__localhost
::1|ixia|___localhost6.localdomain6|localhost6
127.0.1.1|__ixia

If I comment out the first line (192.168.60.104), rabbitmq-multi status
and stop_all work as expected. Could it be that NetworkManager should
remove the added line in /etc/hosts when it disconnects from a network?

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

Title:
  Laptop won't shut down with rabbitmq running

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


[Bug 660240] Re: [P4M800Pro] Xorg freeze on ubuntu 10.10 64bit

2010-12-16 Thread Bartosz
This bug was solved in Ubuntu Natty:
https://launchpad.net/ubuntu/natty/+source/xserver-xorg-video-openchrome

There is an version r858. This bug was fixed in r854

I nominated the patch to push it to Ubuntu Maverick Meerkat

** Changed in: xserver-xorg-video-openchrome (Ubuntu)
   Status: Triaged = Fix Committed

** Changed in: xserver-xorg-video-openchrome (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  [P4M800Pro] Xorg freeze on ubuntu 10.10 64bit

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


[Bug 682565] Re: Thinkpad Edge 11 (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not Working

2010-12-16 Thread Alan N
I made these changes and my internal microphone is now working. Thanks
Benjamin.  Incidently the Gnome Sound Recorder is working for me. Ben,
let me know if you need any info from me to see why yours is not
working.


Question is, should Ubuntu automatically setup the alsa-base.conf file
as part of install ?  If the answer is no, then I think we can close the
ticket.  If ubuntu should detect the hardware automatically then should
a new ticket be created ?


** Changed in: alsa-driver (Ubuntu)
   Status: New = In Progress

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

Title:
  Thinkpad Edge 11 (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not Working

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


[Bug 682565] Re: Thinkpad Edge 11 (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not Working

2010-12-16 Thread Alan N
Tried to change status to Triaged, but this option was not allowed..
hmmm wonder why ...

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

Title:
  Thinkpad Edge 11 (Intel) [Conexant CX20582 (Pebble)] Internal Mic Not Working

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


[Bug 227158] Re: blacklist ssb doesn't work

2010-12-16 Thread Jarl
This problem is still present in 10.04 including updates up to
16.12.2010.

The workaround however still works.

Jarl

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

Title:
  blacklist ssb doesn't work

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


[Bug 227158] Re: blacklist ssb doesn't work

2010-12-16 Thread Jarl
@Janitor: Please note that the link you have provided
https://wiki.ubuntu.com/KernelTeamBugPolicies does not exists. Please
update the link.

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

Title:
  blacklist ssb doesn't work

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


[Bug 690995] [NEW] nautilus hangs when i click on a mounted usb device

2010-12-16 Thread twins
Public bug reported:

Binary package hint: gnome-system-monitor

I mount my usb hard-drive or usb stick. I open Places-Computer . When i
click on the (auto)mounted storage device (usb-stick or usb-hdd)
nautilus hangs indefinitely. I can log-out and login, so nautilus is
functional again. I can browse the usb-device's contents by pressing
ctrl+L(lowercase L) and typing the full path of the device. This happens
also with the desktop shortcuts for the mounted devices and the icon of
the usb-device in the Places in the left-handside box in nautilus.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: gnome-system-monitor 2.28.1-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-23.41-generic 2.6.35.7
Uname: Linux 2.6.35-23-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Thu Dec 16 10:44:18 2010
EcryptfsInUse: Yes
ExecutablePath: /usr/bin/gnome-system-monitor
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-system-monitor

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


** Tags: amd64 apport-bug maverick

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

Title:
  nautilus hangs when i click on a mounted usb device

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


[Bug 690995] Re: nautilus hangs when i click on a mounted usb device

2010-12-16 Thread twins


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

Title:
  nautilus hangs when i click on a mounted usb device

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


[Bug 690994] [NEW] Layoutfileerror Default on execute

2010-12-16 Thread Jpruedagalan-yahoo
Public bug reported:

Binary package hint: onboard

Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/Onboard/KeyboardSVG.py, line 117, in 
load_layout
self.load_pane_svg(pane_config, pane_svg))
  File /usr/lib/python2.7/dist-packages/Onboard/KeyboardSVG.py, line 84, in 
load_pane_svg
self.load_keys_geometry(pane_svg, keys)
  File /usr/lib/python2.7/dist-packages/Onboard/KeyboardSVG.py, line 142, in 
load_keys_geometry
styleString = rect.attributes[style].value
  File /usr/lib/python2.7/xml/dom/minidom.py, line 524, in __getitem__
return self._attrs[attname_or_tuple]
Onboard.Exceptions.LayoutFileError: Error al cargar 
/usr/share/onboard/layouts/Default-Alpha.svg
KeyError: 'style'

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: onboard 0.94.0-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.37-8.21-generic 2.6.37-rc4
Uname: Linux 2.6.37-8-generic i686
Architecture: i386
Date: Thu Dec 16 09:48:33 2010
InstallationMedia: Ubuntu-Netbook 10.04 Lucid Lynx - Release i386 (20100429.4)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=es_ES:es:en_GB:en
 LANG=es_ES.UTF-8
 LC_MESSAGES=es_ES.utf8
 SHELL=/bin/bash
SourcePackage: onboard

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


** Tags: apport-bug i386 natty

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

Title:
  Layoutfileerror Default on execute

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


[Bug 690994] Re: Layoutfileerror Default on execute

2010-12-16 Thread Jpruedagalan-yahoo


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

Title:
  Layoutfileerror Default on execute

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


[Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2010-12-16 Thread Clint Byrum
Also attaching the bash script that I used to test this, which simulates
a process taking a long time on SIGTERM without forking.. it *should*
work with sleep too, given the sendsigs change I posted, but when that
change is not there.. sendsigs kills the sleeps and ruins all the fun.

Below is the upstart job I used to run it. I tested this on lucid,
10.04.1, and without the sendsigs change, the script would continue to
run right up to the umounts and beyond despite having been stopped.
With the sendsigs change to wait, the test script would be sent SIGKILL
well before the end of the halt.

start on filesystem and net-device-up
stop on runlevel [016]

console output

kill timeout 20

exec /home/clint/test_dies_slowly.bash


** Attachment added: test_dies_slowly.bash
   
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+attachment/1767468/+files/test_dies_slowly.bash

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

Title:
  race condition on shutdown (leads to corrupted fs)

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


[Bug 690997] [NEW] Would like package to include additional header files

2010-12-16 Thread Harold Pimentel
Public bug reported:

Binary package hint: samtools

Currently libbam-dev only includes a small subset of the BAM lib
headers.

Could it please include all the headers? Preferably in /usr/include/bam
as tools such as Cufflinks expect it there.


Thanks,

Harold

** Affects: samtools (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/690997

Title:
  Would like package to include additional header files

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


[Bug 690657] Re: Name Contains Entry is not exposing accessibility

2010-12-16 Thread Jean-Baptiste Lallement
** Tags added: mago

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

Title:
  Name Contains Entry is not exposing accessibility

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


[Bug 685785] Re: gnome-settings-daemon crashed with SIGSEGV in __libc_free()

2010-12-16 Thread Matt Zimmerman
I rebuilt gnome-settings-daemon for debugging, and just had it crash
again. Unfortunately, telepathy-gabble is also still crashing routinely
on my system (bug 668306) and this seems to have prevented apport from
capturing the crash because they both crashed at the same time:

apport (pid 2974) Thu Dec 16 08:44:10 2010: another apport instance is already 
running, aborting
apport (pid 2996) Thu Dec 16 08:44:10 2010: called for pid 30681, signal 11
apport (pid 2996) Thu Dec 16 08:44:10 2010: executable: 
/usr/lib/telepathy/telepathy-gabble (command line 
/usr/lib/telepathy/telepathy-gabble)
apport (pid 2996) Thu Dec 16 08:44:13 2010: this executable already crashed 2 
times, ignoring

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

Title:
  gnome-settings-daemon crashed with SIGSEGV in __libc_free()

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


  1   2   3   4   5   6   7   8   9   10   >