[Bug 993291] Fwd:

2013-05-07 Thread Michael Kadmiel
http://www.funtofun.co.jp/rp79nr.php

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

Title:
  [SRU] package nis 3.17-32ubuntu1.2 failed to install/upgrade: invoke-
  rc.d: unknown initscript, /etc/init.d/nis not found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nis/+bug/993291/+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 965663] Re: ssh-copy-id doesn't call restorecon on SELinux enabled destination hosts

2013-05-07 Thread Colin Watson
Thanks for your report.  I fixed this a little while ago in Debian.

openssh (1:6.0p1-3) unstable; urgency=low

  * debconf template translations:
- Add Indonesian (thanks, Andika Triwidada; closes: #681670).
  * Call restorecon on copied ~/.ssh/authorized_keys if possible, since some
SELinux policies require this (closes: #658675).
  * Add ncurses-term to openssh-server's Recommends, since it's often needed
to support unusual terminal emulators on clients (closes: #675362).

 -- Colin Watson cjwat...@debian.org  Fri, 24 Aug 2012 06:55:36 +0100

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

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

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

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

Title:
  ssh-copy-id doesn't call restorecon on SELinux enabled destination
  hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/965663/+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 965663] Re: ssh-copy-id doesn't call restorecon on SELinux enabled destination hosts

2013-05-07 Thread Bug Watch Updater
** Changed in: openssh (Debian)
   Status: Unknown = Fix Released

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

Title:
  ssh-copy-id doesn't call restorecon on SELinux enabled destination
  hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/965663/+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 1177345] [NEW] upstream bug #61730 still not fixed?

2013-05-07 Thread karpa
Public bug reported:

upstream bug https://bugs.php.net/bug.php?id=61730
with following code:
?php
$myArray = array_fill(0, 1, md5('test'));

array_walk(
$myArray,
function($value, $key, $myArray)
{
  if (rand(0, 1)) {
unset($myArray[$key]);
  } else if (rand(0, 1)) {
$myArray[$key] = md5(rand(0, 1));
  }
},
$myArray
);

produces sigfault in 5.3.10-1ubuntu3.6

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

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

Title:
  upstream bug #61730 still not fixed?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1177345/+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 1048075] Re: Error updating RRD file (extra data on update argument)

2013-05-07 Thread H.-Dirk Schmitt
I backport the debian version to ppa:dirk-computer42/c42-backport for precise.
I installed this version and after removing the broken sensord.rrd file the 
issue has been gone.

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

Title:
  Error updating RRD file (extra data on update argument)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1048075/+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 1124553] Re: kvm crashes during snapshot creation

2013-05-07 Thread Dean Kamali
I'm having the same issue with Ubuntu 12.04.2 LTS, every time I try and
take snapshot I get the following error.

error: Unable to read from monitor: Connection reset by peer


Then the virtual mechine shuts down, and qemu log for that vm shows 

 *** glibc detected *** /usr/bin/kvm: free(): invalid pointer:
0x7f2368000a00 ***

is there is a fix?

Thank you



** Changed in: qemu-kvm (Ubuntu)
   Status: Expired = Confirmed

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

Title:
  kvm crashes during snapshot creation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1124553/+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 1177398] [NEW] init-script status method doesn't handle instances correctly

2013-05-07 Thread Bjunity
Public bug reported:


Line in /etc/init.d/memcached:


status_of_proc -p $PIDFILE $DAEMON $NAME   exit 0 || exit $?


If you have more than 1 Instance the script exit after the first instance 
found, so the other instances aren't checked.

The quick  dirty fix:


er_or=0


CONFIG_NUM=${#CONFIGS[@]}
.


.
.
.

status)


  status_of_proc -p $PIDFILE $DAEMON $NAME

   returnvalue=`echo $?`

  if [ $returnvalue -ne 0 ]
then
 er_or=`expr $er_or \+ 1`
  fi


   ;;
  *)
N=/etc/init.d/$NAME
echo Usage: $N {start|stop|restart|force-reload|status} 2
exit 1
;;
esac
done;


if [ $er_or -ne 0 ]
then
exit 2
else
exit 0
fi

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

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

Title:
  init-script status method doesn't handle instances correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/memcached/+bug/1177398/+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 1177400] [NEW] Corruption in arguments of create and start (python3-lxc)

2013-05-07 Thread Stéphane Graber
Public bug reported:

