[Bug 1162999] Re: PHP should be updated in 12.04.1 LTS, as 5.3.10 has a regression

2013-04-02 Thread Ondřej Surý
The update policy doesn't allow that. However either you can upgrade to
newest PHP using PPA (ppa:ondrej/php5) or that individual fix for this
bug can be backported if severity is high enough. Usually it needs to be
security bug or the impact has to be quite big.

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

Title:
  PHP should be updated in 12.04.1 LTS, as 5.3.10 has a regression

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1162999/+subscriptions

-- 
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 1160108] Re: twisted ERROR: Unhandled Error when destroying services

2013-04-02 Thread Yolanda Robla
** Changed in: juju (Ubuntu)
   Status: New = Confirmed

** Changed in: juju (Ubuntu)
   Importance: Undecided = High

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

Title:
  twisted ERROR: Unhandled Error when destroying services

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju/+bug/1160108/+subscriptions

-- 
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 1161012] Re: Clamav package adds proxy to config on install and update

2013-04-02 Thread Yolanda Robla
** Changed in: clamav (Ubuntu)
   Status: New = Incomplete

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

Title:
  Clamav package adds proxy to config on install and update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/1161012/+subscriptions

-- 
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 1163147] [NEW] can't resolve lan hosts (regression)

2013-04-02 Thread Seth Arnold
Public bug reported:

First, apologies for the complicated configuration.

I use the 'uvt' front-end to libvirt-managed kvm guest machines. I also
have a LAN with a router that does local dynamic DNS configuration with
the client-provided dhcp hostnames.

I would like to resolve hostnames on my machine for both VM guests and
LAN hosts. This configuration worked for 12.04 LTS, 12.10, but does not
work for Raring. I have followed the directions at
https://wiki.ubuntu.com/SecurityTeam/TestingEnvironment#Networking_with_libvirt
:

 Put a line into /etc/dhcp/dhclient.conf like so:
 
 prepend domain-name-servers 192.168.122.1;
 
 Disable the system dnsmasq to prevent it from looping with libvirt's dnsmasq 
 by modifying
 /etc/NetworkManager/NetworkManager.conf to comment out the following line:
 
 #dns=dnsmasq

My /etc/resolv.conf when the wireless is up:
$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 192.168.122.1
nameserver 192.168.1.1

Here's trying to look up a host on my network:
$ host dean
Host dean not found: 3(NXDOMAIN)
$ host dean 192.168.122.1
Using domain server:
Name: 192.168.122.1
Address: 192.168.122.1#53
Aliases: 

Host dean not found: 3(NXDOMAIN)
$ host dean 192.168.1.1
Using domain server:
Name: 192.168.1.1
Address: 192.168.1.1#53
Aliases: 

dean has address 192.168.1.236
$ 
$ host 192.168.1.236
236.1.168.192.in-addr.arpa domain name pointer dean.
$ host 192.168.1.236 192.168.122.1
Using domain server:
Name: 192.168.122.1
Address: 192.168.122.1#53
Aliases: 

236.1.168.192.in-addr.arpa domain name pointer dean.
$ host 192.168.1.236 192.168.1.1
Using domain server:
Name: 192.168.1.1
Address: 192.168.1.1#53
Aliases: 

236.1.168.192.in-addr.arpa domain name pointer dean.
$ 

I want $ host dean
Host dean not found: 3(NXDOMAIN)
$ host dean 192.168.122.1
Using domain server:
Name: 192.168.122.1
Address: 192.168.122.1#53
Aliases: 

Host dean not found: 3(NXDOMAIN)
$ host dean 192.168.1.1
Using domain server:
Name: 192.168.1.1
Address: 192.168.1.1#53
Aliases: 

dean has address 192.168.1.236
$ 
$ host 192.168.1.236
236.1.168.192.in-addr.arpa domain name pointer dean.
$ host 192.168.1.236 192.168.122.1
Using domain server:
Name: 192.168.122.1
Address: 192.168.122.1#53
Aliases: 

236.1.168.192.in-addr.arpa domain name pointer dean.
$ host 192.168.1.236 192.168.1.1
Using domain server:
Name: 192.168.1.1
Address: 192.168.1.1#53
Aliases: 

236.1.168.192.in-addr.arpa domain name pointer dean.
$ 


I'm surprised that 192.168.122.1 knows the reverse information for dean.

I want the query for plain dean to succeed. (As that's how 'ssh'
works..)

If I swap the order of the lines in /etc/resolv.conf to put 192.168.1.1 first,
I get the opposite situation:

$ host dean
dean has address 192.168.1.236
$ uvt start sec-precise-amd64
Sleeping 5 seconds to give 'sec-precise-amd64' a chance to start
$ ssh sec-precise-amd64 echo hello
ssh: Could not resolve hostname sec-precise-amd64: No such file or directory
$ ssh sec-precise-amd64. echo hello
ssh: Could not resolve hostname sec-precise-amd64.: No such file or directory
$ ssh sec-precise-amd64.local echo hello
hello


I do not want to use the .local form for all my VMs. That is annoying and the
scripts we have written around uvt assume that the .local is not necessary.

