[Bug 1006738] Re: php5-fpm segfaults with error 4 in libc-2.15.so

2012-08-07 Thread Ondřej Surý
Better would be to pull 5.4.4-4 which already includes more complete fix
from upstream git.

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

Title:
  php5-fpm segfaults with error 4 in libc-2.15.so

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1006738/+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 948156] Re: Please merge PHP 5.4 from Debian

2012-08-07 Thread Ondřej Surý
PHP 5.4 changes API, so a PHP backport would need to also to backport
all it's rev-deps and this is quite a major task.

I don't think it's feasible to officially maintain such a huge backport
(the other thing is my PPA which includes PHP 5.4 backport including
some of it's reverse dependencies people has asked for.)

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

Title:
  Please merge PHP 5.4 from Debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/948156/+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 1031021] Re: nova x509-create-cert times out

2012-08-07 Thread Thierry Carrez
** Changed in: nova
   Status: Incomplete = Invalid

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

Title:
  nova x509-create-cert times out

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1031021/+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 235793] Re: Segmentation fault in ntpd when system has more than 1134 interface addresses

2012-08-07 Thread Bug Watch Updater
Launchpad has imported 13 comments from the remote bug at
https://support.ntp.org/bugs/show_bug.cgi?id=1071.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2008-09-19T01:40:42+00:00 Jw-ntp wrote:

Hi:

We're running into the same problem on a redhat system that was previously
reported against ubuntu.

I don't think I could write a better bug report, so I'll just include/reference
it here:

http://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg858457.html


$ uname -a
Linux x 2.6.24-17-generic #1 SMP Thu May 1 13:57:17 UTC 2008 x86_64 
GNU/Linux

$ lsb_release -rd
Description:Ubuntu 8.04
Release:8.04

$ apt-cache policy ntp
ntp:
  Installed: 1:4.2.4p4+dfsg-3ubuntu2
  Candidate: 1:4.2.4p4+dfsg-3ubuntu2
  Version table:
 *** 1:4.2.4p4+dfsg-3ubuntu2 0
500 http://gb.archive.ubuntu.com hardy/main Packages
100 /var/lib/dpkg/status

On a system which has any more than 1134 interface addresses (counting
both IPv4 and IPv6 address thus: 'ip addr ls | grep inet | wc -l') ntpd
fails with a segmentation fault.

I run a large network for a university (20,000 people), and we routinely
operate open-source routers with several thousand interface addresses
(every client machine lives in it's own /30 subnet).


Whilst examining the problem I used this script to add interface addresses:

$ cat breakit.sh
#!/bin/sh
set -e
dev=vlan252
sudo ifdown ${dev}# clears all old addr
naddr=`ip add ls | grep inet | wc -l` # number of addr already on system
echo Pre-existing addresses on system: ${naddr}
: ${nbreakit:=1217}   # number of addr required to break ntp
sudo ifup ${dev}
total=${naddr}
for I in `seq 1 5` ; do
  for J in `seq 0 255` ; do
sudo ip addr add 10.0.${I}.${J}/32 dev ${dev}
total=$((${total}+1))
if [ ${total} -ge ${nbreakit} ]; then break ; fi
  done
  if [ ${total} -ge ${nbreakit} ]; then break ; fi
done
echo Added extra addresses: $((${total}-${naddr}))
echo Total addresses on system now: $(ip add ls | grep inet | wc -l)
exit 0

$ grep -B1 -A2 vlan252 /etc/network/interfaces

#auto vlan252
iface vlan252 inet manual
  vlan-raw-device eth0

I could then add the desired number of interfaces by doing:
$ nbreakit=1135 ../breakit.sh

and then run ntpd [1][2] under gdb by doing:

sudo sh -c ulimit -n 8192 ; gdb --args /usr/sbin/ntpd -n -d -D3 -p
/var/run/ntpd.pid -u 115:126 -g

[1] You can't use '-d -D3' on the standard ubuntu package - debugging is 
disabled.
[2] It is necessary to raise the number of open files ulimit of 1024 in order 
to run ntpd with this many addresses.

In order to help me understand what was going wrong with the standard
package, I rebuilt it with debugging enabled and symbols not stripped:

$ mkdir work
$ cd work/
$ apt-get source ntp
Reading package lists... Done
Building dependency tree
Reading state information... Done
NOTICE: 'ntp' packaging is maintained in the 'Svn' version control system at:
svn://svn.debian.org/pkg-ntp/ntp/
Need to get 3120kB of source archives.
Get: 1 http://gb.archive.ubuntu.com hardy/main ntp 1:4.2.4p4+dfsg-3ubuntu2 
(dsc) [1034B]
Get: 2 http://gb.archive.ubuntu.com hardy/main ntp 1:4.2.4p4+dfsg-3ubuntu2 
(tar) [2835kB]
Get: 3 http://gb.archive.ubuntu.com hardy/main ntp 1:4.2.4p4+dfsg-3ubuntu2 
(diff) [284kB]
Fetched 3120kB in 0s (7433kB/s)
dpkg-source: extracting ntp in ntp-4.2.4p4+dfsg
dpkg-source: unpacking ntp_4.2.4p4+dfsg.orig.tar.gz
dpkg-source: applying ./ntp_4.2.4p4+dfsg-3ubuntu2.diff.gz
$ cd ntp-4.2.4p4+dfsg/
$ cp -p debian/rules{,.orig}
$ vi debian/rules
$ diff -u debian/rules{.orig,}
--- debian/rules.orig   2008-05-28 17:52:21.0 +0100
+++ debian/rules2008-05-28 17:53:21.0 +0100
@@ -21,7 +21,7 @@
./configure CFLAGS='$(CFLAGS)' \
--prefix=/usr \
--enable-all-clocks --enable-parse-clocks --enable-SHM \
-   --disable-debugging --sysconfdir=/var/lib/ntp \
+   --enable-debugging --sysconfdir=/var/lib/ntp \
--with-sntp=no \
--enable-linuxcaps \
--disable-dependency-tracking
@@ -104,7 +104,7 @@
dh_installlogcheck -a
dh_installchangelogs -a
dh_perl -a
-   dh_strip -a
+   #dh_strip -a
dh_compress -a
dh_fixperms -a
dh_installdeb -a
$ dpkg-buildpackage -us -uc
...
dpkg-buildpackage: binary and diff upload (original source NOT included)
$ sudo dpkg -i ../ntp_4.2.4p4+dfsg-3ubuntu2_amd64.deb

Once one has 1135 interface addresses on the system you get this
segmentation fault:

0x0040c9d2 in update_interfaces (port=value optimized out,
receiver=0, data=0x0) at ntp_io.c:769
769 ISC_LIST_UNLINK_TYPE(inter_list, interface, link, struct 

[Bug 1032724] Re: Cannot access IPMI card

2012-08-07 Thread Stefan Bader
I have not personally looked (because I have none and no access) on HP servers. 
But talking to other people gave the impression that HP not automatically 
allows IPMI access. Sounds like it would be some option one needs to buy.  So 
before asking for debug access, are we sure this should work (because it has 
worked before or because you know IPMI access has been been bought).
I try to ask some other people later (other timezone) whether this is something 
that can be found out in some way.

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

Title:
  Cannot access IPMI card

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1032724/+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 1033920] [NEW] Dashboard raises a ServiceCatalogException when attempting to download juju settings

2012-08-07 Thread Andrew Glen-Young
Public bug reported:

When attempting to download the juju settings file from the dashboard I
receive an exception¹ which displays an ugly, blank 500 error message.

It seems that the juju module is expecting an S3 endpoint in my service
catalog, not finding it and throwing an exception which is not properly
caught. This means that I need to reload the page to remove the blank
page and continue to use the dashboard.

What I expect:

I expect the exception to be thrown (as I do not have the required
endpoint) and an explanation that there was an error with the endpoint
and for the user to be able to use the dashboard without having to
reload the page.

Exception:

[1]:  After setting DEBUG=True I see the following
ServiceCatalogException from Django:

Environment:


Request Method: POST
Request URL: http://localhost:8000/settings/juju/

Django Version: 1.3.1
Python Version: 2.7.3
Installed Applications:
['openstack_dashboard',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'django_nose',
 'horizon',
 'horizon.dashboards.nova',
 'horizon.dashboards.syspanel',
 'horizon.dashboards.settings']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'openstack_dashboard.middleware.DashboardLogUnhandledExceptionsMiddleware',
 'horizon.middleware.HorizonMiddleware',
 'django.middleware.doc.XViewMiddleware',
 'django.middleware.locale.LocaleMiddleware')


