[Bug 464783] Re: gnome-terminal should default to 80x25 for application compatibility

2010-04-16 Thread Bug Watch Updater
** Changed in: gnome-terminal
   Status: Unknown => Won't Fix

-- 
gnome-terminal should default to 80x25 for application compatibility
https://bugs.launchpad.net/bugs/464783
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


Re: [Bug 532733] Re: apt/dpkg in qemu-system-arm hangs if a big task is installed

2010-04-16 Thread Dustin Kirkland
Thanks for testing ogra...  Bummer.

-- 
apt/dpkg in qemu-system-arm hangs if a big task is installed
https://bugs.launchpad.net/bugs/532733
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 564914] Re: virt-aa-helper denied messages in eucalyptus

2010-04-16 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 0.7.5-5ubuntu25

---
libvirt (0.7.5-5ubuntu25) lucid; urgency=low

  * debian/apparmor/usr.lib.libvirt.virt-aa-helper: update paths for
eucalyptus (LP: #564914)
 -- Jamie StrandbogeFri, 16 Apr 2010 14:10:06 -0500

** Changed in: libvirt (Ubuntu Lucid)
   Status: Fix Committed => Fix Released

-- 
virt-aa-helper denied messages in eucalyptus
https://bugs.launchpad.net/bugs/564914
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread Howard Chu
You can find detailed design docs at its home page
http://arthurdejong.org/nss-pam-ldapd/

You can also find my LDAPCon2009 presentation on the subject here
http://www.symas.com/ldapcon2009/papers/hyc1.shtml

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 520273] Re: cron doesn't send mail

2010-04-16 Thread Scott Kitterman
Please attach the output of postconf -n to the bug.

** Changed in: postfix (Ubuntu)
   Status: New => Incomplete

-- 
cron doesn't send mail
https://bugs.launchpad.net/bugs/520273
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/mythtv

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 520273] Re: cron doesn't send mail

2010-04-16 Thread Scott James Remnant
Since cron is clearly invoking sendmail and that invokes postfix, I'm
guessing it goes missing inside postfix somewhere

** Package changed: cron (Ubuntu) => postfix (Ubuntu)

-- 
cron doesn't send mail
https://bugs.launchpad.net/bugs/520273
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in ubuntu.

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


[Bug 520273] [NEW] cron doesn't send mail

2010-04-16 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Binary package hint: cron

I have this as a test script called test_cron
___
#! /bin/bash
#

#if ! type promptYesNo > /dev/null 2>&1 ; then .
/home/woodnt/scripts/misc.sh ; fi

FILE=/tmp/cron.log
TIME=`date -d now "+%m-%d...@%h%m%s"`
if [ ! -f $FILE ] ; then
touch $FILE
fi

echo "Hello at $TIME from test_cron" |tee -a $FILE
___

>From the last line, one can see that that there is output.

It is trying to send mail as can be seen here:
___
root 29138  0.0  0.0  18708   988 ?Ss   23:00   0:00 cron
root 29166  0.0  0.0  91236  2192 ?S23:01   0:00  \_ CRON
root 29167  0.0  0.0  91244  1300 ?S23:01   0:00  |   \_ CRON
woodnt   29168  0.0  0.0  0 0 ?Zs   23:01   0:00  |   \_ 
[sh] 
woodnt   29193  0.0  0.0  37000  2100 ?S23:01   0:00  |   \_ 
/usr/sbin/sendmail -i -FCronDaemon -oem woodnt
woodnt   29194  0.0  0.0  36988  2096 ?S23:01   0:00  |   
\_ /usr/sbin/postdrop -r
___

$ mail
No mail for woodnt
woo...@toshiba-laptop /var/mail $

I have looked in /var/mail and it shows bupkis

woo...@toshiba-laptop /var/mail $ sudo cat *
[sudo] password for woodnt: 
woo...@toshiba-laptop /var/mail $

checking out /var/log/mail.log shows nothing being sent from cron.
mail.err is empty. No evidence of cron sending anything in mail.info
either.

This works:

woo...@toshiba-laptop /var/log $ echo hello|/usr/sbin/sendmail -i -FCronDaemon 
-oem woodnt
woo...@toshiba-laptop /var/log $ mail
Mail version 8.1.2 01/15/2001.  Type ? for help.
"/var/mail/woodnt": 1 message 1 new
>N  1 woo...@toshiba-la  Wed Feb 10 23:10   13/437   
&

So somewhere between cron sending the mail and it going through postfix
something is going wrong.

I have bsd-mailx installed which of course also installs postfix as a
depends.

I can't duplicate this problem on other systems.

Of note, I had installed ssmtp first for another reason, but uninstalled
thinking it might have been the problem. A purge uninstall then
reinstall of bsd-mailx didn't fix this. I am not sure if the culprit is
ssmtp configuring something and not undoing it on purge or if the fault
is in cron.

Thanks,
Narnie

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

-- 
cron doesn't send mail
https://bugs.edge.launchpad.net/bugs/520273
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to postfix in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread David Tomaschik
Howard, a quick google didn't show much other than package info for
libnss-ldapd.  Do you have any links to documentation that might be of
use?  We're about to do a major ldap rollout for our servers at work and
I want to know as much as I can ahead of time.

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread Howard Chu
Regardless of what the root cause turns out to be, you guys really need
to switch to libnss-ldapd, which will reliably isolate the user apps
from whatever junk is going on inside libldap / gnutls / whatever. (And
if you're not using the latest version, which also handles pam_ldap,
then you need to update.)

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread Howard Chu
Great find, Andreas. So gnutls is calling gcrypt's secure memory
functions. And yet, the gnutls docs say these functions are not used by
default, and certainly OpenLDAP does not configure gnutls to use them.
Something else in the stack must be setting that behavior.

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 565123] Re: chkutmp assert failure: *** stack smashing detected ***: ./chkutmp terminated

2010-04-16 Thread Apport retracing service
*** This bug is a duplicate of bug 546907 ***
https://bugs.launchpad.net/bugs/546907

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #546907, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   http://launchpadlibrarian.net/44495927/CoreDump.gz

** Attachment removed: "Dependencies.txt"
   http://launchpadlibrarian.net/44495928/Dependencies.txt

** Attachment removed: "Disassembly.txt"
   http://launchpadlibrarian.net/44495929/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   http://launchpadlibrarian.net/44495930/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   http://launchpadlibrarian.net/44495931/ProcStatus.txt

** Attachment removed: "Registers.txt"
   http://launchpadlibrarian.net/44495932/Registers.txt

** Attachment removed: "Stacktrace.txt"
   http://launchpadlibrarian.net/44495933/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   http://launchpadlibrarian.net/44495934/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 546907
   chkutmp assert failure: *** stack smashing detected ***: ./chkutmp terminated

** Tags removed: need-i386-retrace

-- 
chkutmp assert failure: *** stack smashing detected ***: ./chkutmp terminated
https://bugs.launchpad.net/bugs/565123
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to chkrootkit in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Launchpad Bug Tracker
This bug was fixed in the package mythtv - 0.23.0+fixes24158-0ubuntu1