12.04 LTS and 12.10 had this working well. I would like Raring to work that
well again.

Thanks

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: dnsmasq (not installed)
ProcVersionSignature: Ubuntu 3.8.0-15.25-generic 3.8.4
Uname: Linux 3.8.0-15-generic x86_64
ApportVersion: 2.9.2-0ubuntu5
Architecture: amd64
Date: Tue Apr  2 00:04:49 2013
InstallationDate: Installed on 2012-10-18 (166 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
MarkForUpload: True
ProcEnviron:
 TERM=rxvt-unicode
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: dnsmasq
UpgradeStatus: Upgraded to raring on 2013-03-18 (15 days ago)

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


** Tags: amd64 apport-bug raring

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1162999] Re: PHP should be updated in 12.04.1 LTS, as 5.3.10 has a regression

2013-04-02 Thread Robie Basak
Thank you for reporting this bug and helping to make Ubuntu better.

The update policy is documented at
https://wiki.ubuntu.com/StableReleaseUpdates. PHP doens't have a
microrelease exception, so we can only backport a fix. Thanks for
pointing us to it!

** Summary changed:

- PHP should be updated in 12.04.1 LTS, as 5.3.10 has a regression
+ stream_get_line() incorrectly blocks

** Bug watch added: bugs.php.net/ #60817
   http://bugs.php.net/bug.php?id=60817

** Also affects: php via
   http://bugs.php.net/bug.php?id=60817
   Importance: Unknown
   Status: Unknown

** Tags removed: upgrade-software-version

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

Title:
  stream_get_line() incorrectly blocks

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1162999/+subscriptions

-- 
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 1157589] Re: kvm hangs for freebsd guests since raring upgrade

2013-04-02 Thread Vincent Ladeuil
Testing done, the bug is present in 3.8.4

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

Title:
  kvm hangs for freebsd guests since raring upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kvm/+bug/1157589/+subscriptions

-- 
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 1162999] Re: stream_get_line() incorrectly blocks

2013-04-02 Thread Robie Basak
Before this bug can be considered for 12.04, it must first be fixed in
the development version.

Using the test case provided in the upstream bug, with the development
release (5.4.9-4ubuntu2), I'm getting:

server got line: test #1
server got line: test2
server got line: test3
server got line: test4
server got line: 
client done
server got line: 
server done

This seems to be consistent, but there is a long hang after the first
four lines before the rest of the result appears and the program exits.

On precise-security (5.3.10-1ubuntu3.6), I get:

server got line: test #1
client done
server got line: test2
server got line: test3
server got line: test4
server done

This is also consistent. This time I get a long hang before any output,
and then the entire result appears and the program exits.

These results do not appear to be consistent with the actual and
expected test case results in the upstream bug. Could you help with
this, please? Am I interpreting this wrong? Is the bug fixed in the
development version? Can you provide an updated test case, expected
results and actual results that work with the released Ubuntu packages?

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

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

Title:
  stream_get_line() incorrectly blocks

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1162999/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Robie Basak
Thank you for filing this bug and helping to make Ubuntu better.

I appreciate that this behaviour has changed for you. I understand what
you're trying to do/have been doing.

I always saw this use of dnsmasq as a hack. Does anybody know if it is
actually documented as supported behaviour upstream?

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1162838] Re: Samba 3.6.3 for amd64 segfault with sig=11 on UBUNTU 12.04

2013-04-02 Thread Robie Basak
Thank you for filing this bug and helping to make Ubuntu better.

Setting this bug as Medium Importance for now, as it is not clear if
anybody else is affected by this problem yet.

** Changed in: samba (Ubuntu)
   Importance: Undecided = Medium

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

Title:
  Samba 3.6.3 for amd64 segfault with sig=11 on UBUNTU 12.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1162838/+subscriptions

-- 
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 952185] Re: ~/.pam_environment not parsed by default

2013-04-02 Thread Sebastien Bacher
there is a new bug reported against the precise version that states that
$PATH stopped including /usr/games after the update: bug #1162836

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

Title:
  ~/.pam_environment not parsed by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/lightdm/+bug/952185/+subscriptions

-- 
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 1088136] Re: AUTH cannot handle a request with an initial-response over 2048 bytes (GSSAPI-related)

2013-04-02 Thread urusha
The package from precise-proposed 4.76-3ubuntu3.2 fixes this bug. So,
I'll change the tag.


** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  AUTH cannot handle a request with an initial-response over 2048 bytes
  (GSSAPI-related)

To manage notifications about this bug go to:
https://bugs.launchpad.net/exim/+bug/1088136/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Thomas Hood
 Put a line into /etc/dhcp/dhclient.conf like so:

 prepend domain-name-servers 192.168.122.1;

The following doesn't address the main issue but does seem to me to be
worth mentioning.

Since the introduction of resolvconf in Ubuntu 12.04 it is more
advisable to configure nameserver addresses via the network
configuration tool, i.e., either ifup or NetworkManager.

If you are using ifup then you add extra nameserver addresses to logical
interface definitions in /etc/network/interfaces as arguments to the
dns-nameservers option.