Traceback:
File /usr/lib/python2.7/dist-packages/django/core/handlers/base.py in 
get_response
  111. response = callback(request, *callback_args, 
**callback_kwargs)
File /usr/lib/python2.7/dist-packages/horizon/decorators.py in dec
  40. return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/horizon/decorators.py in dec
  55. return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/horizon/decorators.py in dec
  40. return view_func(request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/django/views/generic/base.py in view
  47. return self.dispatch(request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/django/views/generic/base.py in dispatch
  68. return handler(request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/horizon/forms/views.py in post
  84. return self.get(self, request, *args, **kwargs)
File /usr/lib/python2.7/dist-packages/horizon/forms/views.py in get
  64. form, handled = self.maybe_handle()
File /usr/lib/python2.7/dist-packages/horizon/forms/views.py in maybe_handle
  59. self.form, self.handled = form.maybe_handle(self.request, 
**kwargs)
File /usr/lib/python2.7/dist-packages/horizon/forms/base.py in maybe_handle
  101. exceptions.handle(request)
File /usr/lib/python2.7/dist-packages/horizon/forms/base.py in maybe_handle
  99. return form, form.handle(request, form.cleaned_data)
File 
/usr/lib/python2.7/dist-packages/horizon/dashboards/settings/juju/forms.py in 
handle
  88.   redirect=request.build_absolute_uri())
File 
/usr/lib/python2.7/dist-packages/horizon/dashboards/settings/juju/forms.py in 
handle
  81.'s3_url': api.url_for(request, 's3'),
File /usr/lib/python2.7/dist-packages/horizon/api/base.py in url_for
  112. raise exceptions.ServiceCatalogException(service_type)

Exception Type: ServiceCatalogException at /settings/juju/
Exception Value: Invalid service catalog service: s3

System settings:

$ dpkg-query --show *dashboard*
openstack-dashboard 2012.1-0ubuntu8.1
openstack-dashboard-ubuntu-theme2012.1-0ubuntu8.1

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS

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


** Tags: canonistack

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

Title:
  Dashboard raises a ServiceCatalogException when attempting to download
  juju settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1033920/+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 1033934] [NEW] Attempting to change regions in the dashboard does not display correctly

2012-08-07 Thread Andrew Glen-Young
Public bug reported:

After logging in to the dashboard in one region I attempted to change
regions by selecting the other region in the top right corner. After
doing this, login credentials form elements appear on the bottom left-
hand side and does not look correct (I have attached screenshots to
illustrate what I see).

While I am not a UX expert, I do not believe that it is intended to
display this way. I have tested in both Firefox and Chromium and
experienced the same thing.

How to reproduce (see attached images):

 1. Login to the dashboard, selecting any one of the regions (image 01).
 2. Select a region from the dropdown in the top right corner and click on the 
region name (image 02).
 3. Notice the form elements appear in the bottom left corner (image 03).
 4. (And again) Scroll to the top of the page, select a region from the 
dropdown in the top right corner again and notice additional form elements 
appear (image 04).

What I expect (suggestion):

I expect the form elements to display correctly. Perhaps as a rendered
login dialog overlayed on the current page?

System(s) Information:

Client system:

$ dpkg-query --show 'firefox' 'chromium-browser'
chromium-browser18.0.1025.168~r134367-0ubuntu0.12.04.1
firefox 14.0.1+build1-0ubuntu0.12.04.1

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS

Server system:

$ dpkg-query --show *dashboard*
openstack-dashboard 2012.1-0ubuntu8.1
openstack-dashboard-ubuntu-theme2012.1-0ubuntu8.1

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS

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


** Tags: canonistack

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

Title:
  Attempting to change regions in the dashboard does not display
  correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1033934/+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 1033934] Re: Attempting to change regions in the dashboard does not display correctly

2012-08-07 Thread Andrew Glen-Young
** Attachment added: Tarball containing images illustrating the display 
problem.
   
https://bugs.launchpad.net/bugs/1033934/+attachment/3251203/+files/region-displays-incorrectly.tar.gz

** Description changed:

  After logging in to the dashboard in one region I attempted to change
  regions by selecting the other region in the top right corner. After
  doing this, login credentials form elements appear on the bottom left-
  hand side and does not look correct (I have attached screenshots to
  illustrate what I see).
  
  While I am not a UX expert, I do not believe that it is intended to
  display this way. I have tested in both Firefox and Chromium and
  experienced the same thing.
  
- 
  How to reproduce (see attached images):
  
-  1. Login to the dashboard, selecting any one of the regions (image 01).
-  2. Select a region from the dropdown in the top right corner and click on 
the region name (image 02).
-  3. Notice the form elements appear in the bottom left corner (image 03).
-  4. (And again) Scroll to the top of the page, select a region from the 
dropdown in the top right corner again and notice additional form elements 
appear (image 04).
- 
+ 1. Login to the dashboard, selecting any one of the regions (image 01).
+     2. Select a region from the dropdown in the top right corner and click on 
the region name (image 02).
+     3. Notice the form elements appear in the bottom left corner (image 03).
+     4. (And again) Scroll to the top of the page, select a region from the 
dropdown in the top right corner again and notice additional form elements 
appear (image 04).
  
  What I expect (suggestion):
  
  I expect the form elements to display correctly. Perhaps as a rendered
  login dialog overlayed on the current page?
  
- 
  System(s) Information:
  
  Client system:
  
- $ dpkg-query --show 'firefox' 'chromium-browser'
- chromium-browser18.0.1025.168~r134367-0ubuntu0.12.04.1
- firefox 14.0.1+build1-0ubuntu0.12.04.1
+ $ dpkg-query --show 'firefox' 'chromium-browser'
+ chromium-browser18.0.1025.168~r134367-0ubuntu0.12.04.1
+ firefox 14.0.1+build1-0ubuntu0.12.04.1
  
- $ cat /etc/lsb-release 
- DISTRIB_ID=Ubuntu
- DISTRIB_RELEASE=12.04
- DISTRIB_CODENAME=precise
- DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS
+ $ cat /etc/lsb-release
+ DISTRIB_ID=Ubuntu
+ DISTRIB_RELEASE=12.04
+ DISTRIB_CODENAME=precise
+ DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS
  
  Server system:
  
- $ dpkg-query --show *dashboard*
- openstack-dashboard 2012.1-0ubuntu8.1
- openstack-dashboard-ubuntu-theme2012.1-0ubuntu8.1
+ $ dpkg-query --show *dashboard*
+ openstack-dashboard 2012.1-0ubuntu8.1
+ openstack-dashboard-ubuntu-theme2012.1-0ubuntu8.1
  
- $ cat /etc/lsb-release 
- DISTRIB_ID=Ubuntu
- DISTRIB_RELEASE=12.04
- DISTRIB_CODENAME=precise
- DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS
+ $ cat /etc/lsb-release
+ DISTRIB_ID=Ubuntu
+ DISTRIB_RELEASE=12.04
+ DISTRIB_CODENAME=precise
+ DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS

** Description changed:

  After logging in to the dashboard in one region I attempted to change
  regions by selecting the other region in the top right corner. After
  doing this, login credentials form elements appear on the bottom left-
  hand side and does not look correct (I have attached screenshots to
  illustrate what I see).
  
  While I am not a UX expert, I do not believe that it is intended to
  display this way. I have tested in both Firefox and Chromium and
  experienced the same thing.
  
  How to reproduce (see attached images):
  
- 1. Login to the dashboard, selecting any one of the regions (image 01).
-     2. Select a region from the dropdown in the top right corner and click on 
the region name (image 02).
-     3. Notice the form elements appear in the bottom left corner (image 03).
-     4. (And again) Scroll to the top of the page, select a region from the 
dropdown in the top right corner again and notice additional form elements 
appear (image 04).
+  1. Login to the dashboard, selecting any one of the regions (image 01).
+  2. Select a region from the dropdown in the top right corner and click on 
the region name (image 02).
+  3. Notice the form elements appear in the bottom left corner (image 03).
+  4. (And again) Scroll to the top of the page, select a region from the 
dropdown in the top right corner again and notice additional form elements 
appear (image 04).
  
  What I expect (suggestion):
  
  I expect the form elements to display correctly. Perhaps as a rendered
  login dialog overlayed on the current page?
  
  System(s) Information:
  
  Client system:
  
  $ dpkg-query --show 'firefox' 'chromium-browser'
  chromium-browser18.0.1025.168~r134367-0ubuntu0.12.04.1
  firefox 14.0.1+build1-0ubuntu0.12.04.1
  
  $ cat /etc/lsb-release
  DISTRIB_ID=Ubuntu
  DISTRIB_RELEASE=12.04
    

[Bug 1033956] [NEW] DEFAULT_MAAS_URL should include the '/MAAS' part.

2012-08-07 Thread Raphaël Badin
Public bug reported:

We've changed how MAAS treats the setting DEFAULT_MAAS_URL: now the
FORCE_SCRIPT_NAME is not appended by the code if DEFAULT_MAAS_URL is
defined in maas_local_settings.py.  The packaging should be changed so
that DEFAULT_MAAS_URL will be http://server.ip/MAAS; (as opposed to
http://server.ip/;).

The reasoning behind that change is that if DEFAULT_MAAS_URL is defined
in the local settings, that value should be used as is to give a user
the maximum flexibility.

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

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

Title:
  DEFAULT_MAAS_URL should include the '/MAAS' part.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1033956/+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 917660] Re: Installing qemu-user-static in an i386 lxc container applies the binfmt changes to the host, breaking execution in that host

2012-08-07 Thread Коренберг Марк
** Changed in: linux (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  Installing qemu-user-static in an i386 lxc container applies the
  binfmt changes to the host, breaking execution in that host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/binfmt-support/+bug/917660/+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 1033956] Re: DEFAULT_MAAS_URL should include the '/MAAS' part.

2012-08-07 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
 Assignee: (unassigned) = Andres Rodriguez (andreserl)

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

Title:
  DEFAULT_MAAS_URL should include the '/MAAS' part.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1033956/+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 917660] Re: Installing qemu-user-static in an i386 lxc container applies the binfmt changes to the host, breaking execution in that host

2012-08-07 Thread Stéphane Graber
** Changed in: linux (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Installing qemu-user-static in an i386 lxc container applies the
  binfmt changes to the host, breaking execution in that host

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/binfmt-support/+bug/917660/+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 1032550] Re: [multipath] failed to get sysfs information

2012-08-07 Thread Peter Petrakis
** Changed in: multipath-tools (Ubuntu)
   Status: Incomplete = In Progress

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

Title:
  [multipath]  failed to get sysfs information

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1032550/+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 1032724] Re: Cannot access IPMI card

2012-08-07 Thread Andres Rodriguez
** Changed in: ipmitool (Ubuntu)
   Status: New = Invalid

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

Title:
  Cannot access IPMI card

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1032724/+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 1032724] Re: Cannot access IPMI card

2012-08-07 Thread Andres Rodriguez
As discussed on IRC, this seems to be a bug in the BIOS rather than the
kernel. For this reason I'm marking this bug as Invalid.

For more information on how to solve this issue can be found in [1],

[1]: http://bodgitandscarper.co.uk/centos/hp-microserver-remote-
management-card/


** Changed in: linux (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Cannot access IPMI card

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1032724/+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 1017972] Re: [MIR] google-perftools, libunwind

2012-08-07 Thread James Page
New version of libunwind uploaded with test suite enabled for amd64
only:

libunwind (1.0.1-2ubuntu2) quantal; urgency=low

  * Enable test suite for amd64 architecture:
- d/rules: Execute test suite when building for amd64 only.
- d/patches/20122307_fix_setjmp.patch: Cherry picked fix from upstream
  VCS to fixup setjmp test failure.
- d/patches/20123007_disable_known_test_failures.patch: Disable *-dyn1
  tests as they use unsupported features on amd64.