---
mythtv (0.23.0+fixes24158-0ubuntu1) lucid; urgency=low

  * New upstream snapshot (r24158)
- work around XMLtv bug causing obscenely poor response.
  * debian/control: Build-Depend on libmysqlclient16-dev, as previous
depends are being removed from the archive. (LP: #563053)
 -- Dave Walker (Daviey)Fri, 16 Apr 2010 16:47:24 
+0100

** Changed in: mythtv (Ubuntu Lucid)
   Status: Triaged => Fix Released

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 565123] Re: chkutmp assert failure: *** stack smashing detected ***: ./chkutmp terminated

2010-04-16 Thread Ruben Verweij

** Attachment added: "CoreDump.gz"
   http://launchpadlibrarian.net/44495927/CoreDump.gz

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/44495928/Dependencies.txt

** Attachment added: "Disassembly.txt"
   http://launchpadlibrarian.net/44495929/Disassembly.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/44495930/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/44495931/ProcStatus.txt

** Attachment added: "Registers.txt"
   http://launchpadlibrarian.net/44495932/Registers.txt

** Attachment added: "Stacktrace.txt"
   http://launchpadlibrarian.net/44495933/Stacktrace.txt

** Attachment added: "ThreadStacktrace.txt"
   http://launchpadlibrarian.net/44495934/ThreadStacktrace.txt

** Visibility changed to: Public

-- 
chkutmp assert failure: *** stack smashing detected ***: ./chkutmp terminated
https://bugs.launchpad.net/bugs/565123
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to chkrootkit in ubuntu.

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


[Bug 565101] Re: walrus reports java.lang.OutOfMemoryError: Java heap space

2010-04-16 Thread C de-Avillez

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/44492702/Dependencies.txt

** Attachment added: "EucalyptusCloudDebugLog.gz"
   http://launchpadlibrarian.net/44492703/EucalyptusCloudDebugLog.gz

** Attachment added: "EucalyptusCloudOutputLog.gz"
   http://launchpadlibrarian.net/44492704/EucalyptusCloudOutputLog.gz

** Attachment added: "EucalyptusInstalledVersions.txt"
   http://launchpadlibrarian.net/44492705/EucalyptusInstalledVersions.txt

** Attachment added: "eucalyptus.conf.txt"
   http://launchpadlibrarian.net/44492706/eucalyptus.conf.txt

** Attachment added: "eucalyptus.local.conf.txt"
   http://launchpadlibrarian.net/44492707/eucalyptus.local.conf.txt

-- 
walrus reports java.lang.OutOfMemoryError: Java heap space
https://bugs.launchpad.net/bugs/565101
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in ubuntu.

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


[Bug 565101] [NEW] walrus reports java.lang.OutOfMemoryError: Java heap space

2010-04-16 Thread C de-Avillez
Public bug reported:

stress-testing, 400 instances to be started in total. After a while the
walrus starts reporting out-of-memory, and all new instances fail.

Ubuntu-server 2010-04-16, UEC 2010-04-16.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: eucalyptus-walrus 1.6.2-0ubuntu30
ProcVersionSignature: Ubuntu 2.6.32-21.31-server 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-server x86_64
Architecture: amd64
Date: Fri Apr 16 19:18:49 2010
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: eucalyptus

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


** Tags: amd64 apport-bug lucid

-- 
walrus reports java.lang.OutOfMemoryError: Java heap space
https://bugs.launchpad.net/bugs/565101
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in ubuntu.

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


[Bug 209447] Re: gnome-keyring-daemon does not honor constrained ssh identities

2010-04-16 Thread Bug Watch Updater
** Changed in: gnome-keyring
   Status: In Progress => Confirmed

-- 
gnome-keyring-daemon does not honor constrained ssh identities
https://bugs.launchpad.net/bugs/209447
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in ubuntu.

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


Re: [Bug 564861] [NEW] puppetmaster error /etc/puppet/files

2010-04-16 Thread Mark Foster
On 04/16/2010 12:08 PM, Mathias Gug wrote:
> On Fri, Apr 16, 2010 at 05:27:36PM -, BitPusher wrote:
>
>> Public bug reported:
>>
>> Binary package hint: puppet
>>
>> I just installed Lucid and puppetmaster. It shows an error in the syslog
>>
>> Apr 16 10:19:41 sea-build3 puppetmasterd[540]: Removing mount files:
>> /etc/puppet/files does not exist or is not a directory
>>
>>  
> Does that prevent the puppetmasterd process from starting?
>
No, the puppetmasterd process runs as normal.
>
>
>> Since the configuration is almost unchanged
>>  
> What has been modified?
>
Nothing - this message appears with the default configuration. I just 
verified this.
>importance low
>status incomplete
>
>


-- 
+_+ Mark Foster - Sr. Systems Engineer
-|- BitPusher, LLC -
/ \ 1-888-9PUSHER x803
 Skype: bitpusher-mfoster IRC: #bitpusher on freenode

-- 
puppetmaster error /etc/puppet/files
https://bugs.launchpad.net/bugs/564861
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to puppet in ubuntu.

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


[Bug 564861] Re: puppetmaster error /etc/puppet/files

2010-04-16 Thread Mathias Gug
** Changed in: puppet (Ubuntu)
   Importance: Undecided => Low

** Changed in: puppet (Ubuntu)
   Status: New => Incomplete

-- 
puppetmaster error /etc/puppet/files
https://bugs.launchpad.net/bugs/564861
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to puppet in ubuntu.

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


Re: [Bug 564861] [NEW] puppetmaster error /etc/puppet/files

2010-04-16 Thread Mathias Gug
On Fri, Apr 16, 2010 at 05:27:36PM -, BitPusher wrote:
> Public bug reported:
> 
> Binary package hint: puppet
> 
> I just installed Lucid and puppetmaster. It shows an error in the syslog
> 
> Apr 16 10:19:41 sea-build3 puppetmasterd[540]: Removing mount files:
> /etc/puppet/files does not exist or is not a directory
>

Does that prevent the puppetmasterd process from starting?
 
> Since the configuration is almost unchanged

What has been modified?

  importance low
  status incomplete

-- 
Mathias Gug
Ubuntu Developer  http://www.ubuntu.com

-- 
puppetmaster error /etc/puppet/files
https://bugs.launchpad.net/bugs/564861
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to puppet in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread Andreas Sandberg
** Also affects: libgcrypt11 (Ubuntu)
   Importance: Undecided
   Status: New

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 532733] Re: apt/dpkg in qemu-system-arm hangs if a big task is installed

2010-04-16 Thread Robert Nelson
For comparison sake, I gave qemu access to a 2nd hardrive in my system
"-hda /dev/sda1" same result as with using disk images..

Selecting previously deselected package libgnomekbd-common.
Unpacking libgnomekbd-common (from 
.../libgnomekbd-common_2.30.0-0ubuntu2_all.deb) ...
Selecting previously deselected package iso-codes.
Unpacking iso-codes (from .../iso-codes_3.12.1-1_all.deb) ...