If you are using NetworkManager (as you seem to be doing, given that you
are editing NetworkManager.conf) then add nameserver addresses in Edit
Connections | connection | Edit... | IPv4 Settings | Additional DNS
servers; if necessary, remove DHCP-acquired nameserver addresses by
setting Method to Automatic (DHCP) addresses only.

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Thomas Hood
Where did you get the uvt program?

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1163218] [NEW] Typo in nova-cells upstart script

2013-04-02 Thread Olivier Buisson
Public bug reported:

Release : 
Description:Ubuntu 12.04.2 LTS
Release:12.04

nova-cells:
  Installed: 1:2013.1~rc1-0ubuntu1~cloud0
  Candidate: 1:2013.1~rc1-0ubuntu1~cloud0
  Version table:
 *** 1:2013.1~rc1-0ubuntu1~cloud0 0
500 http://ubuntu-cloud.archive.canonical.com/ubuntu/ 
precise-proposed/grizzly/main amd64 Packages
100 /var/lib/dpkg/status

Nova-cells fail to start because of a typo in /etc/init/nova-cells.conf

You should replace 
   chown nova:Root /var/lock nova
---
   chown nova:root /var/lock/nova

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

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

Title:
  Typo in nova-cells upstart script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1163218/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Thomas Hood
The instructions say you should comment out dns=dnsmasq in order to
disable the system dnsmasq. But commenting out that line (and
restarting network-manager) will only disable the NetworkManager-
controlled dnsmasq instance (which listens at 127.0.1.1 in Quantal and
higher, at 127.0.0.1 in Precise). If you have the dnsmasq package
installed then you have another system dnsmasq instance running which
listens by default on all network interfaces. Make sure that the
dnsmasq package is not installed if you don't want this dnsmasq
instance to be running.

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Thomas Hood
*** This bug is a duplicate of bug 1126488 ***
https://bugs.launchpad.net/bugs/1126488

I guess this is the same as bug #1126488.

** This bug has been marked a duplicate of bug 1126488
   libvirt instance of dnsmasq in raring fails to forward DNS requests

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1159748] Re: Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

2013-04-02 Thread Juan Pablo Marco Cardona
Hello again,
last sunday the apache2 process died again:
[1710511.756125] /usr/sbin/apach[4244]: segfault at 6c ip 7f2e061b7e84 sp 
7fffbdc40060 error 4 in libpthread-2.15.so[7f2e061ae000+18000]

I attach the apache2 (CoreDumpDirectory in the apache configuration file
) core generate in this crash.

Thinking about this crash, as it happens regularly almost every sunday around 
06:45 AM, maybe the crash is generated by the tasks crond runs weekly:
grep weekly /etc/crontab 
47 6* * 7   roottest -x /usr/sbin/anacron || ( cd /  run-parts 
--report /etc/cron.weekly )

Weekly, crontab runs this tasks:

pwd
/etc/cron.weekly

ls
apt-xapian-index  man-db

cat apt-xapian-index
 
#!/bin/sh

CMD=/usr/sbin/update-apt-xapian-index

# ionice should not be called in a virtual environment
# (similar to man-db cronjobs)
egrep -q '(envID|VxID):.*[1-9]' /proc/self/status || IONICE=/usr/bin/ionice

# Check if we're on battery
if which on_ac_power /dev/null 21; then
on_ac_power /dev/null 21
ON_BATTERY=$?

# Here we use -eq 1 instead of -ne 0 because
# on_ac_power could also return 255, which means
# it can't tell whether we are on AC or not. In
# that case, run update-a-x-i nevertheless.
[ $ON_BATTERY -eq 1 ]  exit 0
fi

# Rebuild the index
if [ -x $CMD ]
then
if [ -x $IONICE ]
then
nice -n 19 $IONICE -c 3 $CMD --quiet
else
nice -n 19 $CMD --quiet
fi
fi

cat man-db 
#!/bin/sh
#
# man-db cron weekly

set -e

iosched_idle=
# Don't try to change I/O priority in a vserver or OpenVZ.
if ! egrep -q '(envID|VxID):.*[1-9]' /proc/self/status  \
   ([ ! -d /proc/vz ] || [ -d /proc/bc ]); then
dpkg_version=$(dpkg-query -W -f '${Version}' dpkg 2/dev/null)
if dpkg --compare-versions $dpkg_version ge 1.15.0; then
iosched_idle='--iosched idle'
fi
fi

if ! [ -d /var/cache/man ]; then
# Recover from deletion, per FHS.
mkdir -p /var/cache/man
chown man:root /var/cache/man || true
chmod 2755 /var/cache/man
fi

# regenerate man database
if [ -x /usr/bin/mandb ]; then
# --pidfile /dev/null so it always starts; mandb isn't really a daemon,
# but we want to start it like one.
start-stop-daemon --start --pidfile /dev/null \
  --startas /usr/bin/mandb --oknodo --chuid man \
  $iosched_idle \
  -- --quiet
fi

exit 0

Then, i will deactivate this two crontab tasks (apt-xapian-index and
man-db) and monitor the next Sunday if the apache crash happens again :)

Anyway, i have configured a watchdog that checks every 3 minutes if the
apache2 process is running, ans if not, it starts it.