== Rationale ==
The last cherry-pick of python3 fixes from upstream contained a memory bug in 
the function converting python tuples to char**, this leads to completely wrong 
arguments being passed to the init process or the create script.
This problem has since been tracked down and fixed upstream, the solution here 
is to update our cherry-pick to match the current upstream state.

== Test case ==
 1) Run the following in a python3 shell:
 import lxc
 test = lxc.Container(test)
 test.create(ubuntu, {arch: i386, release: raring})
 2) While create() is running, check: ps aux | grep raring
 3) Confirm that the arguments to lxc-ubuntu match: --arch i386 --release raring

The bug was leading to those arguments to look like raring raring
--release raring

== Regression potential ==
The updated C code has been upstream for a month now and used daily by several 
people and reviewed by several more so I'm very confident we won't see any 
regression in the python API with this cherry-pick.

** Affects: lxc (Ubuntu)
 Importance: High
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

** Affects: lxc (Ubuntu Raring)
 Importance: High
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

** Also affects: lxc (Ubuntu Raring)
   Importance: Undecided
   Status: New

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

** Changed in: lxc (Ubuntu Raring)
   Status: New = Triaged

** Changed in: lxc (Ubuntu)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

** Changed in: lxc (Ubuntu Raring)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

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

** Changed in: lxc (Ubuntu Raring)
   Importance: Undecided = High

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

Title:
  Corruption in arguments of create and start (python3-lxc)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177400/+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 1177408] [NEW] lxc-list crashes when passed --nesting with a running nested container

2013-05-07 Thread Stéphane Graber
Public bug reported:

== Rationale ==
lxc-list is a compatibility wrapper for lxc-ls printing a deprecation warning 
before showing its output.
As lxc-ls calls itself to deal with nested containers, that deprecation warning 
is causing invalid json to be generated and causes a crash.
The solution is to update the distro patch to only show the warning when lxc-ls 
isn't calling itself.

== Test case ==
1) Create a first container
2) Create a sub-container (switch to the nesting apparmor profile, install lxc 
in the container, create a sub-container)
3) Run: lxc-list --nesting on the host
4) lxc-list shouldn't crash anymore

== Regression potential ==
The only difference is the addition of a condition for the deprecation warning, 
so I'm not seeing any room for regression there.

** Affects: lxc (Ubuntu)
 Importance: Medium
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

** Affects: lxc (Ubuntu Raring)
 Importance: Medium
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

** Also affects: lxc (Ubuntu Raring)
   Importance: Undecided
   Status: New

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

** Changed in: lxc (Ubuntu Raring)
   Status: New = Triaged

** Changed in: lxc (Ubuntu)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

** Changed in: lxc (Ubuntu Raring)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

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

** Changed in: lxc (Ubuntu Raring)
   Importance: Undecided = Medium

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

Title:
  lxc-list crashes when passed --nesting with a running nested container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177408/+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 1177412] [NEW] lxc-ls doesn't show nested containers when using an alternate lxc path

2013-05-07 Thread Stéphane Graber
Public bug reported:

== Rationale ==
lxc-ls -P /some/path --fancy --nesting fails to show nested containers and 
running container information.
This is caused by the lack of lxcpath awareness in the get_ips() API call and 
by the NESTED environment variable containing the host's lxcpath and not the 
container's default lxcpath.

== Test case ==
1) Create a container with a sub-container in it
2) Move the container to an alternate path, let's say /tmp/lxc
3) Start it with: lxc-start -P /tmp/lxc -n container -d
4) List the containers: lxc-ls --fancy --nesting -P /tmp/lxc

Expected output is the main container with the sub-container under it,
both of which with their status and IP addresses.

== Regression potential ==
This slightly changes the behaviour of lxc-ls in that in the past it'd 
successfully list sub-containers if they had the exact same custom lxcpath as 
the host, however this is very unusual and not something upstream feels should 
be supported at this time.
Instead it's expected that the container containing sub-containers in the 
default lxcpath will be much more common.

As the get_ips() call was preventing those containers to show up anyway,
it's unlikely anyone will notice the small change in behaviour.

** Affects: lxc (Ubuntu)
 Importance: Medium
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

** Affects: lxc (Ubuntu Raring)
 Importance: Medium
 Assignee: Stéphane Graber (stgraber)
 Status: Triaged

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

** Also affects: lxc (Ubuntu Raring)
   Importance: Undecided
   Status: New

** Changed in: lxc (Ubuntu Raring)
   Status: New = Triaged

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