Patch attached for kicks

** Patch added: "05-use-real-hardware.diff"
   http://launchpadlibrarian.net/44488197/05-use-real-hardware.diff

-- 
apt/dpkg in qemu-system-arm hangs if a big task is installed
https://bugs.launchpad.net/bugs/532733
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 423252] Re: NSS using LDAP on Karmic breaks 'su' and 'sudo'

2010-04-16 Thread Andreas Sandberg
I managed to get a core-dump from a test program (a nice little hack
that debugs the test application and core dumps it when it executes the
setuid syscall) that reproduces the bug. The following stack trace might
be of interest:

#0  __nptl_setxid (cmdp=0x7fff1439ad00) at allocatestack.c:1135
#1  0x7f41dda052fb in __setuid (uid=) at 
../sysdeps/unix/sysv/linux/setuid.c:26
#2  0x7f41db005124 in lock_pool (n=) at secmem.c:296
#3  secmem_init (n=) at secmem.c:477
#4  0x7f41db0052da in _gcry_secmem_malloc_internal (size=128) at 
secmem.c:509
#5  0x7f41db005368 in _gcry_secmem_malloc (size=128) at secmem.c:544
#6  0x7f41db00084d in do_malloc (n=1000, flags=1000, mem=0x7fff1439adb8) at 
global.c:730
#7  0x7f41db00087c in _gcry_malloc_secure (n=1000) at global.c:769
#8  0x7f41db0130c0 in md_open (h=0x7fff1439ae28, algo=1, secure=, hmac=) at md.c:487
#9  0x7f41db0131ea in _gcry_md_open (h=0x7fff1439af18, algo=1000, 
flags=) at md.c:530
#10 0x7f41dbd03c0f in wrap_gcry_mac_init (algo=, 
ctx=0x3e8) at mac-libgcrypt.c:42
#11 0x7f41dbcea127 in _gnutls_hmac_init (dig=0x7fff1439af10, 
algorithm=GNUTLS_MAC_MD5, key=0x10afbc0, keylen=24) at gnutls_hash_int.c:277
#12 0x7f41dbcfad78 in _gnutls_P_hash (algorithm=, 
secret=, secret_size=, seed=, seed_size=, total_bytes=, ret=0x7fff1439b170 "\231\376~", ) at 
gnutls_state.c:811
#13 0x7f41dbcfafca in _gnutls_PRF (session=, 
secret=, secret_size=, label=, label_size=, seed=0x7fff1439b570 
"K\310\331\346-\364\310*~E%\026\223g\216\323K֜\272^1\270Fn\025\254\307`\235%\rK\310\331\345\267\337\023y\314Tn\262-\277\236S\017\362B\237W\220\017\366H\035\372͟5\204\027\001",
 seed_size=, total_bytes=48, ret=0x10b2552) at 
gnutls_state.c:926
#14 0x7f41dbce883f in generate_normal_master (session=0x10b2530, 
keep_premaster=0) at gnutls_kx.c:155
#15 0x7f41dbcf35bb in _gnutls_connection_state_init (session=0x3e8) at 
gnutls_constate.c:434
#16 0x7f41dbce43f8 in _gnutls_send_handshake_final (session=0x10b2530, 
init=1) at gnutls_handshake.c:2472
#17 0x7f41dbce45d5 in _gnutls_handshake_common (session=0x10b2530) at 
gnutls_handshake.c:2700
#18 0x7f41dbce5c67 in gnutls_handshake (session=0x10b2530) at 
gnutls_handshake.c:2297
#19 0x7f41dd3196de in ?? () from /usr/lib/libldap_r-2.4.so.2
#20 0x7f41dd3184a2 in ?? () from /usr/lib/libldap_r-2.4.so.2
#21 0x7f41dd318703 in ldap_int_tls_start () from /usr/lib/libldap_r-2.4.so.2
#22 0x7f41dd5338fc in ?? () from /lib/libnss_ldap.so.2
#23 0x7f41dd533f29 in ?? () from /lib/libnss_ldap.so.2
#24 0x7f41dd534832 in ?? () from /lib/libnss_ldap.so.2
#25 0x7f41dd534bbd in ?? () from /lib/libnss_ldap.so.2
#26 0x7f41dd5352b7 in _nss_ldap_getpwnam_r () from /lib/libnss_ldap.so.2
#27 0x7f41dda0345d in __getpwnam_r (name=0x4017d4 "foo", 
resbuf=0x7f41ddcd8ce0, buffer=0x107f010 "nslcd", buflen=1024, result=) at ../nss/getXXbyYY_r.c:253
#28 0x7f41dda02e40 in getpwnam (name=0x4017d4 "foo") at 
../nss/getXXbyYY.c:117
#29 0x00401202 in main (argc=1, argv=0x7fff1439c538) at debug.c:175

Stack frame 2 (secmem.c:296 in libgcrypt) is of particular interest. The code 
looks like this (with uid = getuid()):
  if (uid && ! geteuid ())
{
  /* check that we really dropped the privs.
   * Note: setuid(0) should always fail */
  if (setuid (uid) || getuid () != geteuid () || !setuid (0))
log_fatal ("failed to reset uid: %s\n", strerror (errno));
}

This is clearly not what we want... :(

-- 
NSS using LDAP on Karmic breaks 'su' and 'sudo'
https://bugs.launchpad.net/bugs/423252
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libnss-ldap in ubuntu.

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


[Bug 564920] Re: PHP5 under Apache2 on 64 bit system is not completely 64 bit

2010-04-16 Thread R. Jones
Was php5 compiled with -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 on
64 bit systems?

-- 
PHP5 under Apache2 on 64 bit system is not completely 64 bit 
https://bugs.launchpad.net/bugs/564920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 565022] Re: package squid 2.7.STABLE7-1ubuntu12 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-04-16 Thread Richard Icare

** Attachment added: "AptOrdering.txt"
   http://launchpadlibrarian.net/44479856/AptOrdering.txt

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/44479857/Dependencies.txt

** Attachment added: "Df.txt"
   http://launchpadlibrarian.net/44479858/Df.txt

** Attachment added: "Dmesg.txt"
   http://launchpadlibrarian.net/44479859/Dmesg.txt

** Attachment added: "DpkgTerminalLog.txt"
   http://launchpadlibrarian.net/44479860/DpkgTerminalLog.txt

-- 
package squid 2.7.STABLE7-1ubuntu12 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/565022
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 565022] [NEW] package squid 2.7.STABLE7-1ubuntu12 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-04-16 Thread Richard Icare
Public bug reported:

Binary package hint: squid

When running  the upgrade of packages it came up with this error at the
end of upgrading

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: squid 2.7.STABLE7-1ubuntu12
ProcVersionSignature: Ubuntu 2.6.32-20.30-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-20-generic i686
Architecture: i386
Date: Fri Apr 16 21:53:06 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100318)
SourcePackage: squid
Title: package squid 2.7.STABLE7-1ubuntu12 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1

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