Regards,





** Attachment added: Apache2 crash core
   
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1159748/+attachment/3614062/+files/core

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

Title:
  Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1159748/+subscriptions

-- 
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 1159748] Re: Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

2013-04-02 Thread Juan Pablo Marco Cardona
Hello again,
last sunday the apache2 process died again:
[1710511.756125] /usr/sbin/apach[4244]: segfault at 6c ip 7f2e061b7e84 sp 
7fffbdc40060 error 4 in libpthread-2.15.so[7f2e061ae000+18000]

I attach the apache2 (CoreDumpDirectory in the apache configuration file
) core generate in this crash.

Thinking about this crash, as it happens regularly almost every sunday around 
06:45 AM, maybe the crash is generated by the tasks crond runs weekly:
grep weekly /etc/crontab 
47 6* * 7   roottest -x /usr/sbin/anacron || ( cd /  run-parts 
--report /etc/cron.weekly )

Weekly, crontab runs this tasks:

pwd
/etc/cron.weekly

ls
apt-xapian-index  man-db

cat apt-xapian-index
 
#!/bin/sh

CMD=/usr/sbin/update-apt-xapian-index

# ionice should not be called in a virtual environment
# (similar to man-db cronjobs)
egrep -q '(envID|VxID):.*[1-9]' /proc/self/status || IONICE=/usr/bin/ionice

# Check if we're on battery
if which on_ac_power /dev/null 21; then
on_ac_power /dev/null 21
ON_BATTERY=$?

# Here we use -eq 1 instead of -ne 0 because
# on_ac_power could also return 255, which means
# it can't tell whether we are on AC or not. In
# that case, run update-a-x-i nevertheless.
[ $ON_BATTERY -eq 1 ]  exit 0
fi

# Rebuild the index
if [ -x $CMD ]
then
if [ -x $IONICE ]
then
nice -n 19 $IONICE -c 3 $CMD --quiet
else
nice -n 19 $CMD --quiet
fi
fi

cat man-db 
#!/bin/sh
#
# man-db cron weekly

set -e

iosched_idle=
# Don't try to change I/O priority in a vserver or OpenVZ.
if ! egrep -q '(envID|VxID):.*[1-9]' /proc/self/status  \
   ([ ! -d /proc/vz ] || [ -d /proc/bc ]); then
dpkg_version=$(dpkg-query -W -f '${Version}' dpkg 2/dev/null)
if dpkg --compare-versions $dpkg_version ge 1.15.0; then
iosched_idle='--iosched idle'
fi
fi

if ! [ -d /var/cache/man ]; then
# Recover from deletion, per FHS.
mkdir -p /var/cache/man
chown man:root /var/cache/man || true
chmod 2755 /var/cache/man
fi

# regenerate man database
if [ -x /usr/bin/mandb ]; then
# --pidfile /dev/null so it always starts; mandb isn't really a daemon,
# but we want to start it like one.
start-stop-daemon --start --pidfile /dev/null \
  --startas /usr/bin/mandb --oknodo --chuid man \
  $iosched_idle \
  -- --quiet
fi

exit 0

Then, i will deactivate this two crontab tasks (apt-xapian-index and
man-db) and monitor the next Sunday if the apache crash happens again :)

Anyway, i have configured a watchdog that checks every 3 minutes if the
apache2 process is running, if not, it starts it.


Regards,





** Attachment added: Apache2 crash core
   
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1159748/+attachment/3614094/+files/core

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

Title:
  Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1159748/+subscriptions

-- 
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 952185] Re: ~/.pam_environment not parsed by default

2013-04-02 Thread Gunnar Hjalmarsson
On 2013-04-02 11:35, Sebastien Bacher wrote:
 there is a new bug reported against the precise version that states that
 $PATH stopped including /usr/games after the update: bug #1162836

I could not reproduce that issue. Consequently, right now it seems like
that $PATH problem is related to both the fix of this bug and something
else. So we need to figure out if the fix of this bug needs to be
modified, or if it is something else that needs to be fixed.

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

Title:
  ~/.pam_environment not parsed by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/lightdm/+bug/952185/+subscriptions

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


[Blueprint servercloud-r-juju-appserver-support] Juju support for application server technologies (Django, JEE, RoR, etc)

2013-04-02 Thread Juan L. Negron
Blueprint changed by Juan L. Negron:

Work items changed:
  Work items:
  [jorge] Add App-By-Config and App-By-Subordinate to charm quality: TODO
  [clint-fewbar] Highlight examples of both approaches: TODO
  [brunogirin] evaluate/improve django (working with existing maintainer): 
INPROGRESS
  [brunogirin] Document deploying django tutorial with juju: TODO
  [jorge] sync up with dev to evaluate/improve node.js (working with existing 
maintainer): INPROGRESS
  [jorge] evaluate/improve rails (working with existing maintainer): DONE
  [brunogirin] Develop principles for normalizing interfaces in like services: 
TODO
  [marcoceppi] Contact and work with PHP app devs (Zend and Symfony): TODO
  [brunogirin] JBOSS charm: TODO
  [marcoceppi] Mediawiki: INPROGRESS
  [brunogirin] Django: INPROGRESS
  [a.rosales] MongoDB challenge: DONE