** Changed in: lxc (Ubuntu Raring)
   Importance: Undecided = Medium

** Changed in: lxc (Ubuntu Raring)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

** Changed in: lxc (Ubuntu)
 Assignee: (unassigned) = Stéphane Graber (stgraber)

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

Title:
  lxc-ls doesn't show nested containers when using an alternate lxc path

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177412/+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 509647] Re: [MIR] lxc

2013-05-07 Thread Stéphane Graber
I just pushed the remaining python C extension fixes to saucy now and
will SRU to raring.

Seth, would it be possible for you to recheck the binding as it stands in saucy?
https://github.com/lxc/lxc/blob/staging/src/python-lxc/lxc.c is the current 
version of the file

I think this was the last issue that you noted, so once we get that one
re-checked, I'll start poking people to get LXC promoted in saucy.

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

Title:
  [MIR] lxc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/509647/+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 1177412] Re: lxc-ls doesn't show nested containers when using an alternate lxc path

2013-05-07 Thread Launchpad Bug Tracker
This bug was fixed in the package lxc - 0.9.0-0ubuntu4

---
lxc (0.9.0-0ubuntu4) saucy; urgency=low

  * Fix lxc-list crashing when passed --nesting with nested containers.
(LP: #1177408)
  * Fix lxc-ls to show nested containers when using alternate lxcpath.
(LP: #1177412)
  * Fix python3 API bug leading to parameter corruption in create and start.
(LP: #1177400)
 -- Stephane Graber stgra...@ubuntu.com   Tue, 07 May 2013 10:48:40 -0400

** Changed in: lxc (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  lxc-ls doesn't show nested containers when using an alternate lxc path

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177412/+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 1177408] Re: lxc-list crashes when passed --nesting with a running nested container

2013-05-07 Thread Launchpad Bug Tracker
This bug was fixed in the package lxc - 0.9.0-0ubuntu4

---
lxc (0.9.0-0ubuntu4) saucy; urgency=low

  * Fix lxc-list crashing when passed --nesting with nested containers.
(LP: #1177408)
  * Fix lxc-ls to show nested containers when using alternate lxcpath.
(LP: #1177412)
  * Fix python3 API bug leading to parameter corruption in create and start.
(LP: #1177400)
 -- Stephane Graber stgra...@ubuntu.com   Tue, 07 May 2013 10:48:40 -0400

** Changed in: lxc (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  lxc-list crashes when passed --nesting with a running nested container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177408/+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 1177400] Re: Corruption in arguments of create and start (python3-lxc)

2013-05-07 Thread Launchpad Bug Tracker
This bug was fixed in the package lxc - 0.9.0-0ubuntu4

---
lxc (0.9.0-0ubuntu4) saucy; urgency=low

  * Fix lxc-list crashing when passed --nesting with nested containers.
(LP: #1177408)
  * Fix lxc-ls to show nested containers when using alternate lxcpath.
(LP: #1177412)
  * Fix python3 API bug leading to parameter corruption in create and start.
(LP: #1177400)
 -- Stephane Graber stgra...@ubuntu.com   Tue, 07 May 2013 10:48:40 -0400

** Changed in: lxc (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  Corruption in arguments of create and start (python3-lxc)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177400/+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-s-cloud-kvm-on-arm] KVM on arm

2013-05-07 Thread Dave Walker
Blueprint changed by Dave Walker:

Assignee: Serge Hallyn = Ubuntu Server Team

-- 
KVM on arm
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-cloud-kvm-on-arm

-- 
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 1100920] Re: In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled properly

2013-05-07 Thread Clint Byrum
I can confirm that Ubuntu 13.04 images work fine with Heat now.

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

Title:
  In Ubuntu 12.10, the legacy 'user' cloud-config option is not handled
  properly

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1100920/+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-s-juju-docs] Improve Juju Documentation

2013-05-07 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Work items changed:
  Work items for ubuntu-13.04-month-6:
  [evilnick] Define structural elements of HTML5 doc: DONE
  [evilnick] Create sample getting Started Guide: DONE
  [evilnick] Create list of screencasts: TODO
- [jorge] Develop screen casts based on defined list: TODO
+ [jorge] Develop Webinar/Screen cast education series mapped to Docs. (ie 12 
sessions from getting started to Debugging): TODO

-- 
Improve Juju Documentation
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-docs

-- 
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-s-juju-docs] Improve Juju Documentation

2013-05-07 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Work items changed:
- Work items for ubuntu-13.04-month-6:
+ Work items:
  [evilnick] Define structural elements of HTML5 doc: DONE
  [evilnick] Create sample getting Started Guide: DONE
  [evilnick] Create list of screencasts: TODO
  [jorge] Develop Webinar/Screen cast education series mapped to Docs. (ie 12 
sessions from getting started to Debugging): TODO

-- 
Improve Juju Documentation
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-docs

-- 
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 1177345] Re: upstream bug #61730 still not fixed?

2013-05-07 Thread Robie Basak
Thank you taking the time to report this bug and helping to make Ubuntu
better.

On Saucy, running 5.4.9-4ubuntu2, I get:

PHP Fatal error:  Call-time pass-by-reference has been removed in 
/home/ubuntu/test.php on line 15
Status: 500 Internal Server Error
X-Powered-By: PHP/5.4.9-4ubuntu2
Content-type: text/html

In the source, ext/standard/tests/array/bug61730.phpt exists, so I think
it's safe to assume that this bug has been fixed. Therefore I'm marking
this bug Fix Released.

However I have reproduced the problem in 5.3.10-1ubuntu3.6 which is the
latest precise-updates and -security.

If you need a fix for an existing stable release, please comment with a
justification against https://wiki.ubuntu.com/StableReleaseUpdates#When
and complete steps 1 through 4 in
https://wiki.ubuntu.com/StableReleaseUpdates#Procedure


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

** Summary changed:

- upstream bug #61730 still not fixed?
+ Segfault from array_walk modifying an array passed by reference

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

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

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

Title:
  Segfault from array_walk modifying an array passed by reference

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1177345/+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 1119792] Re: Munin does not generate the correct URL in munin-cgi-html

2013-05-07 Thread Sam Darwin
Munin is still broken, out of the box, on Ubuntu 12.10.That is still 
true today 2013-05-07 .  I am in the middle of troubleshooting, probably it 
will be a very simple easy answer, in the end.But can we please have 
packages with smart defaults for production level packages that just work?   
:-) Is this Fedora?

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

Title:
  Munin does not generate the correct URL in munin-cgi-html

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1119792/+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 1119792] Re: Munin does not generate the correct URL in munin-cgi-html

2013-05-07 Thread Stefan Bühler
Hi Sam
I could you send files, which I've copied from a debian squeeze server. This is 
working on Ubuntu 12.10 and the new ubuntu release.
Just say me which you wan't.

Stefan

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

Title:
  Munin does not generate the correct URL in munin-cgi-html

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1119792/+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 1119792] Re: Munin does not generate the correct URL in munin-cgi-html

2013-05-07 Thread Stefan Bühler
Hi Sam
https://dl.dropboxusercontent.com/u/78509419/munin-html

Greets

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

Title:
  Munin does not generate the correct URL in munin-cgi-html

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1119792/+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 1160372] Re: Login is not possible