** Tags: apport-package i386 lucid

-- 
package squid 2.7.STABLE7-1ubuntu12 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/565022
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 564914] Re: virt-aa-helper denied messages in eucalyptus

2010-04-16 Thread Jamie Strandboge
** Changed in: libvirt (Ubuntu Lucid)
   Status: In Progress => Fix Committed

-- 
virt-aa-helper denied messages in eucalyptus
https://bugs.launchpad.net/bugs/564914
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 564996] Re: euca-describe-instances should order output newest last

2010-04-16 Thread Scott Moser
** Summary changed:

- euca-describe-instances should order output newest first
+ euca-describe-instances should order output newest last

-- 
euca-describe-instances should order output newest last
https://bugs.launchpad.net/bugs/564996
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to euca2ools in ubuntu.

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


[Bug 564996] [NEW] euca-describe-instances should order output newest first

2010-04-16 Thread Scott Moser
Public bug reported:

Binary package hint: euca2ools

euca-describe-instances currently outputs records in (I think) an 
'newest-instance-output-first' order.
that is both inconsistent with with ec2, and at least in my usage less useful.

I opened this against euca2ools, but just noticed that when I run
against ec2 (rather than against eucalyptus) the results are ordered in
'oldest-instance-output-first'.

Based on that i suspect that this is server side.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: euca2ools 1.2-0ubuntu10
ProcVersionSignature: Ubuntu 2.6.32-21.31-server 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-server x86_64
Architecture: amd64
Date: Fri Apr 16 14:48:20 2010
PackageArchitecture: all
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: euca2ools

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


** Tags: amd64 apport-bug lucid

-- 
euca-describe-instances should order output newest first
https://bugs.launchpad.net/bugs/564996
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to euca2ools in ubuntu.

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


[Bug 564996] Re: euca-describe-instances should order output newest first

2010-04-16 Thread Scott Moser

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/44468124/Dependencies.txt

-- 
euca-describe-instances should order output newest first
https://bugs.launchpad.net/bugs/564996
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to euca2ools in ubuntu.

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


[Bug 458514] Re: mysql-server-5.1 starts before filesystem is mounted (karmic)

2010-04-16 Thread Andrea Torre
Sorry for having not replied earlier. I haven't tried Lucid yet. However
I had to reinstall Karmic a couple of months ago and since then the
issue has appeared only once, even though the pc is booted daily.

Regards
Andrea

-- 
mysql-server-5.1 starts before filesystem is mounted (karmic)
https://bugs.launchpad.net/bugs/458514
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 562832] Re: module drbd8 update kernel from 2.6.32-16 to 2.6.32-20

2010-04-16 Thread Gaëtan Ferez
No, i don't think
Because, when i did this commands : 

# dkms remove -m drbd8 -v 8.3.7 -a 2.6.32-20-generic
# dkms build -m drbd8 -v 8.3.7 -a 2.6.32-20-generic
# dkms install -m drbd8 -v 8.3.7 -a 2.6.32-20-generic

Without any other command, the module is successfully build and modprobe don't 
return any error.
drbd8 run perfectly

-- 
module drbd8 update kernel from 2.6.32-16 to 2.6.32-20
https://bugs.launchpad.net/bugs/562832
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to drbd8 in ubuntu.

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


[Bug 564914] Re: virt-aa-helper denied messages in eucalyptus

2010-04-16 Thread Jamie Strandboge
** Also affects: libvirt (Ubuntu Lucid)
   Importance: High
 Assignee: Jamie Strandboge (jdstrand)
   Status: In Progress

** Description changed:

  virt-aa-helper checks disks to see if they have a backing store. The
- AppArmor profile for libvirt doesn't take into account the eucalyptus
- paths, so kern.log contains a bunch of non-fatal, but confusing denied
- messages.
+ AppArmor profile for virt-aa-helper doesn't take into account the
+ eucalyptus paths, so kern.log contains a bunch of non-fatal, but
+ confusing denied messages.

-- 
virt-aa-helper denied messages in eucalyptus
https://bugs.launchpad.net/bugs/564914
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 458514] Re: mysql-server-5.1 starts before filesystem is mounted (karmic)

2010-04-16 Thread Curtis Hovey
** Project changed: launchpad => null

-- 
mysql-server-5.1 starts before filesystem is mounted (karmic)
https://bugs.launchpad.net/bugs/458514
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 564920] Re: PHP5 under Apache2 on 64 bit system is not completely 64 bit

2010-04-16 Thread R. Jones

** Attachment added: "System generated bug report attached."
   http://launchpadlibrarian.net/44462618/apport.php5.m0o9Zn.apport

-- 
PHP5 under Apache2 on 64 bit system is not completely 64 bit 
https://bugs.launchpad.net/bugs/564920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 555981] Re: Restoring KVM guest from saved state results in hung guest with non-virtio devices

2010-04-16 Thread Florian Kruse
This bug affects me as well, BUT:

My VMs (also build with vm-builder) occasionally cannot be restored,
although I use virtio for disk and network interfaces. However, I cannot
reproduce the effect. Sometimes, it happens in around 1 of 10 attempts
to restore the VM, sometimes I can save/restore the machine a hundred of
times without any problems. Currently, I have no clue how to find out
what causes the effect.

-- 
Restoring KVM guest from saved state results in hung guest with non-virtio 
devices
https://bugs.launchpad.net/bugs/555981
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 563998] Re: 10.4 causes kvm to crash very early during boot

2010-04-16 Thread Gabe Gorelick
** Package changed: ubuntu => kvm (Ubuntu)

-- 
10.4 causes kvm to crash very early during boot
https://bugs.launchpad.net/bugs/563998
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to kvm in ubuntu.

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


[Bug 564920] [NEW] PHP5 under Apache2 on 64 bit system is not completely 64 bit

2010-04-16 Thread R. Jones
Public bug reported:

Binary package hint: php5

Something in php5 running under apache2 under Ubuntu 10.04 beta 2 (with
updates) is not fully 64 bit aware on a 64 bit system.  PHP scripts run
under Apache correctly under Ubuntu 8.04 LTS (with latest updates).
Under Ubuntu 10.04 beta 2, some place a value is being treated as 32
bits on a 64 bit system and is wrapping instead of using full 64 bits.
Related to sending large data (> 4G) in response to an HTTP post
request.

What is expected:  Full data (>4G) downloaded via dynamic PHP based URL.

What happens:  Data aborts based on wrap.  Calculated number of bytes to
be served are correct (>4G) as listed in the HTTP length header.  Actual
bytes served are (size) && 0x instead of (size) &&
0x on 64 bit system.

Most of data is being transfered via fpassthru($openFileHandle) call,
providing >4G bytes of data.

This works under Ubuntu 8.04 LTS on 64 bit system.

r...@opusdev2:~# lsb_release -rd
Description:Ubuntu lucid (development branch)
Release:10.04
r...@opusdev2:~# apt-cache policy php5
php5:
  Installed: 5.3.2-1ubuntu4
  Candidate: 5.3.2-1ubuntu4
  Version table:
 *** 5.3.2-1ubuntu4 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status