- [negronjl] MongoDB: INPROGRESS
+ [negronjl] MongoDB: DONE
  [jorge] Postgresql: INPROGRESS
  [robert-ayres] MySQL: INPROGRESS
  [jorge] Node.js: INPROGRESS
  [a.rosales] Node.js: INPROGRESS
  [mark-mims] Rails: INPROGRESS
  [jorge] Memcached: POSTPONED
  [negronjl] Redis: POSTPONED
  [jorge] Varnish: POSTPONED
  [jorge] Cassandra (Talk to evan): DONE
  [mark-mims] Rabbit and Sensu: POSTPONED
  [jorge] Logstash: DONE
  [jorge] University charming: POSTPONED

-- 
Juju support for application server technologies (Django, JEE, RoR, etc)
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-juju-appserver-support

-- 
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 1115053] Re: Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

2013-04-02 Thread Christian Kuersteiner
Jamie,

There seems to be a problem with the updated package.

See https://plus.google.com/112659624466139657672/posts/cMaEhQbcdGL

I guess the precise package cause the problem. Was there anything added
regarding startup?

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

Title:
  Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+subscriptions

-- 
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 1115053] Re: Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

2013-04-02 Thread Jamie Strandboge
There was nothing added to the package regarding startup. The user
reports after using update-rc.d to manage when tomcat7 would start, when
upgrading, they are added back. Note that the update-rc.d manpage
states: Please  note  that  this  program  was  designed  for  use  in
package maintainer   scripts  and,  accordingly,  has  only  the  very
limited functionality required by such scripts.  System administrators
are  not encouraged  to  use  update-rc.d to manage runlevels. This is
arguably a problem in the tomcat7 packaging, not a problem with this
security update. Looking at /var/lib/dpkg/info/tomcat7.postinst,
dh_installinit will unconditionally add the files back. Often, server
software is packaged such that the initscript will honor
/etc/default/ /etc/default/tomcat7 does exist, but there is no
setting in there to short circuit startup.

As I understand the current tomcat7 packaging after looking at it for a
few minutes, rather than using update-rc.d, the user should either edit
settings in /etc/tomcat7 or add an 'exit 0' to /etc/init.d/tomcat7 if
tomcat7 should be installed but not started.

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

Title:
  Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+subscriptions

-- 
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 1115053] Re: Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

2013-04-02 Thread Jamie Strandboge
One could also adjust the scripts to stop. Again, from the man page:
   A common system administration error is to delete the  links  with  the
   thought  that  this  will  disable  the service, i.e., that this will
   prevent the service from being started.  However,  if  all  links  have
   been  deleted then the next time the package is upgraded, the package’s
   postinst script will run update-rc.d  again  and  this  will  reinstall
   links  at  their factory default locations.  The correct way to disable
   services is to configure the service as stopped  in  all  runlevels  in
   which it is started by default.  In the System V init system this means
   renaming the service’s symbolic links from S to K.

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

Title:
  Multiple open vulnerabilities in tomcat7 in 12.04 and 11.10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1115053/+subscriptions

-- 
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 941913] Re: [MIR] python-babel

2013-04-02 Thread Matthias Klose
Override component to main
python-babel 0.9.6-1build1 in raring: universe/python - main
python-babel 0.9.6-1build1 in raring amd64: universe/python/optional - main
python-babel 0.9.6-1build1 in raring armhf: universe/python/optional - main
python-babel 0.9.6-1build1 in raring i386: universe/python/optional - main
python-babel 0.9.6-1build1 in raring powerpc: universe/python/optional - main
python-pybabel 0.9.6-1build1 in raring amd64: universe/python/extra - main
python-pybabel 0.9.6-1build1 in raring armhf: universe/python/extra - main
python-pybabel 0.9.6-1build1 in raring i386: universe/python/extra - main
python-pybabel 0.9.6-1build1 in raring powerpc: universe/python/extra - main
9 publications overridden.


** Changed in: python-babel (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  [MIR] python-babel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-babel/+bug/941913/+subscriptions

-- 
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 1061678] Re: OpenStack provider should fall back to local-ipv4 if public-ipv4 is not found

2013-04-02 Thread Launchpad Bug Tracker
** Branch linked: lp:~gz/juju/0.5_metadata_not_found_backport

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

Title:
  OpenStack provider should fall back to local-ipv4 if public-ipv4 is
  not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1061678/+subscriptions

-- 
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 1066845] Re: nova-novncproxy is not running; Suggest: novnc should be Depends

2013-04-02 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/raring-proposed/nova

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

Title:
  nova-novncproxy is not running; Suggest: novnc should be Depends

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1066845/+subscriptions

-- 
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 1161704] [NEW] ImportError: No module named middleware.auth_token

2013-04-02 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

I followed the document OpenStack Install and Deploy Manual to install 
Keystone and Swift.
When I tried to start Swift proxy service with command swift-init proxy start,
the error ImportError: No module named middleware.auth_token showed up.