2013-05-07 Thread Phil Mundy
I just lost hair over non responsive vsftpd on freshly updated 1304 server till 
I came here too.
I was having trouble with my ssh setup so I thought I'd do a quick install of 
ftp to transfer some keys .. LOL how wrong I was...

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

Title:
  Login is not possible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vsftpd/+bug/1160372/+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-s-juju-charm-testing] Juju Charm Testing

2013-05-07 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Work items set to:
Work items:
Integration Testing includes framework that charm authors can write tests 
against (embedded in the charm): TODO
Jenkins testing on new merge proposal, on success it is a candidate for review: 
TODO
Develop Juju test plugin (ie juju test): TODO
Modify charm tools to capture a stub integration test: TODO
Include charm-helper library for all charmers: TODO

-- 
Juju Charm Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-s-juju-charm-testing

-- 
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 1177576] [NEW] bug in boto causes cloud-init in 13.04 to fail when querying OpenStack havana api for userdata

2013-05-07 Thread Clint Byrum
Public bug reported:

Booting a 13.04 cloud image on OpenStack using Heat, I did not get ec2
keys installed for ec2-user, but I did for root. The log snippets below
are from /var/log/cloud-init.log. The relevant section with boto 2.3.0
from the distro is the backtrace from boto. I created a new image with
boto 2.9.2 installed via pip, and the problem went away.

 BEGIN boto 2.9.2 