r...@opusdev2:~# apt-cache policy php5
php5:
  Installed: 5.3.2-1ubuntu4
  Candidate: 5.3.2-1ubuntu4
  Version table:
 *** 5.3.2-1ubuntu4 0
500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status

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

-- 
PHP5 under Apache2 on 64 bit system is not completely 64 bit 
https://bugs.launchpad.net/bugs/564920
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 554094] Re: Windows clients cannot connect unless Samba manually restarted

2010-04-16 Thread Charles Burns
The following is the only log entry made after last server reboot. This
is after the most recent 10.04 updates. I've also updated the clients
and rebooted them, and they still cannot connect (until Samba is
restarted). Only the last two entries are of the right time:

char...@sheridan:/var/log/samba$ tail log.smbd
  charles-pc (10.0.0.42) closed connection to service common
[2010/04/16 10:30:26,  1] smbd/service.c:1240(close_cnum)
  charles-pc (10.0.0.42) closed connection to service music
[2010/04/16 10:30:26,  1] smbd/service.c:1240(close_cnum)
  charles-pc (10.0.0.42) closed connection to service charles
[2010/04/16 12:27:59,  0] smbd/server.c:1069(main)
  smbd version 3.4.7 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2009
[2010/04/16 12:28:00,  0] smbd/server.c:1115(main)
  standard input is not a socket, assuming -D option


I also ensured that Samba is, in fact, running:

char...@sheridan:/var/log/samba$ ps ax | grep mbd
  858 ?Ss 0:00 smbd -F
  979 ?S  0:00 smbd -F
 1457 ?Ss 0:00 nmbd -D
 1790 pts/0S+ 0:00 grep mbd

Please let me know if any other information is needed. I'll even provide
a shell account, as this is not a mission-critical server.

-- 
Windows clients cannot connect unless Samba manually restarted
https://bugs.launchpad.net/bugs/554094
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 557924] Re: php5-cgi crashed with SIGSEGV in zend_get_constant_ex()

2010-04-16 Thread Chuck Short
** Changed in: php5 (Ubuntu)
   Status: Incomplete => Confirmed

-- 
php5-cgi crashed with SIGSEGV in zend_get_constant_ex()
https://bugs.launchpad.net/bugs/557924
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

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


[Bug 563998] [NEW] 10.4 causes kvm to crash very early during boot

2010-04-16 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When trying to install 10.4 on a kvm virtual machine, it causes the vm
to crash (shutdown forcefully) immediately after grub. Trying the
alternate install CD didn't help either. When updating a VM from 9.10,
it also causes the VM to immediately shut down after grub.

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

-- 
10.4 causes kvm to crash very early during boot
https://bugs.edge.launchpad.net/bugs/563998
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to kvm in ubuntu.

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


[Bug 353601] Re: nmap crashed with SIGSEGV in ultra_scan()

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: nmap (Ubuntu)
   Status: Incomplete => Invalid

-- 
nmap crashed with SIGSEGV in ultra_scan()
https://bugs.launchpad.net/bugs/353601
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nmap in ubuntu.

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


[Bug 371037] Re: Windows Fails To Maximise

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: nmap (Ubuntu)
   Status: Incomplete => Invalid

-- 
Windows Fails To Maximise
https://bugs.launchpad.net/bugs/371037
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nmap in ubuntu.

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


[Bug 560603] Re: crashes with SIGSEGV

2010-04-16 Thread Chuck Short
** Changed in: php5 (Ubuntu)
   Importance: Low => Medium

** Changed in: php5 (Ubuntu)
   Status: Incomplete => Confirmed

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

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


[Bug 564914] [NEW] virt-aa-helper denied messages in eucalyptus

2010-04-16 Thread Jamie Strandboge
Public bug reported:

virt-aa-helper checks disks to see if they have a backing store. The
AppArmor profile for libvirt doesn't take into account the eucalyptus
paths, so kern.log contains a bunch of non-fatal, but confusing denied
messages.

** Affects: libvirt (Ubuntu)
 Importance: High
 Assignee: Jamie Strandboge (jdstrand)
 Status: In Progress

** Changed in: libvirt (Ubuntu)
   Importance: Undecided => High

** Changed in: libvirt (Ubuntu)
   Status: New => In Progress

** Changed in: libvirt (Ubuntu)
Milestone: None => ubuntu-10.04

** Changed in: libvirt (Ubuntu)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

-- 
virt-aa-helper denied messages in eucalyptus
https://bugs.launchpad.net/bugs/564914
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in ubuntu.

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


[Bug 310913] Re: net-snmp process hang on hardy

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

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

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


[Bug 506865] Re: snmp-net not working with lm-sensors

2010-04-16 Thread Chuck Short
Can you try this on lucid?

thanks
chuck

** Changed in: net-snmp (Ubuntu)
   Status: Incomplete => Confirmed

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

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


[Bug 517574] Re: Please backport agent/mibgroup/host/hr_swrun.c to 5.4.1

2010-04-16 Thread Chuck Short
Im going to close this as this is fixed in lucid. However, this is
probably a good candidate for an SRU.

regards
chuck

** Changed in: net-snmp (Ubuntu)
 Assignee: Chuck Short (zulcss) => (unassigned)

-- 
Please backport agent/mibgroup/host/hr_swrun.c to 5.4.1
https://bugs.launchpad.net/bugs/517574
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

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


[Bug 517574] Re: Please backport agent/mibgroup/host/hr_swrun.c to 5.4.1

2010-04-16 Thread Chuck Short
Im going to close this as this is fixed in lucid. However, this is
probably a good candidate for an SRU.

regards
chuck

** Changed in: net-snmp (Ubuntu)
 Assignee: (unassigned) => Chuck Short (zulcss)

** Changed in: net-snmp (Ubuntu)
   Status: Incomplete => Fix Released

** Changed in: net-snmp (Ubuntu)
 Assignee: Chuck Short (zulcss) => (unassigned)

** Changed in: net-snmp (Ubuntu)
 Assignee: (unassigned) => Chuck Short (zulcss)

-- 
Please backport agent/mibgroup/host/hr_swrun.c to 5.4.1
https://bugs.launchpad.net/bugs/517574
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in ubuntu.

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


[Bug 524142] Re: on shut or reboot, sticks on "shutting down alsa"

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: nis (Ubuntu)
   Status: Incomplete => Invalid

-- 
on shut or reboot, sticks on "shutting down alsa"
https://bugs.launchpad.net/bugs/524142
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nis in ubuntu.

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


[Bug 458514] Re: mysql-server-5.1 starts before filesystem is mounted (karmic)

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

-- 
mysql-server-5.1 starts before filesystem is mounted (karmic)
https://bugs.launchpad.net/bugs/458514
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 354585] Re: mysql server fails to start in postinst on package upgrade

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