- d/patches/20123007_workaround_ltest-nocalloc.patch: Make dummy call to
  do_backtrace to ensure that malloc is not called post thread init.
- d/patches/20123007_workaround_test-ptrace.patch: Walk default test
  arguments to ensure child process has visibility.

Date: Mon, 30 Jul 2012 14:43:28 +0100
Changed-By: James Page james.p...@ubuntu.com
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
https://launchpad.net/ubuntu/quantal/+source/libunwind/1.0.1-2ubuntu2

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

** Changed in: libunwind (Ubuntu)
 Assignee: James Page (james-page) = (unassigned)

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

Title:
  [MIR] google-perftools, libunwind

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/google-perftools/+bug/1017972/+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 1006671] Re: swift command has unhelpful manpage

2012-08-07 Thread Launchpad Bug Tracker
This bug was fixed in the package swift - 1.6.0-0ubuntu1

---
swift (1.6.0-0ubuntu1) quantal; urgency=low

  [ Adam Gandelman ]
  * debian/patches/fix-ubuntu-unitteests.patch: Refreshed against tarball
generated by sdist.
  * debian/control: Add python-swiftclient to Build-Depends.
  * debian/swift.install: Remove swift CLI client, moved to
python-swiftclient.
  * debian/patches/fix-ubuntu-unittests.patch: Dropped. Similar upstream