After trapping in this issue a few days with several times do-over, I found out 
where the problem is.
It seems like the folder middleware in 
/usr/lib/python2.7/dist-packages/keystoneclient/ is missing,
when use apt-get install python-keystoneclient to install the keystoneclient 
in Ubuntu.

I found the middleware folder in /usr/lib/python2.7/dist-packages/keystone/.
After copy the the middleware folder from  
/usr/lib/python2.7/dist-packages/keystone/ to 
/usr/lib/python2.7/dist-packages/keystoneclient/, the Swift proxy service 
works find now.

** Affects: python-keystoneclient (Ubuntu)
 Importance: Undecided
 Status: Invalid

-- 
ImportError: No module named middleware.auth_token
https://bugs.launchpad.net/bugs/1161704
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to python-keystoneclient 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 1061678] Re: OpenStack provider should fall back to local-ipv4 if public-ipv4 is not found

2013-04-02 Thread Martin Packman
** Changed in: juju/0.5
   Status: Triaged = Fix Committed

** Changed in: juju/0.5
 Assignee: (unassigned) = Martin Packman (gz)

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

Title:
  OpenStack provider should fall back to local-ipv4 if public-ipv4 is
  not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1061678/+subscriptions

-- 
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 1066845] Re: nova-novncproxy is not running; Suggest: novnc should be Depends

2013-04-02 Thread Launchpad Bug Tracker
This bug was fixed in the package nova - 1:2013.1~rc2-0ubuntu1

---
nova (1:2013.1~rc2-0ubuntu1) raring; urgency=low

  [ James Page ]
  * d/control: Promote novnc and websockify to Depends for
nova-novncproxy (LP: #1066845).

  [ Chuck Short ]
  *  New upstream release.
 -- Chuck Short zul...@ubuntu.com   Tue, 02 Apr 2013 08:44:39 -0500

** Changed in: nova (Ubuntu Raring)
   Status: Fix Committed = Fix Released

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

Title:
  nova-novncproxy is not running; Suggest: novnc should be Depends

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1066845/+subscriptions

-- 
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 1161704] Re: ImportError: No module named middleware.auth_token

2013-04-02 Thread Dolph Mathews
Agree; I assume python-keystoneclient will be revised as part of the
grizzly series of package updates, but moving this bug just to be sure.

** Project changed: keystone = python-keystoneclient (Ubuntu)

** Changed in: python-keystoneclient (Ubuntu)
   Status: Invalid = New

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

Title:
  ImportError: No module named middleware.auth_token

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-keystoneclient/+bug/1161704/+subscriptions

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


[Blueprint servercloud-r-mysql] MySQL Roundtable

2013-04-02 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Work items changed:
  Work items:
  [clint-fewbar] Package percona cluster server for Debian and Ubuntu: TODO
  [clint-fewbar] Resolve delta between ubuntu and debian: TODO
  [nryeng] Investigate packaging mysql cluster for Debian/Ubuntu: TODO
- [clint-fewbar] Talk with nryeng about juju charm improvements: TODO
+ [a.rosales] Talk with nryeng about juju charm improvements: TODO

-- 
MySQL Roundtable
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-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


[Blueprint servercloud-r-apt-improvements] Apt Improvements

2013-04-02 Thread Robie Basak
Blueprint changed by Robie Basak:

Work items changed:
  Work items:
- [racb] debootstrap production code: TODO
- [racb] apt production code: TODO
- [utlemming] merge s3aptmirror production code: TODO
- apt-ftparchive by-hash generator command: TODO
- apt-ftparchive modifications to automatically generate by-hash: TODO
- ubumirror patch: TODO
- debmirror patch: TODO
- Fix squid-deb-proxy cache settings as appropriate: TODO
- [smoser] Pin RR DNS in squid-deb-proxy: TODO
- Testing: TODO
+ [racb] debootstrap production code: POSTPONED
+ [racb] apt production code: POSTPONED
+ [utlemming] merge s3aptmirror production code: POSTPONED
+ apt-ftparchive by-hash generator command: POSTPONED
+ apt-ftparchive modifications to automatically generate by-hash: POSTPONED
+ ubumirror patch: POSTPONED
+ debmirror patch: POSTPONED
+ Fix squid-deb-proxy cache settings as appropriate: POSTPONED
+ [smoser] Pin RR DNS in squid-deb-proxy: POSTPONED
+ Testing: POSTPONED
  Implement InRelease in archive.ubuntu.com mirrors: POSTPONED
  Add by-hash generation to archive.ubuntu.com: POSTPONED
  Add by-hash generation to Launchpad PPAs: POSTPONED
  [racb] apt proof of concept: DONE
  [racb] debootstrap proof of concept: DONE
  [racb] s3aptmirror patch: DONE
  [racb] Live S3 mirror: DONE

-- 
Apt Improvements
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-r-apt-improvements

-- 
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 1088136] Update Released

2013-04-02 Thread Brian Murray
The verification of this Stable Release Update has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regresssions.

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

Title:
  AUTH cannot handle a request with an initial-response over 2048 bytes
  (GSSAPI-related)

To manage notifications about this bug go to:
https://bugs.launchpad.net/exim/+bug/1088136/+subscriptions