2013-05-07 21:47:49,660 - url_helper.py[DEBUG]: Attempting to open 
'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 
'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': 
{'User-Agent': 'Cloud-Init/0.7.2'}, 'allow_redirects': True, 'method': 'GET', 
'timeout': 50.0} configuration
2013-05-07 21:47:54,576 - url_helper.py[DEBUG]: Read from 
http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 10b) after 1 
attempts
2013-05-07 21:47:54,577 - DataSourceEc2.py[DEBUG]: Using metadata source: 
'http://169.254.169.254'
2013-05-07 21:47:54,695 - DataSourceEc2.py[DEBUG]: Crawl of metadata service 
took 0 seconds
 END boto 2.9.2 

 BEGIN boto 2.3.0 
2013-05-07 20:01:07,612 - util.py[DEBUG]: Reading from 
/var/lib/cloud/seed/ec2/meta-data (quiet=False)
2013-05-07 20:01:07,613 - DataSourceEc2.py[DEBUG]: Removed the following from 
metadata urls: ['http://instance-data.:8773']
2013-05-07 20:01:07,613 - url_helper.py[DEBUG]: Attempting to open 
'http://169.254.169.254/2009-04-04/meta-data/instance-id' with {'url': 
'http://169.254.169.254/2009-04-04/meta-data/instance-id', 'headers': 
{'User-Agent': 'Cloud-Init/0.7.2'}, 'allow_redirects': True, 'method': 'GET', 
'timeout': 50.0} configuration
2013-05-07 20:01:13,236 - url_helper.py[DEBUG]: Read from 
http://169.254.169.254/2009-04-04/meta-data/instance-id (200, 10b) after 1 
attempts
2013-05-07 20:01:13,236 - DataSourceEc2.py[DEBUG]: Using metadata source: 
'http://169.254.169.254'
2013-05-07 20:01:13,296 - util.py[WARNING]: Failed reading from metadata 
address http://169.254.169.254
2013-05-07 20:01:13,297 - util.py[DEBUG]: Failed reading from metadata address 
http://169.254.169.254
Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/cloudinit/sources/DataSourceEc2.py, 
line 67, in get_data
self.metadata_address)
  File /usr/lib/python2.7/dist-packages/cloudinit/ec2_utils.py, line 63, in 
get_instance_metadata
return _unlazy_dict(metadata)
  File /usr/lib/python2.7/dist-packages/cloudinit/ec2_utils.py, line 43, in 
_unlazy_dict
for (_k, v) in mp.items():
  File /usr/local/lib/python2.7/dist-packages/boto/utils.py, line 278, in 
items
self._materialize()
  File /usr/local/lib/python2.7/dist-packages/boto/utils.py, line 237, in 
_materialize
self[key]
  File /usr/local/lib/python2.7/dist-packages/boto/utils.py, line 254, in 
__getitem__
if val[0] == '{':
IndexError: string index out of range
2013-05-07 20:01:13,298 - __init__.py[DEBUG]: Seeing if we can get any data 
from class 'cloudinit.sources.DataSourceNone.DataSourceNone'
 END boto 2.3.0 

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


** Tags: raring

** Attachment added: user-data.txt.i
   
https://bugs.launchpad.net/bugs/1177576/+attachment/3669235/+files/user-data.txt.i

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

Title:
  bug in boto causes cloud-init in 13.04 to fail when querying OpenStack
  havana api for userdata

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-boto/+bug/1177576/+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 1177583] [NEW] lxc-list crash after lxc-destory of a running container

2013-05-07 Thread Dimiter Naydenov
Public bug reported:

I created a container with lxc-create -t ubuntu -n test1; started it (lxc-start 
-n test1); installed plan9port and some x-related packages (xterm, xdm, 
xserver-xorg-core, xserver-xorg). Then, while it was still running, logged out 
and run lxc-destroy -n test1, which hung and I had to break it and then calling 
lxc-list also hung forever. Trying to remove the container from 
/var/lib/lxc/test1/ failed with:
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/pts’: Device or resource busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/ptmx’: Device or resource busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/lxc/console’: Device or 
resource busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/lxc/tty1’: Device or resource 
busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/lxc/tty4’: Device or resource 
busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/lxc/tty3’: Device or resource 
busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/dev/lxc/tty2’: Device or resource 
busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/proc’: Device or resource busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/sys’: Device or resource busy
rm: cannot remove ‘/var/lib/lxc/test1/rootfs/run’: Device or resource busy