commit ensures logging exceptions are properly handled.
  * debian/rules: *Temporarily* disable test suite.

  [ Chuck Short ]
  * New upstream version.
  * python-swift.dirs: Add /var/cache/swift
  * debian/man/*: Removed used upstream man pages and replaced
with upstream manpages. (LP: #1006671)
 -- Chuck Short zul...@ubuntu.com   Tue, 07 Aug 2012 09:31:35 -0500

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

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

Title:
  swift command has unhelpful manpage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/swift/+bug/1006671/+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 858867] Re: XMLRPC allows unauthed users access to various methods (which it shouldn't)

2012-08-07 Thread James Page
** Changed in: cobbler (Ubuntu Quantal)
   Status: Triaged = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
https://bugs.launchpad.net/bugs/858867

Title:
  XMLRPC  allows unauthed users access to various methods (which it
  shouldn't)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cobbler/+bug/858867/+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 1020313] Re: openstack-dashboard hijacks the web root

2012-08-07 Thread James Page
** Changed in: horizon (Ubuntu)
Milestone: quantal-alpha-3 = ubuntu-12.10-beta-1

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

Title:
  openstack-dashboard hijacks the web root

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

2012-08-07 Thread James Page
Latest updates from debian unstable merged:

 openvswitch (1.4.2+git20120612-9ubuntu1) quantal; urgency=low
 .
   * Merge from Debian unstable; remaining changes:
 - d/control: Disable openvswitch-datapath-dkms package.
   * Dropped changes:
 - d/patches/kernel_3.5_support.patch: Superceded by
   bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch
 .
 openvswitch (1.4.2+git20120612-9) unstable; urgency=low
 .
   * Apply bug-684057-ovs-ctl-Add-support-for-newer-module-name.patch to
 allow use of the openvswitch kernel module integrated into 3.3 and
 later.  Closes: #684057.
 .
 openvswitch (1.4.2+git20120612-8) unstable; urgency=low
 .
   * Apply further patches to fix bugs resulting from moving
 /etc/openvswitch/conf.db to /var/lib/openvswitch in -7.
 .
 This required applying the following bug fix patches:
 .
 bug-681880-3-Make-the-location-of-the-database-separately-configu.patch
 bug-681880-4-tests-Slightly-generalize-utility-function-tests.patch
 bug-681880-5-util-New-function-follow_symlinks.patch
 bug-681880-6-lockfile-Be-more-forgiving-about-lockfiles-for-symli.patch
 bug-681880-7-ovsdb-Do-not-replace-symlinks-by-regular-files-durin.patch
 bug-681880-8-Fix-a-typo-in-commit-f973f2af2.patch
 bug-681880-9-dirs-dbdir-default-must-be-based-on-sysconfdir.patch
 .
   * debian/rules: Configure /var/lib/openvswitch as the database directory
 instead of working through symlinks.  (The symlinks are still created
 for compatibility with people and existing software that are
 accustomed to seeing the database in its original location, but the
 Debian packages themselves never use the symlinks.)
 .
   * debian/openvswitch-switch.postrm: Also remove
 /ec/openvswitch/system-id.conf and conf.db backups on purge.
 .
   * utilities/ovs-pki.in: Use mode 0700 instead of 0733 for
 openvswitch-pki incoming directory, by applying
 bug-683665-use-mode-700-for-pki-incoming-dir.patch.  See the patch for
 complete rationale.  Closes: #683665.  Thanks to Andreas Beckmann
 deb...@abeckmann.de for reporting this bug.
 .
   * debian/openvswitch-pki.postinst: Change mode of existing incoming
 directories to 0700 at configure time (see above).
 .
 openvswitch (1.4.2+git20120612-7) unstable; urgency=low
 .
   * Move /etc/openvswitch/conf.db to /var/lib/openvswitch, using symlinks.
 Closes: #681880.  Thanks to Bastian Blank wa...@debian.org for
 reporting this bug.
 .
 This required applying the following bug fix patches:
 .
 bug-681880-1-lockfile-Fix-hang-locking-through-a-dangling-symlink.patch
 bug-681880-2-ovsdb-Make-ovsdb-tool-create-work-through-a-dangling.patch
 .
   * Start the rest of OVS if bridge compatibility is enabled but the
 kernel bridge module cannot be loaded.  Closes: #681955.  Thanks to
 Bastian Blank wa...@debian.org for reporting this bug.
 .
 This was fixed by applying the following bug fix patch:
 .
 bug-681955-ovs-ctl-Start-the-rest-of-Open-vSwitch.patch
 .
 openvswitch (1.4.2+git20120612-6) unstable; urgency=low
 .
   * utilities/automake.mk: Fix duplicate mention of ovs-vsctl in
 bin_PROGRAMS and bin_SCRIPTS; it should only have been in the former.
 Closes: #682384.  Thanks to Bastian Blank wa...@debian.org for
 reporting this bug.
 .
 openvswitch (1.4.2+git20120612-5) unstable; urgency=low
 .
   * debian/openvswitch-controller.postrm: Remove configuration files in
 /etc/openvswitch-controller on purge.  Closes: #682187.  Thanks to
 Andreas Beckmann deb...@abeckmann.de for reporting this bug.

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

Title:
  [MIR] openvswitch

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/914160/+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 858867] Re: XMLRPC allows unauthed users access to various methods (which it shouldn't)

2012-08-07 Thread Launchpad Bug Tracker
This bug was fixed in the package cobbler - 2.2.2-0ubuntu36

---
cobbler (2.2.2-0ubuntu36) quantal; urgency=low

  * debian/README.Debian: Add Warning note mentioning that XMLRPC API allows
unauthenticated access to certain API methods. (LP: #858867)
 -- Andres Rodriguez andres...@ubuntu.com   Tue, 07 Aug 2012 11:01:53 -0400

** Changed in: cobbler (Ubuntu Quantal)
   Status: Won't Fix = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
https://bugs.launchpad.net/bugs/858867

Title:
  XMLRPC  allows unauthed users access to various methods (which it
  shouldn't)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cobbler/+bug/858867/+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-q-server-benchmark-and-performance] ARM Server Benchmarking and Performance

2012-08-07 Thread Craig Magina
Blueprint changed by Craig Magina:

Work items changed:
  Work items:
  [server-workload-testing-team] Add a test for KVM: TODO
  [server-workload-testing-team] Add a test for LXC: TODO
  [craig.magina] Add a test for OpenMPI: INPROGRESS
- [server-workload-testing-team] Add a test for Membase: TODO
+ [server-workload-testing-team] Add a test for Membase: POSTPONED
  [craig.magina] Add a test for Hadoop and other workloads: DONE
- [server-workload-testing-team] Add a test for AHCI: TODO
- [server-workload-testing-team] Ensure that multi-system testing setups are 
standardized: TODO
+ [server-workload-testing-team] Add a test for AHCI: POSTPONED
+ [server-workload-testing-team] Ensure that multi-system testing setups are 
standardized: POSTPONED
  [server-workload-testing-team] Setup weekly meetings to reveiw testing on 
#ubuntu-meeting (Thursdays 15:00 UTC): TODO
- [server-workload-testing-team] Automate testing (explore PTS documentation 
about batch-run options): TODO
- [server-workload-testing-team] Find an IPV6 testing tool: TODO
- [server-workload-testing-team] Explore stress/load testing (memtester, 
stress, kernel build test, netperf, unix bench): TODO
- [server-workload-testing-team] Test on real hardware when available: TODO
- [server-workload-testing-team] Compare P test results against O: TODO
- [server-workload-testing-team] Investigate PTS logging sensor data: TODO
+ [server-workload-testing-team] Automate testing (explore PTS documentation 
about batch-run options): INPROGRESS
+ [server-workload-testing-team] Find an IPV6 testing tool: POSTPONED
+ [server-workload-testing-team] Explore stress/load testing (memtester, 
stress, kernel build test, netperf, unix bench): POSTPONED
+ [server-workload-testing-team] Test on real hardware when available: DONE
+ [server-workload-testing-team] Compare P test results against O: POSTPONED
+ [server-workload-testing-team] Investigate PTS logging sensor data: POSTPONED
  [rsalveti] Make sure we have a session at Linaro Connect to cover power usage 
at the ARM boards during test case executions: TODO

-- 
ARM Server Benchmarking and Performance
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-server-benchmark-and-performance

-- 
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-q-arm-server-storage-testing] ARM Server Storage Testing

2012-08-07 Thread Craig Magina
Blueprint changed by Craig Magina:

Work items changed:
  Work items:
- [server-workload-testing-team] write test script for ext4: TODO
- [server-workload-testing-team] write test script for btrfs: TODO
- [server-workload-testing-team] write test script for ceph: TODO
- [server-workload-testing-team] write test script for rados: TODO
- [server-workload-testing-team] write test script for drbd: TODO
- [server-workload-testing-team] write test script for gfs2: TODO
- [server-workload-testing-team] write test script for ocfs2: TODO
- [server-workload-testing-team] write test script for glusterfs: TODO
- [server-workload-testing-team] write test script for nfs client: TODO
- [server-workload-testing-team] write test script for nfs server: TODO
- [server-workload-testing-team] write test script for lvm: TODO
- [server-workload-testing-team] write test script for iSCSI initiator: TODO
- [server-workload-testing-team] write test script for iSCSI target: TODO
+ [server-workload-testing-team] write test script for ext4: POSTPONED
+ [server-workload-testing-team] write test script for btrfs: POSTPONED
+ [server-workload-testing-team] write test script for ceph: POSTPONED
+ [server-workload-testing-team] write test script for rados: POSTPONED
+ [server-workload-testing-team] write test script for drbd: POSTPONED
+ [server-workload-testing-team] write test script for gfs2: POSTPONED
+ [server-workload-testing-team] write test script for ocfs2: POSTPONED
+ [server-workload-testing-team] write test script for glusterfs: POSTPONED
+ [server-workload-testing-team] write test script for nfs client: POSTPONED
+ [server-workload-testing-team] write test script for nfs server: POSTPONED
+ [server-workload-testing-team] write test script for lvm: POSTPONED
+ [server-workload-testing-team] write test script for iSCSI initiator: 
POSTPONED
+ [server-workload-testing-team] write test script for iSCSI target: POSTPONED

-- 
ARM Server Storage Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-arm-server-storage-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 971314] Re: 1:4.2.6.p3+dfsg-1ubuntu3 on Precise generates a memory corruption

2012-08-07 Thread Paul Woolley
This bug appears to be linked to hostnames greater than 36 character in
length:

--
root@ip-10-53-101-13:~# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION=Ubuntu 12.04 LTS
root@ip-10-53-101-13:~# hostname 01234567890123456789012345678901234
root@ip-10-53-101-13:~# service ntp restart
 * Stopping NTP server ntpd 

  [ OK ]
 * Starting NTP server ntpd 

  [ OK ]
root@ip-10-53-101-13:~# hostname 012345678901234567890123456789012345
root@ip-10-53-101-13:~# service ntp restart
 * Stopping NTP server ntpd 

  [ OK ]
 * Starting NTP server ntpd 

  [ OK ]
root@ip-10-53-101-13:~# hostname 0123456789012345678901234567890123456
root@ip-10-53-101-13:~# service ntp restart
 * Stopping NTP server ntpd 

  [ OK ]
 * Starting NTP server ntpd 

 *** glibc detected *** lockfile-create: free(): invalid next size 
(fast): 0x00fc90a0 ***
Segmentation fault (core dumped)


  [ OK ]
--

...'rapc-HP-Compaq-dc7800-Small-Form-Factor' being 39 chars.

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

Title:
  1:4.2.6.p3+dfsg-1ubuntu3 on Precise generates a memory corruption

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ntp/+bug/971314/+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 858867] Re: XMLRPC allows unauthed users access to various methods (which it shouldn't)

2012-08-07 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/cobbler

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
https://bugs.launchpad.net/bugs/858867

Title:
  XMLRPC  allows unauthed users access to various methods (which it
  shouldn't)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cobbler/+bug/858867/+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-q-server-benchmark-and-performance] ARM Server Benchmarking and Performance

2012-08-07 Thread MMorana
Blueprint changed by MMorana:

Work items changed:
  Work items:
  [server-workload-testing-team] Add a test for KVM: TODO
  [server-workload-testing-team] Add a test for LXC: TODO
  [craig.magina] Add a test for OpenMPI: INPROGRESS
  [server-workload-testing-team] Add a test for Membase: POSTPONED
  [craig.magina] Add a test for Hadoop and other workloads: DONE
  [server-workload-testing-team] Add a test for AHCI: POSTPONED
  [server-workload-testing-team] Ensure that multi-system testing setups are 
standardized: POSTPONED
  [server-workload-testing-team] Setup weekly meetings to reveiw testing on 
#ubuntu-meeting (Thursdays 15:00 UTC): TODO
- [server-workload-testing-team] Automate testing (explore PTS documentation 
about batch-run options): INPROGRESS
+ [server-workload-testing-team] Automate testing (explore PTS documentation 
about batch-run options): DONE
  [server-workload-testing-team] Find an IPV6 testing tool: POSTPONED
  [server-workload-testing-team] Explore stress/load testing (memtester, 
stress, kernel build test, netperf, unix bench): POSTPONED
  [server-workload-testing-team] Test on real hardware when available: DONE
  [server-workload-testing-team] Compare P test results against O: POSTPONED
  [server-workload-testing-team] Investigate PTS logging sensor data: POSTPONED
  [rsalveti] Make sure we have a session at Linaro Connect to cover power usage 
at the ARM boards during test case executions: TODO

-- 
ARM Server Benchmarking and Performance
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-server-benchmark-and-performance

-- 
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-q-cloud-images] Ubuntu Cloud Images Roundtable

2012-08-07 Thread Ben Howard
Blueprint changed by Ben Howard:

Work items changed:
  Work items:
  [utlemming] Build Rescue EBS Snapshots: TODO
- [utlemming] Disable 5 second boot time out on images: TODO
- [utlemming] Work with IS to show only the latest images on 
cloud.ubuntu.com/ami: TODO
+ [utlemming] Disable 5 second boot time out on images: DONE
+ [utlemming] Work with IS to show only the latest images on 
cloud.ubuntu.com/ami: POSTPONED
  [utlemming] Add links to cloud-images.ubuntu.com: TODO
- [utlemming] Create full disk images for Lucid: TODO
+ [utlemming] Create full disk images for Lucid: INPROGRESS

-- 
Ubuntu Cloud Images Roundtable
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-cloud-images

-- 
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 987371] Re: unconfined containers are not starting

2012-08-07 Thread Serge Hallyn
** Changed in: lxc (Ubuntu Precise)
   Status: New = Invalid

** Changed in: apparmor (Ubuntu Precise)
   Status: New = Invalid

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

Title:
  unconfined containers are not starting

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

2012-08-07 Thread Serge Hallyn
0.2.0-1ubuntu1 has been pushed to quantal.  I've built a libvirt in ppa
(ppa:serge-hallyn/virt) linked against it, which is working (virsh
iface-list works).

Ping on MIR?

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

Title:
  [MIR] netcf

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

2012-08-07 Thread Jamie Strandboge
MIR review:
 * Builds fine with only main
 * Has an extensive testsuite with 991 successful tests and 3 skipped
 * uses dh_python2, not a desktop package
 * There is an Ubuntu delta: drops the dkms package and kernel_3.5_support.patch
 * ubuntu-server is subscribed to the bugs
 * No debian/watch file.
 * Seems wells maintained in Debian with regular updates. Upstream is very 
active.
 * Upstream is at 1.6.1 now, and 1.4 series seems in maintenance mode now (only 
bug fixes)
 * There is a lintian warning:
W: openvswitch-switch: binary-without-manpage usr/bin/ovsdb-tool
 * debian/rules uses the old-style format
 * Has some compiler warnings:
../lib/leak-checker.c:77:5: warning: '__malloc_hook' is deprecated (declared at 
/usr/include/malloc.h:176) [-Wdeprecated-declarations]
../lib/leak-checker.c:78:5: warning: '__realloc_hook' is deprecated (declared 
at /usr/include/malloc.h:179) [-Wdeprecated-declarations]
../lib/leak-checker.c:79:5: warning: '__free_hook' is deprecated (declared at 
/usr/include/malloc.h:173) [-Wdeprecated-declarations]
../lib/leak-checker.c:85:5: warning: '__malloc_hook' is deprecated (declared at 
/usr/include/malloc.h:176) [-Wdeprecated-declarations]
../lib/leak-checker.c:86:5: warning: '__realloc_hook' is deprecated (declared 
at /usr/include/malloc.h:179) [-Wdeprecated-declarations]
../lib/leak-checker.c:87:5: warning: '__free_hook' is deprecated (declared at 
/usr/include/malloc.h:173) [-Wdeprecated-declarations]
 * There are 3 open bugs in Ubuntu-- two relating to the now disabled dkms 
package. No serio
us bugs in Debian.

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

Title:
  [MIR] openvswitch

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

2012-08-07 Thread Jamie Strandboge
Security review:
The package does not have a CVE history. No dbus servies, setuid or fscaps 
usage. No use of sudo and no cron jobs. There is a logrotate configuration. 
Inspecting the packaging:
 * initscripts/upstart jobs:
/etc/default/openvswitch-controller
/etc/init.d/openvswitch-ipsec
/etc/init.d/openvswitch-switch
 * Initial install of quantum creates no new open ports for openvswitch, but 
ovsdb-server and ovs-vswitchd are running as 
root.http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648667 requests to run as 
non-root
 * Installing openvswitch* we get additional root services and ovs-controller 
listening on TCP port 6633 ( as root)
 * The package makes use of encryption (private CA and PKI using openssl)
 * hardening options are used. Since all this is running as root and there is a 
network listener, could we add PIE and BIND_NOW? Could ovs-controller have an 
apparmor profile?

Shallow code audit:
 * uses system in lib/netdev-linux.c. While this is generally not a good idea 
due to shell meta injection, the arguments do not seem to be user controllable
 * execvp: (process_start() and process_run()): arguments only manipulated on 
invocation from the shell in ovsdb-server.c. For capture_vsctl*, the command 
line is built up internally in a safe manner that is not user controllable
 * defines its own malloc routines (xmalloc, xrealloc): verifies return value 
and aborts. Also defines other routines in lib/util.c (eg string routines) and 
all are defensively coded.
 * there are some uses strcpy but they seemed safe
 * uses encryption:
  * may bootstrap a CA (stream-ssl.c in do_ca_cert_bootstrap())
  * it disables SSLv2 and SSLv3 and uses TLSv1
  * appropriately uses SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT
  * doesn't seem to check the CN or SAN of the certificate, but openvswitch 
uses private CA certificates and client certificates and in all cases the CA 
certificate needs to be setup on the client so this shouldn't be an issue
 * predictable sockets in /tmp: this is ok-- bind() errors out if the file 
exists and openvswitch checks the return code

This is a pretty large code base and I was not able to perform an in
depth audit. However, openvswitch seems to be defensively coded and I
didn't find anything wrong during the review.

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

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

Title:
  [MIR] openvswitch

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

2012-08-07 Thread Jamie Strandboge
Conditional ACK. Feel free to promote after:
* compiling with PIE and BIND_NOW (or demonstrating this is not appropriate)
* investigating feasibility of shipping an AppArmor profile for 
openvswitch-controller. If it is possible, please ship one

** Changed in: openvswitch (Ubuntu)
 Assignee: Jamie Strandboge (jdstrand) = Chuck Short (zulcss)

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

Title:
  [MIR] openvswitch

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

2012-08-07 Thread Serge Hallyn
** Changed in: netcf (Ubuntu Quantal)
 Assignee: Serge Hallyn (serge-hallyn) = Jamie Strandboge (jdstrand)

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

Title:
  [MIR] netcf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/netcf/+bug/904014/+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 1034098] [NEW] package bind9 1:9.8.1.dfsg.P1-4ubuntu0.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread joel_huebner
Public bug reported:

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

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: bind9 1:9.8.1.dfsg.P1-4ubuntu0.2
ProcVersionSignature: Ubuntu 3.2.0-27.43-generic 3.2.21
Uname: Linux 3.2.0-27-generic x86_64
ApportVersion: 2.0.1-0ubuntu8
Architecture: amd64
Date: Tue Aug  7 12:16:53 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
RelatedPackageVersions:
 bind9utils 1:9.8.1.dfsg.P1-4ubuntu0.2
 apparmor   2.7.102-0ubuntu3.1
SourcePackage: bind9
Title: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to precise on 2012-07-11 (26 days ago)
modified.conffile..etc.bind.named.conf.options: [modified]
mtime.conffile..etc.bind.named.conf.options: 2012-07-11T16:00:37.709396

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


** Tags: amd64 apport-package precise

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1034098/+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 1034098] Re: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread joel_huebner
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in Ubuntu.
https://bugs.launchpad.net/bugs/1034098

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1034098/+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 1034098] Re: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1034098/+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 1034098] Re: package bind9 1:9.8.1.dfsg.P1-4ubuntu0.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread Robie Basak
From log:
Setting up bind9 (1:9.8.1.dfsg.P1-4ubuntu0.2) ...
 * Stopping domain name service... bind9    
/etc/resolvconf/update.d/dnscache: 94: /etc/resolvconf/update.d/dnscache: 
cannot create /etc/resolvconf/run/dnscache_new.11109: Directory nonexistent
run-parts: /etc/resolvconf/update.d/dnscache exited with return code 2
invoke-rc.d: initscript bind9, action restart failed.
dpkg: error processing bind9 (--configure):
 subprocess installed post-installation script returned error exit status 1

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

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1034098/+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 1029977] Re: dnsmasq-base should ship the dnsmasq dbus configuration file

2012-08-07 Thread Mathieu Trudel-Lapierre
** Changed in: dnsmasq (Ubuntu Precise)
   Status: In Progress = Triaged

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

Title:
  dnsmasq-base should ship the dnsmasq dbus configuration file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1029977/+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 1017972] Re: [MIR] google-perftools, libunwind

2012-08-07 Thread Michael Terry
libunwind is fine with tests enabled.  Not all platforms, but upstream
makes it difficult to do so.  So we at least enable the one platform we
need it for, and that one platform's tests will have to act as our
canary in a coal mine.

** Changed in: libunwind (Ubuntu)
   Status: New = Fix Committed

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

Title:
  [MIR] google-perftools, libunwind

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/google-perftools/+bug/1017972/+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 1034125] [NEW] containers can load a kernel to kexec

2012-08-07 Thread Serge Hallyn
Public bug reported:

Loading a kexec kernel is guarded by CAP_SYS_BOOT, which we allow a
container to have.

A container can't do 'kexec -e' to actually execute the new kernel, because 
that requires a call to reboot which is refused.  However, it can do kexec -l 
do load a kernel for the next kexec -e.  This means that it could race with an 
admin on the host doing 'kexec -l; kexec -e'.  Exact command line used in the 
container (after
copying /boot/* from the host to /var/lib/lxc/q1/rootfs/boot/ ) :

sudo kexec -l /boot/vmlinuz-3.5.0-5-generic --append=root=LABEL
=cloudimg-rootfs --initrd=/boot/initrd.img-3.5.0-5-generic

Before this, kexec -e on the host gives:

Nothing has been loaded!

After this, it loads the new kernel.

There is a patch on lkml to prevent a task in non-init pid namespace
(i.e. a container) from loading kexec kernels:
https://lkml.org/lkml/2012/8/3/152.  Please apply to precise and
quantal.

After quantal, user namespaces will provide an alternative fix.

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

** Affects: lxc (Ubuntu)
 Importance: High
 Status: Triaged

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

** Description changed:

  Loading a kexec kernel is guarded by CAP_SYS_BOOT, which we allow a
  container to have.
  
- A container can't do 'kexec -e' to actually execute the new kernel,
- because that requires a call to reboot which is refused.  However, it
- can do kexec -l do load a kernel for the next kexec -e.  This means that
- it could race with an admin on the host doing 'kexec -l; kexec -e'.
- Exact command line used in the container:
+ A container can't do 'kexec -e' to actually execute the new kernel, because 
that requires a call to reboot which is refused.  However, it can do kexec -l 
do load a kernel for the next kexec -e.  This means that it could race with an 
admin on the host doing 'kexec -l; kexec -e'.  Exact command line used in the 
container (after
+ copying /boot/* from the host to /var/lib/lxc/q1/rootfs/boot/ ) :
  
  sudo kexec -l /boot/vmlinuz-3.5.0-5-generic --append=root=LABEL
  =cloudimg-rootfs --initrd=/boot/initrd.img-3.5.0-5-generic
  
  Before this, kexec -e on the host gives:
  
  Nothing has been loaded!
  
  After this, it loads the new kernel.
  
  There is a patch on lkml to prevent a task in non-init pid namespace
  (i.e. a container) from loading kexec kernels:
  https://lkml.org/lkml/2012/8/3/152.  Please apply to precise and
  quantal.
  
  After quantal, user namespaces will provide an alternative fix.

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

** Changed in: lxc (Ubuntu)
   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/1034125

Title:
  containers can load a kernel to kexec

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1034125/+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 1034125] Missing required logs.

2012-08-07 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
From a terminal window please run:

apport-collect 1034125

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

** Tags added: quantal

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

Title:
  containers can load a kernel to kexec

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1034125/+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 1029766] Re: keystone logrotate has output when restarting keystone

2012-08-07 Thread Launchpad Bug Tracker
** Branch linked: lp:~openstack-ubuntu-testing/keystone/precise-folsom-
proposed

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

Title:
  keystone logrotate has output when restarting keystone

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1029766/+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 1034125] Re: containers can load a kernel to kexec

2012-08-07 Thread Stéphane Graber
Setting bot-stop-nagging. A patch was sent upstream and forwarded to the
ubuntu kernel team.

** Changed in: linux (Ubuntu)
   Status: Incomplete = Triaged

** Tags added: bot-stop-nagging

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

Title:
  containers can load a kernel to kexec

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1034125/+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 1019290] Re: stop lxc-net should do stop even when USE_LXC_BRIDGE=false

2012-08-07 Thread Serge Hallyn
** Description changed:

+ 
+ SRU Justification:
+ 1. Impact: 'stop lxc-net' may not actually tear down the lxc bridge
+ 2. Development fix: don't shortcut 'stop lxc-net' if USE_LXC_BRIDGE is false
+ 3. Stable fix: same as development fix.
+ 4. Test case:
+   . sudo apt-get install lxc
+   . sudo sed -i 's/USE_LXC_BRIDGE.*$/USE_LXC_BRIDGE=false/' /etc/default/lxc
+   . sudo stop lxc-net
+   . ifconfig | grep lxcbr0
+ 5. Regression potential: if done wrong, the worst this should do is to make 
'stop lxc-net' give errors when it tries to shut down a non-existent network.
+ 
+ 
  After an installation on precise pangolin (0.7.5-3ubuntu59) , the lxcbr0
  bridge is up and dnsmasq is running.
  
  * edit /etc/default/lxc to pass USE_LXC_BRIDGE to false
  * launch the command: stop lxc-net
  
  The bridge is not stopped, the upstart script should detect that lxc-net
  was started with USE_LXC_BRIDGE=true and stop it.
  
  Regards.

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

Title:
  stop lxc-net should do stop even when USE_LXC_BRIDGE=false

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1019290/+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 1034125] Re: containers can load a kernel to kexec

2012-08-07 Thread Joseph Salisbury
** Changed in: linux (Ubuntu)
   Importance: Undecided = High

** Tags added: kernel-key

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

Title:
  containers can load a kernel to kexec

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1034125/+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 1026621] Re: nova-network gets release_fixed_ip events from someplace, but the database still keeps them associated with instances

2012-08-07 Thread Adam Gandelman
Andrew-

Can't seem to reproduce this locally.  Its a long shot, but I wonder if
this might be related to the same problems reported in Bug #1006898. Are
there multiple instances of dnsmasq running?  I know you're not
configured for VLANing, but I'm interested to know if the proposed fix
there solves this issue since the final symptoms  seem awfully similar.

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

Title:
  nova-network gets release_fixed_ip events from someplace, but the
  database still keeps them associated with instances

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1026621/+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 1031359] Re: [MIR] cinder

2012-08-07 Thread Michael Terry
** Changed in: cinder (Ubuntu)
 Assignee: (unassigned) = Jamie Strandboge (jdstrand)

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

Title:
  [MIR] cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1031359/+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 997978] Re: KVM images lose connectivity with bridged network

2012-08-07 Thread Serge Hallyn
On quantal, I can't get such a VM to run without it automatically
loading vhost_net.  The following kvm command

sudo kvm -hda x.img -netdev tap,ifname=tap0,id=hostnet0,vhost=on -device
virtio-net-
pci,netdev=hostnet0,id=net0,mac=52:54:00:d8:33:46,bus=pci.0,addr=0x3
-vnc :1

causes vhost_net to get loaded.  (The same command doesn't quite work in
precise)

I'll leave the testcase (with nc) running for a few hours on quantal in
any case.

Then I'll replace my quantal install with a precise one, and try again
to reproduce there.

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

Title:
  KVM images lose connectivity with bridged network

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bridge-utils/+bug/997978/+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 1033712] Re: Sync whois 5.0.18 (main) from Debian unstable (main)

2012-08-07 Thread Benjamin Drung
This bug was fixed in the package whois - 5.0.18
Sponsored for Logan Rosen (logan)

---
whois (5.0.18) unstable; urgency=low

  * Updated the .ae and .xn--mgbaam7a8h (.امارات, United Arabs Emirates)
TLDs.
  * Updated the server charset table for .fr and .it.

 -- Marco d'Itri m...@linux.it  Sun, 22 Jul 2012 20:35:18 +0200

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

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

Title:
  Sync whois 5.0.18 (main) from Debian unstable (main)

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

2012-08-07 Thread Jamie Strandboge
Based on my previous assessment and that 'make check' cannot be run on
the buildd, ACK.

** Changed in: netcf (Ubuntu Quantal)
   Status: In Progress = Fix Committed

** Changed in: netcf (Ubuntu Quantal)
 Assignee: Jamie Strandboge (jdstrand) = (unassigned)

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

Title:
  [MIR] netcf

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

2012-08-07 Thread Jamie Strandboge
This FTBFS since python-babel is not in main.

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

Title:
  [MIR] cinder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1031359/+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 1014925] Re: API 'v1.1/{tenant_id}/os-hosts' does not return a list of hosts

2012-08-07 Thread Mark McLoughlin
** Changed in: nova/essex
Milestone: None = 2012.1.2

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

Title:
  API 'v1.1/{tenant_id}/os-hosts' does not return a list of hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1014925/+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 1013782] Re: Stop/start a KVM instance with volumes attached produces an error state

2012-08-07 Thread Mark McLoughlin
** Changed in: nova/essex
Milestone: None = 2012.1.2

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

Title:
  Stop/start a KVM instance with volumes attached produces an error
  state

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1013782/+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 1014925] Re: API 'v1.1/{tenant_id}/os-hosts' does not return a list of hosts

2012-08-07 Thread Mark McLoughlin
** Changed in: nova/essex
   Importance: Undecided = Low

** Changed in: nova/essex
   Importance: Low = Medium

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

Title:
  API 'v1.1/{tenant_id}/os-hosts' does not return a list of hosts

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1014925/+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 1013782] Re: Stop/start a KVM instance with volumes attached produces an error state

2012-08-07 Thread Mark McLoughlin
** Changed in: nova/essex
   Importance: Undecided = High

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

Title:
  Stop/start a KVM instance with volumes attached produces an error
  state

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1013782/+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 1021822] Re: [MIR] python-quantumclient

2012-08-07 Thread Michael Terry
Also, the test suite isn't enabled, but should be.

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

Title:
  [MIR] python-quantumclient

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-quantumclient/+bug/1021822/+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 1021530] Re: [SRU] update to include stable fixes for OVS 1.4

2012-08-07 Thread Aaron Rosen
Hi, any idea when this will get pushed to Precise?

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

Title:
  [SRU] update to include stable fixes for OVS 1.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1021530/+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 1034228] [NEW] maas-enlist script hard codes the path to the maas server

2012-08-07 Thread Julian Edwards
Public bug reported:

curl \
--data 
op=new${mac}hostname=${hostname}architecture=${arch}after_commissioning_action=0
 \
${serverurl}/MAAS/api/1.0/nodes/

Currently serverurl is actually a just host name.  MAAS should pass the
full string to the enlistment URL and maas-enlist should not hard code
it because this will not work in a demo environment as it stands.

** Affects: maas
 Importance: Critical
 Status: Triaged

** Affects: maas-enlist (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: maas
   Importance: Undecided
   Status: New

** Changed in: maas
   Status: New = Triaged

** Changed in: maas
   Importance: Undecided = Critical

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

Title:
  maas-enlist script hard codes the path to the maas server

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1034228/+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 1008203] Re: dhclient3 sends wrong discover packets on changed MAC addr

2012-08-07 Thread Launchpad Bug Tracker
[Expired for dhcp3 (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  dhclient3 sends wrong discover packets on changed MAC addr

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dhcp3/+bug/1008203/+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 951087] Re: Samba non-functional on boot.

2012-08-07 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Samba non-functional on boot.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/951087/+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 1033733] Re: package libcups2 1.5.3-0ubuntu3 failed to install/upgrade: short read on buffer copy for backend dpkg-deb during `./usr/lib/i386-linux-gnu/libcups.so.2'

2012-08-07 Thread James
The issue seems to be resolved after removing libcups2:i386 but keeping 
libcups2.
I'll run a fs and mem test and if I find anything peculiar will post an update.

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

Title:
  package libcups2 1.5.3-0ubuntu3 failed to install/upgrade: short read
  on buffer copy for backend dpkg-deb during `./usr/lib/i386-linux-
  gnu/libcups.so.2'

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

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


[Bug 1033638] Re: Requires installation of untrusted packages.

2012-08-07 Thread Michał
It's working.

** Description changed:

- I want to install the application update gets an error: (after translation 
into English by the translator)
- Requires installation of untrusted packages.
- Action would require the installation of packages from unauthenticated 
sources
- 
- Screen:
- http://ubuntuone.com/42BPCCBaMLP4PrDWB6b3wz
+ EdiT:
+ It's working.

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

Title:
  Requires installation of untrusted packages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/1033638/+subscriptions

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


Re: [Bug 1015292] Re: X11 crashes with seg fault when running QT5 based applications on a Pandaboard with the SGX driver

2012-08-07 Thread Ricardo Salveti
On Mon, Aug 6, 2012 at 4:02 PM, Bryce Harrington
1015...@bugs.launchpad.net wrote:
 Hi Ricardo,

 I noticed this isn't uploaded to -proposed yet (that I can tell), so
 have freshened your debdiff up and uploaded it.

 A made a few minor changes.  I changed the number from
 1.11.4-0ubuntu10.7 to 1.11.4-0ubuntu10.8 since there's been another SRU
 made recently.  I renumbered the patches from 5xx to 2xx, because the
 5xx series are really only for patches to the input stack (yes, it's
 really confusing...)

Great, thanks for your review.

 We also manage the X stack packaging in git (see
 https://wiki.ubuntu.com/X/GitUsage).  I've committed your debdiff to our
 git tree, so it can be tracked.

Thanks for the pointers.

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

Title:
  X11 crashes with seg fault when running QT5 based applications on a
  Pandaboard with the SGX driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-omap4-extras-graphics/+bug/1015292/+subscriptions

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


[Bug 1013881] Re: Right-Ctrl key broken on French OSS keyboard

2012-08-07 Thread Launchpad Bug Tracker
** Branch linked: lp:~jm-leddy/ubuntu/quantal/xkeyboard-config/micmute

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

Title:
  Right-Ctrl key broken on French OSS keyboard

To manage notifications about this bug go to:
https://bugs.launchpad.net/xkeyboard-config/+bug/1013881/+subscriptions

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


Re: [Bug 831768] Re: aptitude cannot handle conflicts with multiarch enabled

2012-08-07 Thread Daniel Hartwig
On 7 August 2012 13:44, Fyodor Kupchik 831...@bugs.launchpad.net wrote:
 After update went successfully I downloaded new skype package
 from skype.com i386 version and installed it. Everything went OK!

 So here's is *definitely improvement* for me and disabling the
 option in /etc/apt/apt.conf did the trick for me!
 Thank you very much for your work! I'm now able to use aptitude
 again!

Thanks for the update.

Anyone else using a workaround should be sure to disable it as
well.

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

Title:
  aptitude cannot handle conflicts with multiarch enabled

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

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


[Bug 1033819] Re: gnome-panel crashed with SIGSEGV in gtk_container_forall()

2012-08-07 Thread dino99
** Visibility changed to: Public

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/1033819/+subscriptions

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


[Bug 996981] Re: Hyphenation regression

2012-08-07 Thread Mikko Rantalainen
I just tested with a clean profile like this:

$ mkdir test-profile
$ cd test-profile
$ HOME=$(pwd) firefox --no-remote 
http://hyphenator.googlecode.com/svn/dictChecker.html;

No language is hyphenated. Tools add-ons manager - Languages says I have
English (GB) and Suomenkielinen (FI) Language pack installed but neither
English or Finnish is hyphenated.

Some info from about:support below:

Name: Firefox
Version: 13.0.1
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 
Firefox/13.0.1

$ apt-cache policy firefox
firefox:
  Installed: 13.0.1+build1-0ubuntu0.10.04.1
  Candidate: 14.0.1+build1-0ubuntu0.10.04.1
  Version table:
 14.0.1+build1-0ubuntu0.10.04.1 0
500 http://ftp.sunet.se/pub/os/Linux/distributions/ubuntu/ubuntu/ 
lucid-updates/main Packages
500 http://ftp.sunet.se/pub/os/Linux/distributions/ubuntu/ubuntu/ 
lucid-security/main Packages
 *** 13.0.1+build1-0ubuntu0.10.04.1 0
100 /var/lib/dpkg/status
 3.6.3+nobinonly-0ubuntu4 0
500 http://ftp.sunet.se/pub/os/Linux/distributions/ubuntu/ubuntu/ 
lucid/main Packages

I'll test again after upgrading to 14.0 (I've just returned from holiday
so I haven't yet updated packages).

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

Title:
  Hyphenation regression

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

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


[Bug 996981] Re: Hyphenation regression

2012-08-07 Thread Mikko Rantalainen
Marking confirmed because this affects 2 persons. However, this cannot
be reproduced by all testers.

** Changed in: firefox (Ubuntu)
   Status: Expired = Confirmed

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

Title:
  Hyphenation regression

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

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


[Bug 851532] Re: gnome-panel crashed with SIGSEGV in gtk_container_forall()

2012-08-07 Thread dino99
Still going crashing : Bug #1033819

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-panel/+bug/851532/+subscriptions

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


[Bug 956071] Re: Xorg crashed with SIGSEGV in XIGetDeviceProperty()

2012-08-07 Thread Keng-Yu Lin
** Also affects: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Status: New = Confirmed

** Changed in: xserver-xorg-input-synaptics (Ubuntu)
   Importance: Undecided = High

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

Title:
  Xorg crashed with SIGSEGV in XIGetDeviceProperty()

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/956071/+subscriptions

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


[Bug 956071] Re: Xorg crashed with SIGSEGV in XIGetDeviceProperty()

2012-08-07 Thread Tim Chen
Create /etc/modprobe.d/bare-psmouse.conf:

options psmouse proto=bare

then I reboot and tried close/open the lid 50 times,
I no longer have Xorg crash issue.

Can anyone still reproduce this issue after this workaround?

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

Title:
  Xorg crashed with SIGSEGV in XIGetDeviceProperty()

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/956071/+subscriptions

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


[Bug 956071] Re: Xorg crashed with SIGSEGV in XIGetDeviceProperty()

2012-08-07 Thread Keng-Yu Lin
More testings here:
  From the fd.o bug it looks like the crash is in xserver-xorg-input-synaptics. 
I tried to boot with the parameter psmouse.proto=bare so that the touchpad is 
recognized as a generic PS/2 mouse. And I performed 30 cycles of 
suspends/resumes. There is no crash observed.

  Independently, I downgraded the xserver-xorg-input-synaptics package
to 1.5.99.902-0ubuntu5 (just happens in the ddebs archives, its -debsym
package is of that version). I performed 30 cycles of suspends/resumes.
There is no crash either.

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

Title:
  Xorg crashed with SIGSEGV in XIGetDeviceProperty()

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/956071/+subscriptions

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


[Bug 924471] Re: Developer doc is empty in devhelp

2012-08-07 Thread Nishant George Agrwal
The docs are still empty for me. What might be wrong? I'm using Precise
12.04 and i've install the devhelp and libbamf-doc. When I try to browse
the doc in devhelp, the sections for libbamf are empty.

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

Title:
  Developer doc is empty in devhelp

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

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


[Bug 1033819]

2012-08-07 Thread Apport retracing service
StacktraceSource:
 #0  0xb754d2eb in gtk_viewport_size_allocate (widget=0x88cb280, 
allocation=0x88cb1f8) at /build/buildd/gtk+3.0-3.5.8/./gtk/gtkviewport.c:849
   [Error: /build/buildd/gtk+3.0-3.5.8/./gtk/gtkviewport.c was not found in 
source tree]
 #1  0xb7757000 in ?? () from 
/tmp/tmpZur0UU/usr/lib/i386-linux-gnu/libgtk-3.so.0
StacktraceTop:
 gtk_viewport_size_allocate (widget=0x88cb280, allocation=0x88cb1f8) at 
/build/buildd/gtk+3.0-3.5.8/./gtk/gtkviewport.c:849
 ?? () from /tmp/tmpZur0UU/usr/lib/i386-linux-gnu/libgtk-3.so.0

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/1033819/+subscriptions

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


[Bug 1033819] Stacktrace.txt

2012-08-07 Thread Apport retracing service
** Attachment added: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1033819/+attachment/3251030/+files/Stacktrace.txt

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/1033819/+subscriptions

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


[Bug 1033819] ThreadStacktrace.txt

2012-08-07 Thread Apport retracing service
** Attachment added: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1033819/+attachment/3251031/+files/ThreadStacktrace.txt

** Changed in: gnome-panel (Ubuntu)
   Status: New = Invalid

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/1033819/+subscriptions

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


[Bug 1033819] Crash report cannot be processed

2012-08-07 Thread Apport retracing service
Thank you for your report!

However, processing it in order to get sufficient information for the
developers failed (it does not generate a useful symbolic stack trace). This
might be caused by some outdated packages which were installed on your system
at the time of the report:

libgdk-pixbuf2.0-common version 2.26.1-1ubuntu1 required, but 2.26.2-0ubuntu1 
is available
libgtk-3-common version 3.5.9~git20120804.10676271-0ubuntu1~12.10~ricotz0 
required, but 3.5.8-0ubuntu2 is available
libatspi2.0-0 version 2.5.4-0ubuntu1 required, but 2.5.5-0ubuntu1 is available
libgdk-pixbuf2.0-0 version 2.26.1-1ubuntu1 required, but 2.26.2-0ubuntu1 is 
available
libecal-1.2-15 version 3.5.4-0ubuntu2 required, but 3.5.5-0ubuntu1 is available
libglib2.0-0 version 2.33.7~git20120804.f1a13b89-0ubuntu1~12.10~ricotz0 
required, but 2.33.6-1 is available
libedataserver-1.2-17 version 3.5.4-0ubuntu2 required, but 3.5.5-0ubuntu1 is 
available
libgtk-3-bin version 3.5.9~git20120804.10676271-0ubuntu1~12.10~ricotz0 
required, but 3.5.8-0ubuntu2 is available
libgtk-3-0 version 3.5.9~git20120804.10676271-0ubuntu1~12.10~ricotz0 required, 
but 3.5.8-0ubuntu2 is available
libcamel-1.2-39 version 3.5.4-0ubuntu2 required, but 3.5.5-0ubuntu1 is available
libatk-bridge2.0-0 version 2.5.4-0ubuntu1 required, but 2.5.5-0ubuntu1 is 
available


Please upgrade your system to the latest package versions. If you still
encounter the crash, please file a new report.

Thank you for your understanding, and sorry for the inconvenience!


** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1033819/+attachment/3251018/+files/CoreDump.gz

** Tags removed: need-i386-retrace

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

Title:
  gnome-panel crashed with SIGSEGV in gtk_container_forall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-panel/+bug/1033819/+subscriptions

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


[Bug 1033720] Re: Sync zope-quotafolder 1:0.1.1-1 (universe) from Debian unstable (main)

2012-08-07 Thread Micah Gersten
Looks good, syncing, thanks

** Changed in: zope-quotafolder (Ubuntu)
   Status: New = In Progress

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

Title:
  Sync zope-quotafolder 1:0.1.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zope-quotafolder/+bug/1033720/+subscriptions

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


[Bug 853060] Re: ubuntuone-installer crashed with GError in function(): Failed to execute child process ubuntuone-control-panel-gtk (No such file or directory)

2012-08-07 Thread Steve Langasek
Rodney,

The impact here is that this bug is the top crasher on
errors.ubuntu.com.  Is it possible to get a fix for this for inclusion
in 12.04.1?  We would need a fix available in precise-proposed this week
for that to happen.

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

Title:
  ubuntuone-installer crashed with GError in function(): Failed to
  execute child process ubuntuone-control-panel-gtk (No such file or
  directory)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-installer/+bug/853060/+subscriptions

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


[Bug 1033263] Re: Ubuntu 12.04 freezes with nividia drivers

2012-08-07 Thread Hein
sudo add-apt-repository ppa:upubuntu-com/kernel-i386
sudo apt-get update
sudo apt-get install linux

(this was what I did)

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

Title:
  Ubuntu 12.04 freezes with nividia drivers

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

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


[Bug 1033263] Re: Ubuntu 12.04 freezes with nividia drivers

2012-08-07 Thread Hein
I've searched for a 3.5.0 kernel for Precise at KernelMainlineBuilds but
couldn't find it. Installed a 3.5.0 kernel following instruction found
on ubuntuforum from PPA. Kernel was installed, but my system booted in
640-480 resolution with notifications at boot up that the screen wasn't
recognized. Nividia drivers were disabled, so I tried to switch them on
with the respective tool - but this was not succesful - probably because
the screen was not recognized. Didn't have the time to tinker with the
x-configuration yesterday.

I see that you provide also a 3.6 kernel for quantal in the link at the
bottom of your message. Can a quantal kernel be tested on precise??  I
would like to try again, if you would provide me with a link to the
(3.5) kernel you want me to test.

Sorry, I'm not a (very) technical user, but I'm very willing to help.
It's a shame that the proprietary Nvidia driver that worked on previous
versions like a charm on my system now renders my system completely
useless.

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

Title:
  Ubuntu 12.04 freezes with nividia drivers

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

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


[Bug 1033263] Re: Ubuntu 12.04 freezes with nividia drivers

2012-08-07 Thread Hein
of course the first line was

sudo add-apt-repository ppa:upubuntu-com/kernel-amd64

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

Title:
  Ubuntu 12.04 freezes with nividia drivers

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

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


[Bug 1006738] Re: php5-fpm segfaults with error 4 in libc-2.15.so

2012-08-07 Thread Ondřej Surý
Better would be to pull 5.4.4-4 which already includes more complete fix
from upstream git.

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

Title:
  php5-fpm segfaults with error 4 in libc-2.15.so

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

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


[Bug 948156] Re: Please merge PHP 5.4 from Debian

2012-08-07 Thread Ondřej Surý
PHP 5.4 changes API, so a PHP backport would need to also to backport
all it's rev-deps and this is quite a major task.

I don't think it's feasible to officially maintain such a huge backport
(the other thing is my PPA which includes PHP 5.4 backport including
some of it's reverse dependencies people has asked for.)

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

Title:
  Please merge PHP 5.4 from Debian

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

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


[Bug 1018732] Re: accerciser crashed with AttributeError in _populateUI(): type object 'GtkShadowType' has no attribute 'IN_'

2012-08-07 Thread Launchpad Bug Tracker
This bug was fixed in the package accerciser - 3.5.5-0ubuntu1

---
accerciser (3.5.5-0ubuntu1) quantal; urgency=low

  * New upstream release
- What's New
  + Reverting commit a47442 (LP: #1018732)
- New And Updated Translations
  + Alexander Shopov (bg)
  + Andika Triwidada (id)
  + Chao-Hsiung Liao (zh_HK)
  + Chao-Hsiung Liao (zh_TW)
  + Мирослав Николић (sr)
 -- Luke Yelavich them...@ubuntu.com   Tue, 07 Aug 2012 16:34:08 +1000

** Changed in: accerciser (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  accerciser crashed with AttributeError in _populateUI(): type object
  'GtkShadowType' has no attribute 'IN_'

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

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

[Bug 1033824] Re: package indicator-weather 11.11.28-0ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread eric bonnaud
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033824

Title:
  package indicator-weather 11.11.28-0ubuntu1.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-weather/+bug/1033824/+subscriptions

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


[Bug 1033824] Re: package indicator-weather 11.11.28-0ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package indicator-weather 11.11.28-0ubuntu1.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-weather/+bug/1033824/+subscriptions

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


[Bug 1033824] [NEW] package indicator-weather 11.11.28-0ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread eric bonnaud
Public bug reported:

Bonjour, il s'agit principalement des prévisions qui ne fonctionnent pas
et aussi de la configuration sous Google.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: indicator-weather 11.11.28-0ubuntu1.1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu12
AptOrdering: indicator-weather: Configure
Architecture: amd64
Date: Tue Aug  7 08:16:38 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
PackageArchitecture: all
SourcePackage: indicator-weather
Title: package indicator-weather 11.11.28-0ubuntu1.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: indicator-weather (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package precise

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

Title:
  package indicator-weather 11.11.28-0ubuntu1.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-weather/+bug/1033824/+subscriptions

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

[Bug 1033720] Re: Sync zope-quotafolder 1:0.1.1-1 (universe) from Debian unstable (main)

2012-08-07 Thread Micah Gersten
Sorry, this is blocked on the blacklist entry.  I have to see if there's
an actual problem in Debian with reusing the same orig tarball
versioning years after it's rolled off of ftp.debian.org.  If it is,
it's an RC bug in Debian and will get fixed there, then we can sync once
it's fixed there, if it's not, then we'll look into a fakesync.

** Changed in: zope-quotafolder (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: zope-quotafolder (Ubuntu)
   Status: In Progress = Triaged

** Changed in: zope-quotafolder (Ubuntu)
 Assignee: (unassigned) = Micah Gersten (micahg)

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

Title:
  Sync zope-quotafolder 1:0.1.1-1 (universe) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zope-quotafolder/+bug/1033720/+subscriptions

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


[Bug 993187] Re: ubuntu 12.04 completely freezes frequently.

2012-08-07 Thread Hein
Please not that this bug report seems to become a dead end. To many
'almost' the same problems.

When reporting bugs, it's better to be as specific as possible about the
bug and the hardware on which this bug shows.

For those who have this:
-  Complete freezes with only mouse pointer still moving
-  Multiple times per hour
-  Easily to invoke by using Firefox or Chromium webbrower or playing video

And having:
-  Nvidia proprietary driver installed (the one provided by Ubuntu as 
recommended)
-  A Nvidia Geforce card with shared memory, using a laptop
-  Standard kernel (3.2) provided by Ubuntu installed 

And:
Not suffering from this bug when de-activating the Nvidia driver and using the 
Noveau driver instead.

You are kindly invited to join me at bug # 1033263 if your problem is
exactly the same as described above. All others are perhaps better off
to exactly (re)formulate their problem as specific as possible and
report their problem as a seperate bug.

First question from a kernel developer is to try kernel 3.5 with the
above problem - does this solve the problem?

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

Title:
  ubuntu 12.04 completely freezes frequently.

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

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


[Bug 1000146] Re: [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not working

2012-08-07 Thread AceLan Kao
Gary, then, everything looks good.
The quirk for your machine is matched, so that you have 
/sys/class/backlight/eeepc-wmi directory.
And the functions provided by eeepc-wmi are working, so that you can turn 
on/off your screen by bl_blank.

I need more info to know the problem you have.
1. Does it report any keyevents if using sudo showkey and press the display 
toggle key
2. Which message in the dmesg Disabling ACPI video driver or Backlight 
controlled by ACPI video driver
3. Do you have /sys/class/backlight/acpi_video0/ in your system when using 
the patched kernel I gave you.
Thanks.

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

Title:
  [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not
  working

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

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


[Bug 1000146] Re: [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not working

2012-08-07 Thread AceLan Kao
Please use the kernel I gave you to do the test.

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

Title:
  [ASUS X101CH and 1015CX] the hotkey to turn on/off the display is not
  working

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

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


[Bug 986835] Re: Cursor jumps to left/right side of screen when moving from one monitor to another

2012-08-07 Thread tylerthemiler
Same problem, auto-hide doesn't fix it. Nvidia graphics card. Total
breaks my user experience, switching back to windows until fixed ,

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

Title:
  Cursor jumps to left/right side of screen when moving from one monitor
  to another

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-2d/+bug/986835/+subscriptions

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


[Bug 1033825] [NEW] Incorrect greyed out selections in Gnome Fallback

2012-08-07 Thread Ron O
Public bug reported:

Ubuntu 12.04 amd64 logging into Gnome Classic environment- not Unity.

Context menus on the desktop have options greyed out that should not be,
at least if greyed-out still means a choice that is not a current
option.

For example, if I create a new folder on the desktop then right click
it, there are selections in the context menu such as rename, move to
trash, and others that are greyed out, but if I click on them, they work
anyway (as I think they should). Attached screenshot shows a new folder
that has been right-clicked displaying the inaccurate context menu.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: context inaccurate menu

** Description changed:

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

Title:
  Incorrect greyed out selections in Gnome Fallback

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

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


[Bug 1033825] Re: Incorrect greyed out selections in Gnome Fallback

2012-08-07 Thread Ron O
I don't see my screenshot attachment, so here it is again.

** Attachment added: incorrect greyed selections.png
   
https://bugs.launchpad.net/ubuntu/+bug/1033825/+attachment/3251046/+files/incorrect%20greyed%20selections.png

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

Title:
  Incorrect greyed out selections in Gnome Fallback

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

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


[Bug 967174] Re: Reboot fails in Ubuntu

2012-08-07 Thread Jayeeta Bandyopadhyay
** Changed in: igloocommunity
   Importance: Medium = Wishlist

** Changed in: igloocommunity
Milestone: 2012.07 = None

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

Title:
  Reboot fails in Ubuntu

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

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


[Bug 1017768] Re: 8564:4000 Etron USB-3 not working

2012-08-07 Thread Christopher M. Penalver
Sergei Delov, apport has not appeared to collect the necessary information. 
Could you please file a new report by executing the following at a terminal, 
subscribe me to it, and we can mark it a duplicate:
ubuntu-bug linux

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

Title:
  8564:4000 Etron USB-3 not working

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

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


[Bug 947697] Re: Atheros AR9285 Wireless on Ubuntu 12.04 is slow, unstable and has a weak signal.

2012-08-07 Thread Christopher M. Penalver
gui_link_mac, this bug was reported a while ago and there hasn't been
any activity in it recently. We were wondering if this is still an
issue? If so, could you please test for this with the latest development
release of Ubuntu? ISO CD images are available from
http://cdimage.ubuntu.com/releases/ .

If it remains an issue, could you please run the following command in
the development release from a Terminal
(Applications-Accessories-Terminal), as it will automatically gather
and attach updated debug information to this report:

apport-collect -p linux replace-with-bug-number

Also, could you please test the latest upstream kernel available following 
https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow additional 
upstream developers to examine the issue. Please do not test the kernel in the 
daily folder, but the one all the way at the bottom. Once you've tested the 
upstream kernel, please comment on which kernel version specifically you tested 
and remove the tag:
needs-upstream-testing

This can be done by clicking on the yellow pencil icon next to the tag located 
at the bottom of the bug description and deleting the text:
needs-upstream-testing

If this bug is fixed in the mainline kernel, please add the following tags:
kernel-fixed-upstream
kernel-fixed-upstream-VERSION-NUMBER

where VERSION-NUMBER is the version number of the kernel you tested.

If the mainline kernel does not fix this bug, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-VERSION-NUMBER

where VERSION-NUMBER is the version number of the kernel you tested.

If you are unable to test the mainline kernel, please comment as to why 
specifically you were unable to test it and add the following tags:
kernel-unable-to-test-upstream
kernel-unable-to-test-upstream-VERSION-NUMBER

where VERSION-NUMBER is the version number of the kernel you tested.

Please let us know your results. Thank you for your understanding.

Helpful Bug Reporting Links:
https://help.ubuntu.com/community/ReportingBugs#Bug_Reporting_Etiquette
https://help.ubuntu.com/community/ReportingBugs#A3._Make_sure_the_bug_hasn.27t_already_been_reported
https://help.ubuntu.com/community/ReportingBugs#Adding_Apport_Debug_Information_to_an_Existing_Launchpad_Bug
https://help.ubuntu.com/community/ReportingBugs#Adding_Additional_Attachments_to_an_Existing_Launchpad_Bug

** This bug is no longer a duplicate of bug 773154
   168c:002b Atheros AR9285 extremely slow  unstable

** Project changed: wireless-drivers = linux

** Package changed: ubuntu = linux (Ubuntu)

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

** Changed in: linux (Ubuntu)
   Status: Confirmed = Incomplete

** Tags removed: ar9285 ath9k atheros wireless
** Tags added: kernel-wifi needs-kernel-logs needs-upstream-testing

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

Title:
  Atheros AR9285 Wireless on Ubuntu 12.04 is slow, unstable and has a
  weak signal.

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

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


[Bug 773154] Re: 168c:002b Atheros AR9285 extremely slow unstable

2012-08-07 Thread Christopher M. Penalver
** Changed in: linux (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  168c:002b Atheros AR9285 extremely slow  unstable

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

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


[Bug 1033835] [NEW] package indicator-weather 11.11.28-0ubuntu1.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-07 Thread ohosys
Public bug reported:

crash weather applet and some sistem tray icon, sometime at login
weather icon or megacloud icon crash and the system show the error there
not system tray.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: indicator-weather 11.11.28-0ubuntu1.2
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic-pae 3.2.24
Uname: Linux 3.2.0-29-generic-pae i686
ApportVersion: 2.0.1-0ubuntu12
AptOrdering:
 openssh-server: Install
 ssh-import-id: Install
 indicator-weather: Configure
 openssh-server: Configure
 ssh-import-id: Configure
Architecture: i386
Date: Mon Aug  6 22:10:09 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
PackageArchitecture: all
SourcePackage: indicator-weather
Title: package indicator-weather 11.11.28-0ubuntu1.2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: indicator-weather (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 precise

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

Title:
  package indicator-weather 11.11.28-0ubuntu1.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-weather/+bug/1033835/+subscriptions

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


  1   2   3   4   5   6   7   8   9   10   >