-- 
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 1088136] Re: AUTH cannot handle a request with an initial-response over 2048 bytes (GSSAPI-related)

2013-04-02 Thread Launchpad Bug Tracker
This bug was fixed in the package exim4 - 4.76-3ubuntu3.2

---
exim4 (4.76-3ubuntu3.2) precise-proposed; urgency=low

  * Increase smtp_cmd_buffer_size to 16384 (upstream bug #879, fixed in 4.77).
This allows using smtp kerberos/gssapi auth against AD/samba4 on windows.
(LP: #1088136)
 -- Sergey Urushkin urusha.v...@gmail.com   Wed, 12 Dec 2012 16:05:42 -0800

** Changed in: exim4 (Ubuntu Precise)
   Status: Fix Committed = Fix Released

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

Title:
  AUTH cannot handle a request with an initial-response over 2048 bytes
  (GSSAPI-related)

To manage notifications about this bug go to:
https://bugs.launchpad.net/exim/+bug/1088136/+subscriptions

-- 
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 1163536] Re: Cloud-init does not run from init, but runs when started manually

2013-04-02 Thread Ricardo Duarte
Log file at /var/log/cloud-init.log is empty.
I'm using the latest ubuntu cloudimg images.

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

Title:
  Cloud-init does not run from init, but runs when started manually

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1163536/+subscriptions

-- 
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 1163536] [NEW] Cloud-init does not run from init, but runs when started manually

2013-04-02 Thread Ricardo Duarte
Public bug reported:

This happens on cloud-init form 12.10 and 13.04. Cloud-init on 12.04 works 
perfectly.
Cloud-init gets called by init, but does not run.
If I try to manually start cloud-init with the upstart scripts, the following 
shows:

# start cloud-init
start: Job failed to start

If I run /usr/bin/cloud-init init , everything works

If I the folliwing wrapper, everything works as well:

/usr/bin/cloud-init:

#!/bin/bash
/usr/bin/cloud-init.real $1 $2 $3 $4

** Affects: cloud-init (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Cloud-init does not run from init, but runs when started manually

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1163536/+subscriptions

-- 
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 1163536] Re: Cloud-init does not run from init, but runs when started manually

2013-04-02 Thread Ricardo Duarte
More information:

Cloud-init works from upstart (and on boot)  when I redirect the stderr
output.

The wrapper script becomes:

/usr/bin/cloud-init:

#!/bin/bash
/usr/bin/cloud-init.real $1 $2 $3 $4  /dev/null 21

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

Title:
  Cloud-init does not run from init, but runs when started manually

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1163536/+subscriptions

-- 
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 1100843] Re: Live Migration Causes Performance Issues

2013-04-02 Thread Serge Hallyn
So far I've run the equivalentn of test 1 in comment #14, and also didn't find 
any
performance degradation.  I left the host crunching a few other VMs for several
hours, but performance on a kernel compilation stayed the same.

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

Title:
  Live Migration Causes Performance Issues

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1100843/+subscriptions

-- 
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 1163573] [NEW] Ubuntu 12.10 overheats my laptop until it shutdowns without notice

2013-04-02 Thread xlash911
Public bug reported:

I installed Ubuntu 12.10 on my work computer, a HP ProBook 6450b. When I
use many applications, and a virtual machine, it uses a lot of CPU.