Running ps -xa | grep lxc produced:
121   1509 1  0 09:01 ?00:00:00 dnsmasq -u lxc-dnsmasq 
--strict-order --bind-interfaces --pid-file=/var/run/lxc/dnsmasq.pid 
--conf-file= --listen-address 10.0.3.1 --dhcp-range 10.0.3.2,10.0.3.254 
--dhcp-lease-max=253 --dhcp-no-override --except-interface=lo 
--interface=lxcbr0 --dhcp-leasefile=/var/lib/misc/dnsmasq.lxcbr0.leases 
--dhcp-authoritative
root  5604 1  0 14:32 ?00:00:00 sudo lxc-start -n test1
root  5605  5604  0 14:32 ?00:00:00 lxc-start -n test1
root  8977  8771  0 15:12 pts/900:00:00 sudo lxc-destroy -n test1
root  8978  8977  0 15:12 pts/900:00:00 /bin/sh /usr/bin/lxc-destroy -n 
test1
root  8984  8978  0 15:12 pts/900:00:00 lxc-info -n test1 -P 
/var/lib/lxc --state-is STOPPED
dimitern  8995  8901  0 15:13 pts/10   00:00:00 grep --color=auto lxc

Finally, killing -9 the lxc-info with pid 8984 caused the hung lxc-
destroy to return and lxc-list afterwards did not hang anymore.

Attached the /var/crash/ file.

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

** Attachment added: _usr_bin_lxc-ls.0.crash
   
https://bugs.launchpad.net/bugs/1177583/+attachment/3669265/+files/_usr_bin_lxc-ls.0.crash

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

Title:
  lxc-list crash after lxc-destory of a running container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177583/+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 1177604] [NEW] lxc-ps does not handle cgroups right

2013-05-07 Thread Serge Hallyn
Public bug reported:

lxc-ps looks at /sys/fs/cgroup/cpuset/lxc/$container/tasks to get a list
of tasks in the container.  However, in the face of either failed
previous container startups, or multiple containers with theh same name
in differnet lxcpaths, the container's cgroup could be
/sys/fs/cgroup/cpuset/lxc/${container}-N/ (N being an ascending integer)

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

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

Title:
  lxc-ps does not handle cgroups right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+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 946022] Re: KVM Guest Hangs at Booting from hard disk

2013-05-07 Thread Carlos Zaccaro
I dist-upgraded from 12.04.1 to 12.04.2 and now doesn't work the 100% of
the tries.

** Attachment added: creation log
   
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/946022/+attachment/3669301/+files/log.txt

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

Title:
  KVM Guest Hangs at Booting from hard disk

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/946022/+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 1177604] Re: lxc-ps does not handle cgroups right

2013-05-07 Thread Serge Hallyn
** Changed in: lxc (Ubuntu)
 Assignee: (unassigned) = Serge Hallyn (serge-hallyn)

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

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

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

Title:
  lxc-ps does not handle cgroups right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+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 1177604] Re: lxc-ps does not handle cgroups right

2013-05-07 Thread Serge Hallyn
A proposed fix has been sent to the mailing list.  I'm not sure whether
we'll go with that patch, or re-write lxc-ps.

** Changed in: lxc (Ubuntu)
 Assignee: Serge Hallyn (serge-hallyn) = (unassigned)

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

Title:
  lxc-ps does not handle cgroups right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+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 1177604] Re: lxc-ps does not handle cgroups right

2013-05-07 Thread Serge Hallyn
** Patch added: proposed fix.
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+attachment/3669323/+files/0001-lxc-ps-handle-cgroup-collisions.patch

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

Title:
  lxc-ps does not handle cgroups right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+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 1177583] Re: lxc-list crash after lxc-destory of a running container

2013-05-07 Thread Serge Hallyn
Thanks for reporting this bug.

I can't reproduce anything with lxc-destroy.  lxc-destroy on a running
container gives me

ubuntu@server-6896fdb5-46e0-47f9-b547-0a841dbf4c75:~$ sudo lxc-destroy -n r1
lxc-destroy: 'r1' state:   RUNNING; aborted

lxc-info tries to talk to the container-specific monitor, so my
suspicion is something went wrong in lxc-start itself (not related to
lxc-destroy).  lxc-start is the one which runs the monitor, so lxc-info
would find the unix domain socket existing, try to connect, and hang
while waiting for a repsonse.

Still testing.

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