-- 
mysql server fails to start in postinst on package upgrade
https://bugs.launchpad.net/bugs/354585
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 465665] Re: package mysql-server-5.1 (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2010-04-16 Thread Chuck Short
Closing then.


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

-- 
package mysql-server-5.1 (not installed) failed to install/upgrade: subprocess 
new pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/465665
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 481072] Re: package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-04-16 Thread Chuck Short
User can provide the required info.

Regards
chuck

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

-- 
package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/481072
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 528463] Re: SECURITY UPDATE 5.1.37-1ubuntu5.1 - problem with instalation

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

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

-- 
SECURITY UPDATE 5.1.37-1ubuntu5.1 - problem with instalation
https://bugs.launchpad.net/bugs/528463
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 527275] Re: package mysql-server-5.1 5.1.41-3ubuntu7 failed to install/upgrade: subprocess installed post-installation script killed by signal (Interrupt)

2010-04-16 Thread Chuck Short
Thanks closing the bug then.

Regards
chuck

** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete => Fix Released

-- 
package mysql-server-5.1 5.1.41-3ubuntu7 failed to install/upgrade: subprocess 
installed post-installation script killed by signal (Interrupt)
https://bugs.launchpad.net/bugs/527275
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 529004] Re: package mysql-server-5.1 5.1.37-1ubuntu5 upgrade fails - cannot stop mysqld

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

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

-- 
package mysql-server-5.1 5.1.37-1ubuntu5 upgrade fails - cannot stop mysqld
https://bugs.launchpad.net/bugs/529004
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 532682] Re: instance stays in pending for > 1 hour, then to terminated

2010-04-16 Thread Scott Moser
@nipun , please open a new bug, as this one is fix-released.  It really
*as* fix released too, the problem that was solved was due to the
manifest path including the string 'tar' in it.

Please do open a new bug and report your problem.
Ideally, use
1. recreate your failure
2. use 'ubuntu-bug eucalyptus-common' on the cloud controller to report it and 
have it send the logs.

-- 
instance stays in pending for > 1 hour, then to terminated
https://bugs.launchpad.net/bugs/532682
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in ubuntu.

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


[Bug 529466] Re: package mysql-server-5.1 5.1.37-1ubuntu5.1 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

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

-- 
package mysql-server-5.1 5.1.37-1ubuntu5.1 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 1
https://bugs.launchpad.net/bugs/529466
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 531216] Re: Ubuntu 9.10 Server x86_64 - mysql crashes 'ERROR: The partition with /data/mysql is too full!' but there are at least 16 GB free on each partiton (boot and data)

2010-04-16 Thread Chuck Short
** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete => Confirmed

-- 
Ubuntu 9.10 Server x86_64 - mysql crashes 'ERROR: The partition with 
/data/mysql is too full!' but there are at least 16 GB free on each partiton 
(boot and data)
https://bugs.launchpad.net/bugs/531216
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 542543] Re: Access denied for user 'root'@'localhost' to database SOMEDB

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

-- 
Access denied for user 'root'@'localhost' to database SOMEDB
https://bugs.launchpad.net/bugs/542543
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 539454] Re: package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: il sottoprocesso nuovo script pre-removal ha restituito lo stato di errore 1

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

-- 
package mysql-server-5.1 5.1.37-1ubuntu5 failed to install/upgrade: il 
sottoprocesso nuovo script pre-removal ha restituito lo stato di errore 1
https://bugs.launchpad.net/bugs/539454
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 551130] Re: infinite loop in /etc/init/mysql.conf if mysqld is not running.

2010-04-16 Thread Chuck Short
** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete => Confirmed

-- 
infinite loop in /etc/init/mysql.conf if mysqld is not running.
https://bugs.launchpad.net/bugs/551130
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 123427] Re: [apport] package mysql-server-5.0 failed to install/upgrade: host.frm (and other tables from mysql database) not found

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

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

-- 
[apport] package mysql-server-5.0 failed to install/upgrade: host.frm (and 
other tables from mysql database) not found
https://bugs.launchpad.net/bugs/123427
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 559533] Re: [ubuntu 10.4] when _boot_ in single mode, mysql is running

2010-04-16 Thread Chuck Short
** Changed in: mysql-dfsg-5.1 (Ubuntu)
   Status: Incomplete => Confirmed

-- 
[ubuntu 10.4] when _boot_ in single mode, mysql is running
https://bugs.launchpad.net/bugs/559533
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in ubuntu.

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


[Bug 382826] Re: package mysql-server 5.1.30really5.0.75-0ubuntu10 failed to install/upgrade: subprocess pre-installation script returned error exit status 1

2010-04-16 Thread Chuck Short
Adam, No it wouldnt I was wondering if you were still having this
problem?

chuck

-- 
package mysql-server 5.1.30really5.0.75-0ubuntu10 failed to install/upgrade: 
subprocess pre-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/382826
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 420451] Re: package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to install/upgrade: subprocess post-installation script killed by signal (Interrupt)

2010-04-16 Thread Chuck Short
** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete => Confirmed

-- 
package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to 
install/upgrade: subprocess post-installation script killed by signal 
(Interrupt)
https://bugs.launchpad.net/bugs/420451
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

-- 
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 466018] Re: package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2010-04-16 Thread Chuck Short
Closing then, please re-open if this is still a problem.

Regards
chuck

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

-- 
package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to 
install/upgrade: subprocess post-installation script returned error exit status 
1
https://bugs.launchpad.net/bugs/466018
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 493325] Re: mysqld crashes with large key_buffer (25G)

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete => Won't Fix

-- 
mysqld crashes with large key_buffer (25G)
https://bugs.launchpad.net/bugs/493325
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 532682] Re: instance stays in pending for > 1 hour, then to terminated

2010-04-16 Thread nipun
I had the exact same problem with image decryption at walrus. The kernel
and ramdisk are transfered fine to the nc. After reading this bug
report, I upgraded to Lucid Lynx from Karmic, yesterday. But the same
problem exists.

I am struck on this from 5 days now, pleas tell me if  there is any
work-around available such as not encrypting the image while uploading
it to Walrus.

-- 
instance stays in pending for > 1 hour, then to terminated
https://bugs.launchpad.net/bugs/532682
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in ubuntu.

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


[Bug 502518] Re: Lost connection to MySQL server during query

2010-04-16 Thread Chuck Short
How big is the file you are trying to import btw?

Regards
chuck

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

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

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


[Bug 544030] Re: package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2010-04-16 Thread Chuck Short
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: Incomplete => Won't Fix

-- 
package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to 
install/upgrade: subprocess new pre-removal script returned error exit status 1
https://bugs.launchpad.net/bugs/544030
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 561750] Re: squid starts and stops immediately (after upgrade from karmic to lucid)

2010-04-16 Thread Chuck Short
This should be fixed now for lucid, thanks for the bug report.

Regards
chuck

** Changed in: squid (Ubuntu)
   Status: Incomplete => Fix Committed

** Changed in: squid (Ubuntu)
 Assignee: (unassigned) => Chuck Short (zulcss)