Under such circumstances, my CPU starts overheating (that's my guess),
and it can lead to an abrupt shutdown of my PC, without any notice.

With lm-sensors, I notice my CPU temperature gets as high as 105 °C,
which is the critical limit. However, I can't see my CPU Fan speed,
although I can hear it run at high seed.

$ sensors
acpitz-virtual-0
Adapter: Virtual device
temp1:+48.0°C  (crit = +127.0°C)
temp2: +0.0°C  (crit = +128.0°C)
temp3: +0.0°C  (crit = +128.0°C)
temp4:+50.0°C  (crit = +127.0°C)
temp5: +0.0°C  (crit = +128.0°C)
temp6:+30.3°C  (crit = +128.0°C)
temp7: +0.0°C  (crit = +128.0°C)
temp8:+69.0°C  (crit = +128.0°C)
temp9:+73.0°C  (crit = +128.0°C)
temp10:   +59.0°C  (crit = +128.0°C)

coretemp-isa-
Adapter: ISA adapter
Core 0:   +72.0°C  (high = +95.0°C, crit = +105.0°C)
Core 2:   +72.0°C  (high = +95.0°C, crit = +105.0°C)

I've captured my latest syslogs around last crash :

Apr  2 15:26:29 HP-ProBook-6450b kernel: [18766.765333] CPU1: Core temperature 
above threshold, cpu clock throttled (total events = 22)
Apr  2 15:26:29 HP-ProBook-6450b kernel: [18766.765335] CPU0: Core temperature 
above threshold, cpu clock throttled (total events = 22)
Apr  2 15:26:29 HP-ProBook-6450b kernel: [18766.766364] CPU0: Core 
temperature/speed normal
Apr  2 15:26:29 HP-ProBook-6450b kernel: [18766.766365] CPU1: Core 
temperature/speed normal
Apr  2 15:26:50 HP-ProBook-6450b avahi-daemon[958]: Invalid response packet 
from host 172.21.54.19.
Apr  2 15:26:55 HP-ProBook-6450b avahi-daemon[958]: Invalid response packet 
from host fe80::84ac:8480:9bea:773d.
Apr  2 15:28:37 HP-ProBook-6450b kernel: imklog 5.8.6, log source = /proc/kmsg 
started.
Apr  2 15:28:37 HP-ProBook-6450b rsyslogd: [origin software=rsyslogd 
swVersion=5.8.6 x-pid=938 x-info=http://www.rsyslog.com;] start
Apr  2 15:28:37 HP-ProBook-6450b rsyslogd: rsyslogd's groupid changed to 103
Apr  2 15:28:37 HP-ProBook-6450b rsyslogd: rsyslogd's userid changed to 101
Apr  2 15:28:37 HP-ProBook-6450b rsyslogd-2039: Could not open output pipe 
'/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Apr  2 15:28:37 HP-ProBook-6450b kernel: [0.00] Initializing cgroup 
subsys cpuset

CPU speed changes between 1.2 GHZ and 2.4 GHz depending on load.

I'm also using the following GPU driver :

$ lshw -c video
WARNING: you should run this program as super-user.
  *-display   
   description: VGA compatible controller
   product: Core Processor Integrated Graphics Controller
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@:00:02.0
   version: 02
   width: 64 bits
   clock: 33MHz
   capabilities: vga_controller bus_master cap_list rom
   configuration: driver=i915 latency=0
   resources: irq:45 memory:d000-d03f memory:c000-cfff 
ioport:4050(size=8)

** Affects: lm-sensors (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: cpu overheat shutdown

** Attachment added: cat /proc/cpuinfo
   https://bugs.launchpad.net/bugs/1163573/+attachment/3616088/+files/cpuinfo

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

Title:
  Ubuntu 12.10 overheats my laptop until it shutdowns without notice

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1163573/+subscriptions

-- 
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 782322] Re: plugin iostat_ios loses track of its state

2013-04-02 Thread Илья
** Changed in: munin (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  plugin iostat_ios loses track of its state

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/782322/+subscriptions

-- 
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 1163147] Re: can't resolve lan hosts (regression)

2013-04-02 Thread Seth Arnold
*** This bug is a duplicate of bug 1126488 ***
https://bugs.launchpad.net/bugs/1126488

Robie, this very well might be an abuse of dnsmasq; however, the
upstream author discusses a libvirt-managed dnsmasq instance as a
perfectly well supported configuration in
https://bugzilla.redhat.com/show_bug.cgi?id=833033#c11 .

Thomas, I don't think this is a duplicate of bug #1126488 since I made
the conscious decision to _not_ upgrade to Raring until after that bug
had been fixed in the main archive. :) I didn't want to deal with
dnsmasq problems...

I had used the resolvconf mechanism in the past, but switched to using
prepend nameservers in dhclient.conf to match the instructions on the
uvt wikipage while trying to debug this. (I had used both mechanisms
without problems on 12.04 LTS and 12.10.)

I do not have the dnsmasq package installed.

uvt is available in the ubuntu-qa-tools bazaar tree:
http://bazaar.launchpad.net/~ubuntu-bugcontrol/ubuntu-qa-
tools/master/view/head:/vm-tools/uvt  It may not have the polish of the
usual GUI tools but it does make deploying and maintaining a dozen
qemu/kvm snapshot-capable Ubuntu installs extremely easy and convenient.

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

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

Title:
  can't resolve lan hosts (regression)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1163147/+subscriptions

-- 
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 1158563] Re: After grizzly upgrade, EC2 API requests fail:Could not find: credential

2013-04-02 Thread Michael Still
** Tags added: ec2

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

Title:
  After grizzly upgrade, EC2 API requests fail:Could not find:
  credential

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/1158563/+subscriptions

-- 
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 1163669] [NEW] cloud-init fails to install juju agent after bootstrap

2013-04-02 Thread ZhengPeng Hou
Public bug reported:

output of cloud-init 
http://paste.ubuntu.com/5672490/

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: cloud-init 0.7.2~bzr804-0ubuntu1
ProcVersionSignature: User Name 3.8.0-12.21-generic 3.8.2
Uname: Linux 3.8.0-12-generic x86_64
ApportVersion: 2.9.2-0ubuntu5
Architecture: amd64
Date: Wed Apr  3 03:26:10 2013
Ec2AMI: ami-1e831d77
Ec2AMIManifest: (unknown)
Ec2AvailabilityZone: us-east-1c
Ec2InstanceType: m1.small
Ec2Kernel: aki-88aa75e1
Ec2Ramdisk: unavailable
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: cloud-init
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: cloud-init (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ec2-images raring third-party-packages

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

Title:
  cloud-init fails to install juju agent after bootstrap

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1163669/+subscriptions

-- 
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 1112242] Re: Causes a crash after you open more than two browsers

2013-04-02 Thread Launchpad Bug Tracker
[Expired for clamav (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Causes a crash after you open more than two browsers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/1112242/+subscriptions

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