Title:
  lxc-list crash after lxc-destory of a running container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177583/+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 1177583] Re: lxc-list crash after lxc-destory of a running container

2013-05-07 Thread Serge Hallyn
Could you tell me where to find the plan9port package you isntalled in
the container?

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

Title:
  lxc-list crash after lxc-destory of a running container

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177583/+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 1074443] Re: Please upgrade ipmitool to 1.8.12 for 13.04

2013-05-07 Thread Bug Watch Updater
** Changed in: ipmitool (Debian)
   Status: New = Fix Released

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

Title:
  Please upgrade ipmitool to 1.8.12 for 13.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/dell-poweredge/+bug/1074443/+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 1048075] Re: Error updating RRD file (extra data on update argument)

2013-05-07 Thread jhansonxi
@H.-Dirk Schmitt:  I tried your sensord 1:3.3.3-1~precise1~ppa1 on a new
install but am still getting the error.

sensord: Error updating RRD file: /var/log/sensord.rrd:
/var/log/sensord.rrd: found extra data on update argument:
1.17:1.10:0.95:0.70:0.57:0.44:3.26:3.15:2332:0:2599:31.0:39.0:33.0:0.13

# sensors
f71889fg-isa-0a00
Adapter: ISA adapter
+3.3V:+3.25 V  
in1:  +1.17 V  (max =  +2.04 V)
in2:  +1.10 V  
in3:  +0.95 V  
in4:  +0.70 V  
in5:  +0.57 V  
in6:  +0.44 V  
3VSB: +3.26 V  
Vbat: +3.15 V  
fan1:2340 RPM
fan2:   0 RPM  ALARM
fan3:2599 RPM
temp1:+32.0°C  (high = +255.0°C, hyst = +249.0°C)
   (crit = +255.0°C, hyst = +249.0°C)  sensor = transistor
temp2:+39.0°C  (high = +255.0°C, hyst = +249.0°C)
   (crit = +64.0°C, hyst = +58.0°C)  sensor = thermistor
temp3:+33.0°C  (high = +255.0°C, hyst = +253.0°C)
   (crit = +255.0°C, hyst = +253.0°C)  sensor = transistor

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

Title:
  Error updating RRD file (extra data on update argument)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lm-sensors/+bug/1048075/+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 1177345] Re: Segfault from array_walk modifying an array passed by reference

2013-05-07 Thread karpa
** Description changed:

  upstream bug https://bugs.php.net/bug.php?id=61730
- with following code:
+ 
+ simple test case from upstream report:
+ 
  ?php
  $myArray = array_fill(0, 1, md5('test'));
  
  array_walk(
- $myArray,
- function($value, $key, $myArray)
- {
-   if (rand(0, 1)) {
- unset($myArray[$key]);
-   } else if (rand(0, 1)) {
- $myArray[$key] = md5(rand(0, 1));
-   }
- },
- $myArray
+ $myArray,
+ function($value, $key, $myArray)
+ {
+   if (rand(0, 1)) {
+ unset($myArray[$key]);
+   } else if (rand(0, 1)) {
+ $myArray[$key] = md5(rand(0, 1));
+   }
+ },
+ $myArray
  );
  
- produces sigfault in 5.3.10-1ubuntu3.6
+ php -v
+ PHP 5.3.10-1ubuntu3.6 with Suhosin-Patch (cli) (built: Mar 11 2013 14:31:48) 
+ Copyright (c) 1997-2012 The PHP Group
+ Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
+ 
+ x86_64
+ 
+ lsb_release -a
+ No LSB modules are available.
+ Distributor ID:   Ubuntu
+ Description:  Ubuntu 12.04.2 LTS
+ Release:  12.04
+ Codename: precise

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

Title:
  Segfault from array_walk modifying an array passed by reference

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1177345/+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 1177604] Re: lxc-ps does not handle cgroups right

2013-05-07 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

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

Title:
  lxc-ps does not handle cgroups right

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1177604/+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 518883] Re: ssh-copy-id does not work over non-standard port

2013-05-07 Thread Bug Watch Updater
** Changed in: openssh (Debian)
   Status: New = Fix Released

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

Title:
  ssh-copy-id does not work over non-standard port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/518883/+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 602539] Re: qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater

2013-05-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: qemu-kvm (Ubuntu Lucid)
   Status: New = Confirmed

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

Title:
  qemu-system-x86_64 segfaults if using -no-kvm with -m 4096 or greater

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/602539/+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