-- 
squid starts and stops immediately (after upgrade from karmic to lucid)
https://bugs.launchpad.net/bugs/561750
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 354434] Re: ftp(vsftpd 2.0.6) download crc error, thus the data is good on disk(via ssh orsftp). Help needed!

2010-04-16 Thread Chuck Short
We'd like to figure out what's causing this bug for you, but we haven't
heard back from you in a while. Could you please provide the requested
information? Thanks!

-- 
ftp(vsftpd 2.0.6)  download crc error, thus the data is good on disk(via ssh 
orsftp). Help needed!
https://bugs.launchpad.net/bugs/354434
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vsftpd in ubuntu.

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


[Bug 562832] Re: module drbd8 update kernel from 2.6.32-16 to 2.6.32-20

2010-04-16 Thread Scott Moser
** Changed in: drbd8 (Ubuntu)
   Status: Incomplete => New

** Also affects: dkms (Ubuntu)
   Importance: Undecided
   Status: New

-- 
module drbd8 update kernel from 2.6.32-16 to 2.6.32-20
https://bugs.launchpad.net/bugs/562832
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to drbd8 in ubuntu.

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


[Bug 564861] Re: puppetmaster error /etc/puppet/files

2010-04-16 Thread BitPusher
Creating an empty /etc/puppet/files directory makes the error go away.
Since templates and manifests are also (empty) directories in /etc/puppet that 
get created by the packages, I would suggest that files/ be treated the same

-- 
puppetmaster error /etc/puppet/files
https://bugs.launchpad.net/bugs/564861
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to puppet in ubuntu.

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


[Bug 564861] [NEW] puppetmaster error /etc/puppet/files

2010-04-16 Thread BitPusher
Public bug reported:

Binary package hint: puppet

I just installed Lucid and puppetmaster. It shows an error in the syslog

Apr 16 10:19:41 sea-build3 puppetmasterd[540]: Removing mount files:
/etc/puppet/files does not exist or is not a directory

Since the configuration is almost unchanged I wanted to report it as a
bug

r...@sea-build3:~# ls -al /etc/puppet/
total 36
drwxr-xr-x  4 root root 4096 2010-04-16 09:16 .
drwxr-xr-x 74 root root 4096 2010-04-16 10:22 ..
-rw-r--r--  1 root root 2346 2010-01-29 13:32 auth.conf
-rwxr-xr-x  1 root root  245 2010-03-19 19:32 etckeeper-commit-post
-rwxr-xr-x  1 root root  256 2010-03-19 19:32 etckeeper-commit-pre
-rw-r--r--  1 root root  459 2010-03-19 19:32 fileserver.conf
drwxr-xr-x  2 root root 4096 2010-03-19 19:32 manifests
-rw-r--r--  1 root root  504 2010-04-16 09:15 puppet.conf
drwxr-xr-x  2 root root 4096 2010-03-19 19:32 templates

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

-- 
puppetmaster error /etc/puppet/files
https://bugs.launchpad.net/bugs/564861
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to puppet in ubuntu.

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


[Bug 513273] Re: kvm with -vga std is broken since karmic

2010-04-16 Thread Launchpad Bug Tracker
This bug was fixed in the package vgabios - 0.6c-2ubuntu1

---
vgabios (0.6c-2ubuntu1) lucid; urgency=low

  * debian/roll-back-to-qemu_0.12.3-snapshot.patch: this patch
brings vgabios back to the version released in qemu-0.12.3, which
is recommended specifically by qemu and qemu-kvm upstream, LP: #513273
 -- Dustin KirklandFri, 16 Apr 2010 10:24:40 -0500

** Changed in: vgabios (Ubuntu Lucid)
   Status: In Progress => Fix Released

-- 
kvm with -vga std is broken since karmic
https://bugs.launchpad.net/bugs/513273
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 562832] Re: module drbd8 update kernel from 2.6.32-16 to 2.6.32-20

2010-04-16 Thread Scott Moser
ah.  so it would seem that dkms is not finding the correct version of headers 
if there are multiple present.
Does that sound right?

-- 
module drbd8 update kernel from 2.6.32-16 to 2.6.32-20
https://bugs.launchpad.net/bugs/562832
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to drbd8 in ubuntu.

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


[Bug 564842] Re: Installing winbind causes sudo to behave weird on SIGINT

2010-04-16 Thread Hernando Torque

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/7651/Dependencies.txt

** Attachment added: "SambaInstalledVersions.txt"
   http://launchpadlibrarian.net/7652/SambaInstalledVersions.txt

-- 
Installing winbind causes sudo to behave weird on SIGINT
https://bugs.launchpad.net/bugs/564842
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 564842] [NEW] Installing winbind causes sudo to behave weird on SIGINT

2010-04-16 Thread Hernando Torque
Public bug reported:

Binary package hint: samba

With winbind installed I cannot abort a sudo password request (gnome-
terminal and VT) with a single Ctrl-C key combo. Instead the password
prompt is shown again. Pushing either Ctrl-C a second time or the enter
key brings me back to the prompt:

t...@box:~$ sudo echo "foo"
[sudo] password for test: // Ctrl-C
[sudo] password for test: // Ctrl-C or enter key
t...@box:~$

I've found out that this behavior is caused by the changes made to
/etc/pam.d/common-auth:

*) common-auth without windbind:

auth[success=1 default=ignore]  pam_unix.so nullok_secure
authrequisite   pam_deny.so
authrequiredpam_permit.so

*) common-auth with winbind installed:

auth[success=2 default=ignore]  pam_unix.so nullok_secure
auth[success=1 default=ignore]  pam_winbind.so krb5_auth 
krb5_ccache_type=FILE cached_login try_first_pass
authrequisite   pam_deny.so
authrequiredpam_permit.so

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: winbind 2:3.4.7~dfsg-1ubuntu3
ProcVersionSignature: Ubuntu 2.6.32-21.31-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-21-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Fri Apr 16 18:50:28 2010
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
RelatedPackageVersions:
 nautilus 1:2.30.0-0ubuntu4
 gvfs 1.6.0+git20100414-0ubuntu1
SambaClientRegression: Yes
SourcePackage: samba

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


** Tags: apport-bug i386 lucid

-- 
Installing winbind causes sudo to behave weird on SIGINT
https://bugs.launchpad.net/bugs/564842
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Launchpad Bug Tracker
** Branch linked: lp:mythtv/mythtv-fixes

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 564796] [NEW] The --print options in the logwatch man page examples don't work

2010-04-16 Thread Chris Brown
Public bug reported:

Binary package hint: logwatch

In Ubuntu 10.04  the man page for logwatch shows two examples that both
use the --print option. They don't work. Both of them report "Unknown
option: print". This could be resolved by changing either the logwatch
script or the man page.

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

-- 
The --print options in the logwatch man page examples don't work
https://bugs.launchpad.net/bugs/564796
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to logwatch in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Chuck Short
** Changed in: gpsdrive (Ubuntu Lucid)
   Status: Triaged => Fix Committed

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Dave Walker
** Changed in: mythtv (Ubuntu Lucid)
 Assignee: Mario Limonciello (superm1) => Dave Walker (davewalker)

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 532733] Re: apt/dpkg in qemu-system-arm hangs if a big task is installed

2010-04-16 Thread Oliver Grawert
as expected, same hang using -drive
file=${IMAGENAME},aio=threads,cache=writeback

-- 
apt/dpkg in qemu-system-arm hangs if a big task is installed
https://bugs.launchpad.net/bugs/532733
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 513273] Re: kvm with -vga std is broken since karmic

2010-04-16 Thread Dustin Kirkland
** Changed in: vgabios (Ubuntu Lucid)
   Status: Fix Committed => In Progress

-- 
kvm with -vga std is broken since karmic
https://bugs.launchpad.net/bugs/513273
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 552360] Re: package squid 2.7.STABLE7-1ubuntu11 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-04-16 Thread Martin Pitt
Closing manually due to syntax error in changelog

 squid (2.7.STABLE7-1ubuntu12) lucid; urgency=low
 .
   * debian/squid.upstart, debian/rules, postrm, postinst:  Fixed up 
postinstallation
 (LP: # 552360)


** Changed in: squid (Ubuntu Lucid)
   Status: Fix Committed => Fix Released

-- 
package squid 2.7.STABLE7-1ubuntu11 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/552360
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 532733] Re: apt/dpkg in qemu-system-arm hangs if a big task is installed

2010-04-16 Thread Oliver Grawert
-drive file=${IMAGENAME},aio=native,cache=writeback appears to work
faster overall but still hangs sadly ... trying the same with
aio=threads now but my hopes arent high

-- 
apt/dpkg in qemu-system-arm hangs if a big task is installed
https://bugs.launchpad.net/bugs/532733
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 552360] Re: package squid 2.7.STABLE7-1ubuntu11 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-04-16 Thread Thierry Carrez
** Changed in: squid (Ubuntu Lucid)
   Status: Confirmed => Fix Committed

-- 
package squid 2.7.STABLE7-1ubuntu11 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/552360
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Martin Pitt
Mario, would you mind doing the MythTV migration to libmysqlclient16?
Shoudl be a simple rebuild, but testing would be good

** Changed in: mythtv (Ubuntu Lucid)
   Status: New => Triaged

** Changed in: mythtv (Ubuntu Lucid)
 Assignee: (unassigned) => Mario Limonciello (superm1)

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Martin Pitt
The following rdepends are still in lucid:

-- lucid/universe build deps on libmysqlclient15-dev:
gpsdrive
-- lucid/universe amd64 deps on libmysqlclient15off:
matita
-- lucid/universe i386 deps on libmysqlclient15off:
matita
-- lucid/multiverse build deps on libmysqlclient15-dev:
mythplugins
mythtv

(In case someone runs checkrdepends themselves, the rest of the output
is due to alternate dependencies; I checked that those prefer version
16)


** Also affects: matita (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: gpsdrive (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: mythtv (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: mythplugins (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gpsdrive (Ubuntu Lucid)
   Status: New => Triaged

** Changed in: matita (Ubuntu Lucid)
   Status: New => Triaged

** Changed in: mythplugins (Ubuntu Lucid)
   Status: New => In Progress

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Thierry Carrez
** Also affects: mysql-dfsg-5.0 (Ubuntu Lucid)
   Importance: High
   Status: Triaged

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 563084] Re: bacula-director-pgsql does not install cleanly with db-config

2010-04-16 Thread Thierry Carrez
Cherrypicked based on the last two revisions of internal/pgsql:

http://git.debian.org/?p=dbconfig-common/dbconfig-
common.git;a=blobdiff;f=internal/pgsql;h=d3a6f1dd069533dc8fd645be74b9827fc4f5d456;hp=44bbb849d17823d8cbebfbb65cb6b94a074efdd0;hb=78f0d748d85acbd280e59d46b65f86828d95bf76;hpb=2ab563e299b15a51342cb384f361241916f124ce

and uploaded.

** Changed in: dbconfig-common (Ubuntu Lucid)
   Status: In Progress => Fix Committed

-- 
bacula-director-pgsql does not install cleanly with db-config
https://bugs.launchpad.net/bugs/563084
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

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


[Bug 563053] Re: Please remove Mysql 5.0 from the archive for lucid.

2010-04-16 Thread Chuck Short
** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Importance: Undecided => High

-- 
Please remove Mysql 5.0 from the archive for lucid.
https://bugs.launchpad.net/bugs/563053
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

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


[Bug 564727] Re: qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot

2010-04-16 Thread Chris Bainbridge
Apparently this is listed already on the upstream page http://www.linux-
kvm.org/page/Guest_Support_Status#Linux_Family:_Ubuntu.2FDebian_Derivatives

-- 
qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot
https://bugs.launchpad.net/bugs/564727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 564727] Re: qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot

2010-04-16 Thread Chris Bainbridge
Confirmed under Karmic.

-- 
qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot
https://bugs.launchpad.net/bugs/564727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 564727] [NEW] qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot

2010-04-16 Thread Chris Bainbridge
Public bug reported:

Binary package hint: qemu-kvm

Trying to boot this iso:

7d88cd87df509a740d9f47b9bbf1375e *ubuntu-7.10-server-i386.iso
( from http://mirror.linux.org.au/ubuntu-releases/7.10/ )

Domain XML definition is:


  ubuntu710
  c13f4b8a-4350-0151-2815-f61a074c4cc6
  524288
  524288
  1
  
hvm

  
  



  
  
  destroy
  restart
  restart
  
/usr/bin/kvm

  
  


  
  
  




  

  
  
libvirt-c13f4b8a-4350-0151-2815-f61a074c4cc6
libvirt-c13f4b8a-4350-0151-2815-f61a074c4cc6
  


Hangs at:

ISOLINUX 3.36 Debian-2007-08-30  Copyright (C) 1994-2007 H. Peter Anvin
Loading...

The ISO boots fine on VirtualBox.

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New

-- 
qemu-kvm: ubuntu-7.10-server-i386.iso fails to boot
https://bugs.launchpad.net/bugs/564727
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 532733] Re: apt/dpkg in qemu-system-arm hangs if a big task is installed

2010-04-16 Thread Oliver Grawert
same for -drive file=${IMAGENAME},aio=native,cache=writethrough, testing
writeback now

-- 
apt/dpkg in qemu-system-arm hangs if a big task is installed
https://bugs.launchpad.net/bugs/532733
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in ubuntu.

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


[Bug 502071] Re: FH_DATE_PAST_20XX scores on all mails dated 2010 or later

2010-04-16 Thread Tudor Holton
@Peter   Thanks for mentioning that you had a linode.  I'd been
scratching my head for weeks as to why I supposedly had everything
updated but still this problem.  I added in the extra karmic-updates
lines and that fixed it for me, too.

-- 
FH_DATE_PAST_20XX scores on all mails dated 2010 or later
https://bugs.launchpad.net/bugs/502071
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to spamassassin in ubuntu.

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


  1   2   >