[Bug 1165841] Re: package openvpn 2.2.1-8ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 7

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

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

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

Title:
  package openvpn 2.2.1-8ubuntu1.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/1165841/+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 1163648] Re: package libservlet2.5-java (not installed) failed to install/upgrade: short read on buffer copy for backend dpkg-deb during `./usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf'

2013-04-10 Thread Yolanda Robla
Thanks for reporting this
Seems that you are having a problem of corrupted downloads.

Can you take a look at this post and check if that works?
http://askubuntu.com/questions/5133/how-to-recover-dpkg-from-corrupted-downloads

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

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

Title:
  package libservlet2.5-java (not installed) failed to install/upgrade:
  short read on buffer copy for backend dpkg-deb during
  `./usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat6/+bug/1163648/+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 1165928] Re: package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2013-04-10 Thread Yolanda Robla
Can you try these commands in a terminal?

sudo apt-get update
sudo apt-get upgrade

This should solve the problem

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

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

Title:
  package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1165928/+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 1162477] Re: typo in nagios.cfg : cfg_drr=...

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

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

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

Title:
  typo in nagios.cfg : cfg_drr=...

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/1162477/+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 1162119] Re: nagios not expanding wildcards correctly

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

** Changed in: nagios3 (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  nagios not expanding wildcards correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios3/+bug/1162119/+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 1166841] Re: lxc-create fails if LANG != en_GB.UTF-8

2013-04-10 Thread James Hunt
What about the C locale? This fails as well.

Maybe the ubuntu template could check LANG. If not set, or not in
$(locale -a) or /usr/share/i18n/SUPPORTED, revert to en_US.UTF-8?

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

Title:
  lxc-create fails if LANG != en_GB.UTF-8

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

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


[Bug 1159748] Re: Ramdom apache2 crash in Ubuntu 12.04 (libpthread-2.15.so)

2013-04-10 Thread Juan Pablo Marco Cardona
Hello again,
finally i find the cause of this issue.

The problem happens every time logrotate rotate the apache logs.

cat /etc/logrotate.d/apache2

/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
/etc/init.d/apache2 reload  /dev/null
endscript
prerotate
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi; \
endscript
}

In fact, every time a /etc/init.d/apache2 reload is run, the apache2 dies.
Then, executing /etc/init.d/apache2 restart instead every time logrotate 
rotate the apache2 logs, should fix the problem.

Anyway, this is just a workaround, because the apache shouldn't die
every time a reload is executed, right?

Thanks in advance

Regards.
P.D: Maybe this bugs are related?
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/669005
https://issues.apache.org/bugzilla/show_bug.cgi?id=50309



** Bug watch added: Apache Software Foundation Bugzilla #50309
   http://issues.apache.org/bugzilla/show_bug.cgi?id=50309

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

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

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

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


[Bug 1109209] Re: [SRU] python-tx-tftp to Precise

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/precise/python-tx-tftp
/precise-proposed

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

Title:
  [SRU] python-tx-tftp to Precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-tx-tftp/+bug/1109209/+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 1029430] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Sergio, or anyone else affected,

Accepted nova into quantal-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/nova/2012.2.3-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  KVM guests networking issues with no virbr0 and with vhost_net kernel
  modules loaded

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1029430/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted cinder into quantal-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/cinder/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: cinder (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

** Changed in: nova (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted nova into quantal-proposed. The package will build now and be
available at http://launchpad.net/ubuntu/+source/nova/2012.2.3-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: glance (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted glance into quantal-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/glance/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: keystone (Ubuntu Quantal)
   Status: Confirmed = Fix Committed

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted keystone into quantal-proposed. The package will build now and
be available at
http://launchpad.net/ubuntu/+source/keystone/2012.2.3+stable-20130206-82c87e56-0ubuntu2
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Re: Meta bug for tracking Openstack 2012.2.3 Stable Update

2013-04-10 Thread Dave Walker
Marking back to confirmed, as quantum 2012.2.3-0ubuntu1 needs to be
superseded by quantum 2012.2.3-0ubuntu1 (as identified earlier in the
report.)  Thanks.

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1116671] Please test proposed package

2013-04-10 Thread Dave Walker
Hello Adam, or anyone else affected,

Accepted quantum into quantal-proposed. The package will build now and
be available at
http://launchpad.net/ubuntu/+source/quantum/2012.2.3-0ubuntu2 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  Meta bug for tracking Openstack 2012.2.3 Stable Update

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/1116671/+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 1167305] [NEW] overlayfs shows some files as ?????

2013-04-10 Thread Matthias Gehre
Public bug reported:

1. I mounted an overlayfs with uppderdir=/a, lowerdir=/b to /c
2. I copied fileA to the upperdir
3a. Did 'ls -l /a' Output is
-rwxrwxrwx 1 root root 22153090041 Jan 11 22:45 fileA
3b. Did 'ls -l /b' Output is empty.
3c. Did 'ls -l /c'. Output is
-? ? ??  ?? fileA
4. Did 'stat /c/fileA', Output is:
stat: cannot stat `fileA': No such file or directory

Is overlayfs broken? Did I do something wrong?
There is nothing in dmesg. Kernel is 3.5.0-26-generic #42.

How can I debug this?
I can do fairly advanced specific kernel debugging/recompiling with patches 
etc, but I don't know where to start.

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

** Description changed:

  1. I mounted an overlayfs with uppderdir=/a, lowerdir=/b to /c
  2. I copied fileA to the upperdir
  3a. Did 'ls -l /a' Output is
  -rwxrwxrwx 1 root root 22153090041 Jan 11 22:45 fileA
  3b. Did 'ls -l /b' Output is empty.
- 3c. Did 'ls -l /c'. Output is 
- total 90946868
+ 3c. Did 'ls -l /c'. Output is
  -? ? ??  ?? fileA
  4. Did 'stat /c/fileA', Output is:
  stat: cannot stat `fileA': No such file or directory
  
  Is overlayfs broken? Did I do something wrong?
  There is nothing in dmesg. Kernel is 3.5.0-26-generic #42.
  
  How can I debug this?
  I can do fairly advanced specific kernel debugging/recompiling with patches 
etc, but I don't know where to start.

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

Title:
  overlayfs shows some files as ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1167305/+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 1167305] Re: overlayfs shows some files as ?????

2013-04-10 Thread Matthias Gehre
** Changed in: lxc (Ubuntu)
   Status: New = Invalid

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

** No longer affects: lxc (Ubuntu)

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

** No longer affects: linux

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

Title:
  overlayfs shows some files as ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1167305/+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 117736] Re: pam_mount unable to unmount needs root priv

2013-04-10 Thread billdangerous
The bug is still present.

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

Title:
  pam_mount unable to unmount needs root priv

To manage notifications about this bug go to:
https://bugs.launchpad.net/pam/+bug/117736/+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 1130809] Re: lxc scripts break when user has PYTHONPATH set

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~gz/ubuntu/raring/juju/0.7

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

Title:
  lxc scripts break when user has PYTHONPATH set

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1130809/+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 1166841] Re: lxc-create fails if LANG != en_GB.UTF-8

2013-04-10 Thread Serge Hallyn
** Changed in: lxc (Ubuntu)
   Status: Invalid = Triaged

** Summary changed:

- lxc-create fails if LANG != en_GB.UTF-8
+ lxc-create fails if LANG is not valid

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

Title:
  lxc-create fails if LANG is not valid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1166841/+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 1167337] [NEW] nfs4 mounts hang in bootup with upstart starting rpc.gssd

2013-04-10 Thread stef
Public bug reported:

System 12.04.2 32 and 64bit. nfs4 with krb5/ldap authentication.
No network-manager!

A nfs4 mount results in a system hang, if rpc.gssd is started before rpcbind 
(portmap) and the filesystem is defined as:
nfs4sec=krb5
in /etc/init/gssd.conf the start condition is
   start on (started portmap
  or mounting TYPE=nfs4 OPTIONS=*sec*krb5*)

So when the file system is defined as:   nfs4   sec=krb5
upstart does not wait on portmap (rpcbind) and starts sometimes rpc.gssd before 
rpcbind. This lead to mounting errors and prevents the further bootup.

My solution at the moment is to define the file systems as:
... nfs  vers=4,sec=krb5...

which works at the moment.
(I have also added 
NEED_GSSD=yes
NEED_IDMAPD=yes
to /etc/defaults/nfs-common

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


** Tags: krb5 nfs4 upstart

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

Title:
  nfs4 mounts hang in bootup with upstart starting rpc.gssd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/1167337/+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 1167337] Re: nfs4 mounts hang in bootup with upstart starting rpc.gssd

2013-04-10 Thread stef
I have to apologize, but the bug is not autofs5 related.
Its only nfs4 related!

Stef

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

Title:
  nfs4 mounts hang in bootup with upstart starting rpc.gssd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs5/+bug/1167337/+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 1158465] Re: [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and 13.04)

2013-04-10 Thread David Medberry
Resolved had to do with the PEBCAK and the comment I hid. I'm hoping
this SRU is still under way.

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1130809] Re: lxc scripts break when user has PYTHONPATH set

2013-04-10 Thread Martin Packman
** Changed in: juju (Ubuntu)
   Status: Triaged = In Progress

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

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

Title:
  lxc scripts break when user has PYTHONPATH set

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1130809/+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 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-10 Thread Jacek Nykis
** Also affects: nova
   Importance: Undecided
   Status: New

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

Title:
  nova-network should increase nf_conntrack_max

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1167073/+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 1167073] Re: nova-network should increase nf_conntrack_max

2013-04-10 Thread Jacek Nykis
We hit the same issue on our compute nodes. The limit was also 65536 and
it was not high enough for our use case.

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

Title:
  nova-network should increase nf_conntrack_max

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1167073/+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 1166870] Re: lxc-clone fails silently

2013-04-10 Thread Launchpad Bug Tracker
This bug was fixed in the package lxc - 0.9.0-0ubuntu2

---
lxc (0.9.0-0ubuntu2) raring; urgency=low

  * 0002-lxc-functions-safe-in-dash: stop lxc-clone from silently failing.
(LP: #1166870)
 -- Serge Hallyn serge.hal...@ubuntu.com   Tue, 09 Apr 2013 12:38:02 -0500

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

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

Title:
  lxc-clone fails silently

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1166870/+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 1167512] [NEW] nova-network fails to start if bindir is not set

2013-04-10 Thread LaMont Jones
Public bug reported:

The setup:
- grizzly rc2 upgraded to grizzly (1:2013.1-0ubuntu1~cloud0), running on 
precise.
- fresh install configured based on what appears to be a folsom howto

Starting nova-network results in the following in the nova-network log:

...
2013-04-10 08:59:18.788 WARNING nova.db.sqlalchemy.api 
[req-8094076e-9813-42c4-968e-9dcb1f640659 69e6b81d4dbd41669313d522df780566 
fdd2025e9254488dbe52919938c96edf] Change will make usage less than 0 for the 
following resources: ['fixed_ips']
2013-04-10 08:59:19.098 ERROR nova.openstack.common.rpc.amqp 
[req-8094076e-9813-42c4-968e-9dcb1f640659 69e6b81d4dbd41669313d522df780566 
fdd2025e9254488dbe52919938c96edf] Exception during message handling
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Traceback 
(most recent call last):
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/rpc/amqp.py, line 430, 
in _process_data
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp rval = 
self.proxy.dispatch(ctxt, version, method, **args)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/rpc/dispatcher.py, 
line 133, in dispatch
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp return 
getattr(proxyobj, method)(ctxt, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/floating_ips.py, line 187, in 
deallocate_for_instance
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
super(FloatingIP, self).deallocate_for_instance(context, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 550, in 
deallocate_for_instance
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self.deallocate_fixed_ip(context, fixed_ip['address'], host=host)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 243, in 
deallocate_fixed_ip
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp address)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 938, in 
deallocate_fixed_ip
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self._teardown_network_on_host(context, network)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/manager.py, line 1630, in 
_teardown_network_on_host
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
self.driver.update_dhcp(elevated, dev, network)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 938, in 
update_dhcp
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
restart_dhcp(context, dev, network_ref)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/openstack/common/lockutils.py, line 
242, in inner
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp retval = 
f(*args, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 1048, in 
restart_dhcp
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
_execute(*cmd, run_as_root=True)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/network/linux_net.py, line 1141, in 
_execute
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp return 
utils.execute(*cmd, **kwargs)
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp   File 
/usr/lib/python2.7/dist-packages/nova/utils.py, line 239, in execute
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp cmd=' 
'.join(cmd))
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp 
ProcessExecutionError: Unexpected error while running command.
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Command: sudo 
nova-rootwrap /etc/nova/rootwrap.conf env CONFIG_FILE=[/etc/nova/nova.conf] 
NETWORK_ID=1 dnsmasq --strict-order --bind-interfaces --conf-file= 
--domain=novalocal --pid-file=/var/lib/nova/networks/nova-eth0.pid 
--listen-address=172.28.20.1 --except-interface=lo 
--dhcp-range=set:private,172.28.20.2,static,120s --dhcp-lease-max=1024 
--dhcp-hostsfile=/var/lib/nova/networks/nova-eth0.conf 
--dhcp-script=/usr/lib/python2.7/dist-packages/bin/nova-dhcpbridge 
--leasefile-ro
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Exit code: 3
2013-04-10 08:59:19.098 5003 TRACE nova.openstack.common.rpc.amqp Stdout: ''

[Bug 1164414] Re: libvirtd polling /etc/modprobe.d every second

2013-04-10 Thread Serge Hallyn
Marking invalid against libvirt, since libvirt is simply responding to
requests from virt-manager.

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

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

Title:
  libvirtd polling /etc/modprobe.d every second

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

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


[Bug 1163218] Re: Typo in nova-cells upstart script

2013-04-10 Thread Serge Hallyn
Note, this bug is in

http://ubuntu-
cloud.archive.canonical.com/ubuntu/pool/main/n/nova/nova_2013.1-0ubuntu1~cloud0.dsc

but does not exist in precise-updates.

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

Title:
  Typo in nova-cells upstart script

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

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


[Bug 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
** Changed in: maas (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

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

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


[Bug 509647] Re: [MIR] lxc

2013-04-10 Thread Stéphane Graber
Hi Seth,

I just wanted to comment on the python side of things.

I'm the author of the binding and sadly it's now used by some of the
very well used bits of LXC (lxc-ls and lxc-start-ephemeral to list the
most populars), so I don't think building without this is really an
option for us.

However I'm very very interested in having those issues resolved. To be
clear, this binding is probably the first bit of C code that I actually
wrote from scratch and released and so I certainly expected the memory
management to be mostly crap. We've fixed a bunch of issues already but
your comments are really useful to fix the rest of those.

I'll try to set aside some time tomorrow to poke at those and will
provide a patch here for Serge and you (if you're interested) to review.

The trick with those bindings and the way LXC work is that it's almost
impossible to run those through valgrind to detect leaks so we almost
entirely depend on the eyes of our reviewers and even though we're
pretty strict on code reviews nowadays, there's only so much you can
find on thousands of line long diffs ;)

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

Title:
  [MIR] lxc

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

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


[Bug 1159796] Re: package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 128

2013-04-10 Thread Serge Hallyn
Thanks.  Given that info, I will mark this invalid - not meaning you
didnt' have a problem, but meaning we can't reproduce.

If you have further problems, please do open a bug against update-
manager.

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

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

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

Title:
  package samba 2:3.6.3-2ubuntu2.4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 128

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debconf/+bug/1159796/+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 1156240] Re: package bacula-director-pgsql 5.2.5-0ubuntu6.2 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2013-04-10 Thread Serge Hallyn
Marking invalid as the reproducer has been fixed.

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

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

Title:
  package bacula-director-pgsql 5.2.5-0ubuntu6.2 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bacula/+bug/1156240/+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-1305-juju-charmstore-feedback-loops] Add User Feedback loops and Social Networking to Charm Store Charm Pages

2013-04-10 Thread Seth Arnold
Blueprint changed by Seth Arnold:

Whiteboard set to:
sarnold would like to know roughly how many people have deployed his
charms and would like to know roughly how many have upgraded the charm
recently

-- 
Add User Feedback loops and Social Networking to Charm Store Charm Pages
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1305-juju-charmstore-feedback-loops

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


[Bug 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
This also contains a small change to 00List to fix previous changelog
entry and not have its patch reverted.

** Patch removed: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3631784/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

** Patch added: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638900/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
** Patch removed: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638900/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Adam Stokes
This also contains a fix from the previous changelog to modify an
apparmor profile. Patch was removed and applied directly to debian
/apparmor-profile.dhcpd

** Patch added: isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1069570/+attachment/3638941/+files/isc-dhcp_4.1.ESV-R4-0ubuntu5.8.precise.debdiff

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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 1069570] Re: 1 MAC Address, two IPs - DNS is out of sync with DHCP leases databases, I think...

2013-04-10 Thread Dave Chiluk
The above debdiff resolves the 00list issues for bug 
https://bugs.launchpad.net/ubuntu/+source/isc-dhcp/+bug/1057358

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

Title:
  1 MAC Address, two IPs - DNS is out of sync with DHCP leases
  databases, I think...

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1069570/+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-1305-juju-charmstore-feedback-loops] Add User Feedback loops and Social Networking to Charm Store Charm Pages

2013-04-10 Thread Matt Griffin
Blueprint changed by Matt Griffin:

Whiteboard changed:
- sarnold would like to know roughly how many people have deployed his
- charms and would like to know roughly how many have upgraded the charm
- recently
+ Benefits to charm developers
+ - sarnold would like to know roughly how many people have deployed his charms 
(quantitative feedback)
+ - would like to know roughly how many have upgraded the charm recently
+ - can be a measure of user satisfaction/interest with a charm

-- 
Add User Feedback loops and Social Networking to Charm Store Charm Pages
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1305-juju-charmstore-feedback-loops

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


[Bug 1167660] [NEW] maas-cluster-controller.postinst failing with an unterminated sed error

2013-04-10 Thread Diogo Matsubara
Public bug reported:

maas-cluster-controller package is failing to install with the following
error:

Setting up maas-cluster-controller (0.2+1.2+bzr1373+dfsg-0+1373+168~ppa0~quantal
1) ...
sed: -e expression #1, char 23: unterminated `s' command
dpkg: error processing maas-cluster-controller (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for libc-bin ...

I added set -x to the /var/lib/dpkg/info/maas-cluster-controller.postint
script and re-run the command. Below is the output.

Notice there are two bugs here:

 + RET= http://192.168.21.5/MAAS which contains an leading whitespace

and the bug that's causing the error on line 86 of maas-cluster-
controller.postinst:

sed -i s|MAAS_URL=.*|MAAS_URL=$RET|
/etc/maas/maas_cluster.conf

which works when it's like: sed -i s|MAAS_URL=.*|MAAS_URL='$RET'|
/etc/maas/maas_cluster.conf

ubuntu@autopkgtest:~$ sudo apt-get install maas-cluster-controller  
Reading package lists... Done
Building dependency tree   
Reading state information... Done
maas-cluster-controller is already the newest version.
The following packages were automatically installed and are no longer required:
  linux-headers-3.5.0-22 linux-headers-3.5.0-22-generic
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up maas-cluster-controller 
(0.2+1.2+bzr1373+dfsg-0+1373+168~ppa0~quantal1) ...
+ . /usr/share/debconf/confmodule
+ [ !  ]
+ PERL_DL_NONLAZY=1
+ export PERL_DL_NONLAZY
+ [  ]
+ exec /usr/share/debconf/frontend 
/var/lib/dpkg/info/maas-cluster-controller.postinst configure 
+ . /usr/share/debconf/confmodule
+ [ ! 1 ]
+ [ -z  ]
+ exec
+ [  ]
+ exec
+ DEBCONF_REDIR=1
+ export DEBCONF_REDIR
+ db_version 2.0
+ _db_cmd VERSION 2.0
+ _db_internal_IFS= 

+ IFS= 
+ printf %s\n VERSION 2.0
+ IFS= 

+ IFS=
 read -r _db_internal_line
+ RET=2.0
+ return 0
+ [ configure = configure ]
+ [ -z  ]
+ create_log_dir
+ [ ! -d /var/lib/maas ]
+ [ ! -d /var/log/maas/oops ]
+ chown -R maas:maas /var/lib/maas/
+ chown -R maas:maas /var/log/maas
+ chmod -R 775 /var/log/maas/oops
+ configure_maas_tgt
+ local tgtcfg=/etc/tgt/targets.conf
+ [ -d /etc/tgt/conf.d/ ]
+ mkdir -p /etc/tgt/conf.d/ /var/lib/maas/ephemeral/
+ ln -sf /var/lib/maas/ephemeral/tgt.conf /etc/tgt/conf.d/maas.conf
+ [ configure = configure ]
+ [ -z  ]
+ dpkg --compare-versions  lt 0.1+bzr1239+dfsg-0ubuntu1
+ create_log_dir
+ [ ! -d /var/lib/maas ]
+ [ ! -d /var/log/maas/oops ]
+ chown -R maas:maas /var/lib/maas/
+ chown -R maas:maas /var/log/maas
+ chmod -R 775 /var/log/maas/oops
+ db_get maas-cluster-controller/maas-url
+ _db_cmd GET maas-cluster-controller/maas-url
+ _db_internal_IFS= 

+ IFS= 
+ printf %s\n GET maas-cluster-controller/maas-url
+ IFS= 

+ IFS=
 read -r _db_internal_line
+ RET= http://192.168.21.5/MAAS
+ return 0
+ [ -n  http://192.168.21.5/MAAS ]
+ sed -i s|MAAS_URL=.*|MAAS_URL= http://192.168.21.5/MAAS| 
/etc/maas/maas_cluster.conf
sed: -e expression #1, char 23: unterminated `s' command
dpkg: error processing maas-cluster-controller (--configure):
 subprocess installed post-installation script returned error exit status 1
No apport report written because MaxReports is reached already
  Errors were 
encountered while processing:
 maas-cluster-controller
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

** Branch linked: lp:~matsubara/maas/fix-maas-cluster-controller-sed

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

Title:
  maas-cluster-controller.postinst failing with an unterminated sed
  error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1167660/+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 1120280] Re: logrotate complains about error: mixmaster:7 unknown option 'su' -- ignoring line

2013-04-10 Thread James Teh
I'm also seeing this with mailman:
/etc/cron.daily/logrotate:
error: mailman:2 unknown option 'su' -- ignoring line
error: mailman:2 unexpected text
error: mailman:16 unknown option 'su' -- ignoring line
error: mailman:16 unexpected text
error: mailman:30 unknown option 'su' -- ignoring line
error: mailman:30 unexpected text
error: mailman:44 unknown option 'su' -- ignoring line
error: mailman:44 unexpected text
error: mailman:58 unknown option 'su' -- ignoring line
error: mailman:58 unexpected text

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

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

Title:
  logrotate complains about error: mixmaster:7 unknown option 'su' --
  ignoring line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mailman/+bug/1120280/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread OpenStack Hudson
** Changed in: nova
   Status: Confirmed = In Progress

** Changed in: nova
 Assignee: Michael H Wilson (geekinutah) = wangpan (hzwangpan)

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread wangpan
** Changed in: nova
 Assignee: wangpan (hzwangpan) = (unassigned)

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 985489] Re: nova-compute stops processing compute.$HOSTNAME occasionally on libvirt

2013-04-10 Thread wangpan
Sorry for Michael H Wilson, I commited a patch relative to this bug, so
OpenStack Hudson automatically assign it to me, but the patch can't
reslove this bug eventually, and I can't reassign it to you now, you may
need to get it again.

** Changed in: nova
   Status: In Progress = Confirmed

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

Title:
  nova-compute stops processing compute.$HOSTNAME occasionally on
  libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/985489/+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 1120280] Re: logrotate complains about error: mixmaster:7 unknown option 'su' -- ignoring line

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

** Changed in: mailman (Ubuntu)
   Status: New = Confirmed

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

Title:
  logrotate complains about error: mixmaster:7 unknown option 'su' --
  ignoring line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mailman/+bug/1120280/+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 1158465] Re: [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and 13.04)

2013-04-10 Thread Adam Conrad
Hello Ben, or anyone else affected,

Accepted walinuxagent into precise-proposed. The package will build now
and be available at
http://launchpad.net/ubuntu/+source/walinuxagent/1.3.2-0ubuntu1~12.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: walinuxagent (Ubuntu Precise)
   Status: In Progress = Fix Committed

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

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1158465] Please test proposed package

2013-04-10 Thread Adam Conrad
Hello Ben, or anyone else affected,

Accepted walinuxagent into quantal-proposed. The package will build now
and be available at
http://launchpad.net/ubuntu/+source/walinuxagent/1.3.2-0ubuntu1~12.10.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  [SRU] update Windows Azure WALinuxAgent to 1.3.2 (12.04.2, 12.10 and
  13.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1158465/+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 1090593] Re: D.ROOT-SERVERS.NET changing January 3rd 2013

2013-04-10 Thread Anand Kumria
As noted in http://d.root-servers.org/renumber.html, the change will be
done on the 3rd Jan and the old IP address will be retried 6 months
later.

Could we get proposed-update packages before the 3rd Jun (when the old
IP will stop responding)?

I'm presuming that the Ubuntu guys are waiting until the start of May so
that 8.04 LTS does not need new packages.

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

Title:
   D.ROOT-SERVERS.NET changing January 3rd 2013

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1090593/+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 1100360] Re: [raring][sandybridge-m-gt2+] GPU lockup IPEHR: 0x0b160001 IPEHR: 0x0b140001

2013-04-10 Thread Daniel BRUN-PICARD
*** This bug is a duplicate of bug 1041790 ***
https://bugs.launchpad.net/bugs/1041790

The bug happened at starting of Thunderbird or Firfox immediately after
login to a user session. This appeared with Uuntu 12.10, from February
and disappeared after upgrading to Ubuntu 13.04. appeared newly
yesterday after automatic update by Update Manager.

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

Title:
  [raring][sandybridge-m-gt2+] GPU lockup  IPEHR: 0x0b160001 IPEHR:
  0x0b140001

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1100360/+subscriptions

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


[Bug 1167149] [NEW] nvidia-310 310.32-0ubuntu2: nvidia-310 kernel module failed to build

2013-04-10 Thread wojtek
Public bug reported:

I've just ugraded to newest packages hoping issues with nvidia drivers
are resolved. They aren't.

ProblemType: Package
DistroRelease: Ubuntu 13.04
Package: nvidia-310 310.32-0ubuntu2
ProcVersionSignature: Ubuntu 3.8.0-17.27-generic 3.8.6
Uname: Linux 3.8.0-17-generic x86_64
ApportVersion: 2.9.2-0ubuntu5
Architecture: amd64
DKMSKernelVersion: 3.8.0-17-generic
Date: Tue Apr  9 18:44:12 2013
InstallationDate: Installed on 2009-11-16 (1240 days ago)
InstallationMedia: Kubuntu 9.10 Karmic Koala - Release amd64 (20091027)
MarkForUpload: True
PackageVersion: 310.32-0ubuntu2
SourcePackage: nvidia-graphics-drivers-310
Title: nvidia-310 310.32-0ubuntu2: nvidia-310 kernel module failed to build
UpgradeStatus: Upgraded to raring on 2013-03-16 (24 days ago)
modified.conffile..etc.modprobe.d.nvidia.310.hybrid.conf: [deleted]

** Affects: nvidia-graphics-drivers-310 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package need-duplicate-check raring third-party-packages

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

Title:
  nvidia-310 310.32-0ubuntu2: nvidia-310 kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-310/+bug/1167149/+subscriptions

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


[Bug 1166876] Re: linux: 3.5.0-28.47 -proposed tracker

2013-04-10 Thread Brad Figg
** Changed in: kernel-sru-workflow/prepare-package
   Status: In Progress = 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/1166876

Title:
  linux: 3.5.0-28.47 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1166876/+subscriptions

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


[Bug 1130709] Re: python-apt needs to be multiarched

2013-04-10 Thread Chris Halse Rogers
Hello Chow, or anyone else affected,

Accepted python3-defaults into precise-proposed. The package will build
now and be available at
http://launchpad.net/ubuntu/+source/python3-defaults/3.2.3-0ubuntu1.1 in
a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: python3-defaults (Ubuntu Precise)
   Status: In Progress = Fix Committed

** Changed in: python-apt (Ubuntu Precise)
   Status: In Progress = Fix Committed

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

Title:
  python-apt needs to be multiarched

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

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


[Bug 1130709] Please test proposed package

2013-04-10 Thread Chris Halse Rogers
Hello Chow, or anyone else affected,

Accepted python-apt into precise-proposed. The package will build now
and be available at http://launchpad.net/ubuntu/+source/python-
apt/0.8.3ubuntu7.1 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

Title:
  python-apt needs to be multiarched

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

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


[Bug 1098489] Re: [gen4] Corruption in Chrome omni bar results using Intel SNA

2013-04-10 Thread Timo Jyrinki
*** This bug is a duplicate of bug 1098334 ***
https://bugs.launchpad.net/bugs/1098334

** This bug has been marked a duplicate of bug 1098334
   Font corruption in Chromium tab bar using Intel SNA

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

Title:
  [gen4] Corruption in Chrome omni bar results using Intel SNA

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1098489/+subscriptions

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


[Bug 1065066] Re: ACPI Error: No Handler for Region

2013-04-10 Thread Alex Hung
*** This bug is a duplicate of bug 1143312 ***
https://bugs.launchpad.net/bugs/1143312

** This bug has been marked a duplicate of bug 1143312
   HP ENVY 4 Sleekbook - Errors detected when running FWTS sleep tests

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

Title:
  ACPI Error: No Handler for Region

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

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


[Bug 1064490] Re: USB Gaming Mouse 04d9:a078 not working

2013-04-10 Thread Urajimiru Erirofu
Ubuntu 13.04 (Beta 2).
Bug still persists. Recompiling kernel mentioned in Bug Description section 
resolves the promlem but it's too geeky way to make mouse work properly.

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

Title:
  USB Gaming Mouse 04d9:a078 not working

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

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


[Bug 1167153] Derivative package tracking bug

2013-04-10 Thread Brad Figg
This tracking bug was opened to be worked from linux-3.5.0-28.47 update
(bug 1166876)

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

Title:
  linux-ti-omap4: version to be filled -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1167153/+subscriptions

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


[Bug 1167153] [NEW] linux-ti-omap4: version to be filled -proposed tracker

2013-04-10 Thread Brad Figg
Public bug reported:

This bug is for tracking the version to be filled upload package. This
bug will contain status and testing results related to that upload.

For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
kernel-stable-Prepare-package-start:Wednesday, 10. April 2013 06:00 UTC
kernel-stable-phase:Prepare
kernel-stable-phase-changed:Wednesday, 10. April 2013 06:00 UTC
kernel-stable-master-bug:1166876

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: ubuntu-armel-kernel (ubuntu-armel-kernel)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Platform QA Team (canonical-platform-qa)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/upload-to-ppa
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: ubuntu-armel-kernel (ubuntu-armel-kernel)
 Status: New

** Affects: linux-ti-omap4 (Ubuntu)
 Importance: Medium
 Status: New

** Affects: linux-ti-omap4 (Ubuntu Quantal)
 Importance: Medium
 Status: New


** Tags: armel kernel-release-tracking-bug quantal

** Tags added: kernel-release-tracking-bug

** Tags added: armel

** Also affects: linux-ti-omap4 (Ubuntu Quantal)
   Importance: Undecided
   Status: New

** Tags added: quantal

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/upload-to-ppa
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow
   Status: New = In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Status: New = Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) = ubuntu-armel-kernel (ubuntu-armel-kernel)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) = Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/regression-testing
   Importance: 

[Bug 986269] Re: Unable to open a folder for 10 GB Filesystem, No application is registered as handling this file... or Nautilus pops browser when partition is mounted in bash script

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

** Changed in: nautilus (Ubuntu)
   Status: New = Confirmed

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

Title:
  Unable to open a folder for 10 GB Filesystem, No application is
  registered as handling this file... or Nautilus pops browser when
  partition is mounted in bash script

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

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


[Bug 1167157] [NEW] linux-lts-quantal: 3.5.0-28.47~precise1 -proposed tracker

2013-04-10 Thread Brad Figg
Public bug reported:

This bug is for tracking the 3.5.0-28.47~precise1 upload package. This
bug will contain status and testing results related to that upload.

For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
kernel-stable-Prepare-package-start:Wednesday, 10. April 2013 06:08 UTC
kernel-stable-phase:Prepare
kernel-stable-phase-changed:Wednesday, 10. April 2013 06:08 UTC
kernel-stable-master-bug:1166876

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Assignee: Canonical Hardware Certification (canonical-hw-cert)
 Status: New

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-signed
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Platform QA Team (canonical-platform-qa)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Assignee: Canonical Security Team (canonical-security)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: linux-lts-quantal (Ubuntu)
 Importance: Medium
 Status: New

** Affects: linux-lts-quantal (Ubuntu Precise)
 Importance: Medium
 Status: New


** Tags: kernel-release-tracking-bug precise

** Tags added: kernel-release-tracking-bug

** Also affects: linux-lts-quantal (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Tags added: precise

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow
   Status: New = In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
 Assignee: (unassigned) = Canonical Hardware Certification 
(canonical-hw-cert)

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) = Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) = Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/prepare-package-signed
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package-signed
 Assignee: (unassigned) = Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: 

[Bug 1167156] [NEW] linux-lowlatency: version to be filled -proposed tracker

2013-04-10 Thread Brad Figg
Public bug reported:

This bug is for tracking the version to be filled upload package. This
bug will contain status and testing results related to that upload.

For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
kernel-stable-Prepare-package-start:Wednesday, 10. April 2013 06:06 UTC
kernel-stable-phase:Prepare
kernel-stable-phase-changed:Wednesday, 10. April 2013 06:06 UTC
kernel-stable-master-bug:1166876

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/upload-to-ppa
 Importance: Medium
 Assignee: Canonical Kernel Team (canonical-kernel-team)
 Status: New

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Status: New

** Affects: linux-lowlatency (Ubuntu)
 Importance: Medium
 Status: New

** Affects: linux-lowlatency (Ubuntu Quantal)
 Importance: Medium
 Status: New


** Tags: kernel-release-tracking-bug quantal

** Tags added: kernel-release-tracking-bug

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

** Tags added: quantal

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/upload-to-ppa
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow
   Status: New = In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Status: New = Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/regression-testing
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/security-signoff
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/security-signoff
   Status: New = Invalid

** Changed in: kernel-sru-workflow/upload-to-ppa
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/upload-to-ppa
 Assignee: (unassigned) = Canonical Kernel Team (canonical-kernel-team)

** Changed in: kernel-sru-workflow/verification-testing
   Importance: Undecided = Medium

** Changed in: linux-lowlatency (Ubuntu)
   Importance: Undecided = Medium

** Changed 

[Bug 1167156] Derivative package tracking bug

2013-04-10 Thread Brad Figg
This tracking bug was opened to be worked from linux-3.5.0-28.47 update
(bug 1166876)

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

Title:
  linux-lowlatency: version to be filled -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1167156/+subscriptions

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


[Bug 1167155] [NEW] linux-armadaxp: version to be filled -proposed tracker

2013-04-10 Thread Brad Figg
Public bug reported:

This bug is for tracking the version to be filled upload package. This
bug will contain status and testing results related to that upload.

For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
kernel-stable-Prepare-package-start:Wednesday, 10. April 2013 06:03 UTC
kernel-stable-phase:Prepare
kernel-stable-phase-changed:Wednesday, 10. April 2013 06:03 UTC
kernel-stable-master-bug:1166876

** Affects: kernel-sru-workflow
 Importance: Medium
 Status: In Progress

** Affects: kernel-sru-workflow/certification-testing
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/prepare-package
 Importance: Medium
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel)
 Status: New

** Affects: kernel-sru-workflow/prepare-package-meta
 Importance: Medium
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel)
 Status: New

** Affects: kernel-sru-workflow/promote-to-proposed
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-security
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/promote-to-updates
 Importance: Medium
 Assignee: Ubuntu Stable Release Updates Team (ubuntu-sru)
 Status: New

** Affects: kernel-sru-workflow/regression-testing
 Importance: Medium
 Assignee: Canonical Platform QA Team (canonical-platform-qa)
 Status: New

** Affects: kernel-sru-workflow/security-signoff
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/upload-to-ppa
 Importance: Medium
 Status: Invalid

** Affects: kernel-sru-workflow/verification-testing
 Importance: Medium
 Assignee: Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel)
 Status: New

** Affects: linux-armadaxp (Ubuntu)
 Importance: Medium
 Status: New

** Affects: linux-armadaxp (Ubuntu Quantal)
 Importance: Medium
 Status: New


** Tags: armhf kernel-release-tracking-bug quantal

** Tags added: kernel-release-tracking-bug

** Tags added: armhf

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

** Tags added: quantal

** Also affects: kernel-sru-workflow/certification-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-security
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/promote-to-updates
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/regression-testing
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/security-signoff
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/upload-to-ppa
   Importance: Undecided
   Status: New

** Also affects: kernel-sru-workflow/verification-testing
   Importance: Undecided
   Status: New

** Changed in: kernel-sru-workflow
   Status: New = In Progress

** Changed in: kernel-sru-workflow
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/certification-testing
   Status: New = Invalid

** Changed in: kernel-sru-workflow/prepare-package
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package
 Assignee: (unassigned) = Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel)

** Changed in: kernel-sru-workflow/prepare-package-meta
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/prepare-package-meta
 Assignee: (unassigned) = Canonical Hardware Enablement ARM Kernel 
(canonical-hwe-arm-kernel)

** Changed in: kernel-sru-workflow/promote-to-proposed
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-proposed
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-security
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-security
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/promote-to-updates
   Importance: Undecided = Medium

** Changed in: kernel-sru-workflow/promote-to-updates
 Assignee: (unassigned) = Ubuntu Stable Release Updates Team (ubuntu-sru)

** Changed in: kernel-sru-workflow/regression-testing
   

[Bug 1167155] Derivative package tracking bug

2013-04-10 Thread Brad Figg
This tracking bug was opened to be worked from linux-3.5.0-28.47 update
(bug 1166876)

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

Title:
  linux-armadaxp: version to be filled -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1167155/+subscriptions

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


[Bug 1166876] Packages available

2013-04-10 Thread Brad Figg
All builds are complete, packages in this bug can be copied to
-proposed.

Derivative packages from packages here can be worked on, the following tracking 
bugs were opened for them:
linux-ti-omap4 - bug 1167153
linux-armadaxp - bug 1167155
linux-lowlatency - bug 1167156

Backport packages from packages here can be worked on, the following tracking 
bugs were opened for them:
linux-lts-quantal (precise) - bug 1167157

** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: New = Confirmed

** Description changed:

  This bug is for tracking the 3.5.0-28.47 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 09. April 2013 16:02 UTC
- kernel-stable-phase:Prepare
- kernel-stable-phase-changed:Tuesday, 09. April 2013 16:02 UTC
+ kernel-stable-phase:CopyToProposed
+ kernel-stable-Prepare-package-end:Wednesday, 10. April 2013 06:09 UTC
+ kernel-stable-Promote-to-proposed-start:Wednesday, 10. April 2013 06:09 UTC
+ kernel-stable-phase-changed:Wednesday, 10. April 2013 06:09 UTC

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

Title:
  linux: 3.5.0-28.47 -proposed tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1166876/+subscriptions

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


[Bug 1167158] [NEW] do-release-upgrade -d fails with 12.04: fatal error occurred in DistUpgrade/DistUpgradeView.py

2013-04-10 Thread Sundberg Pauli
Public bug reported:

root@XXX-office-antec:/home/XXX# do-release-upgrade -d
Checking for a new Ubuntu release
Get:1 Upgrade tool signature [198 B]
   
Get:2 Upgrade tool [1197 kB]
   
Fetched 1197 kB in 0s (0 B/s)   
   
authenticate 'raring.tar.gz' against 'raring.tar.gz.gpg' 
extracting 'raring.tar.gz'

Reading cache

Checking package manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Building data structures... Done 
Hit http://security.ubuntu.com quantal-security Release.gpg 
   
Hit http://se.archive.ubuntu.com quantal Release.gpg
   
Hit http://security.ubuntu.com quantal-security Release 
   
Hit http://se.archive.ubuntu.com quantal-updates Release.gpg
   
Hit http://ppa.launchpad.net quantal Release.gpg
   
Hit http://extras.ubuntu.com quantal Release.gpg
   
Hit http://se.archive.ubuntu.com quantal Release
   
Hit http://security.ubuntu.com quantal-security/main Sources
   
Hit http://se.archive.ubuntu.com quantal-updates Release
   
Hit http://ppa.launchpad.net quantal Release
   
Hit http://extras.ubuntu.com quantal Release
   
Hit http://se.archive.ubuntu.com quantal/main Sources   
   
Hit http://security.ubuntu.com quantal-security/restricted Sources  
   
Hit http://se.archive.ubuntu.com quantal/restricted Sources 
   
Hit http://ppa.launchpad.net quantal/main Sources   
   
Hit http://extras.ubuntu.com quantal/main Sources   
   
Hit http://se.archive.ubuntu.com quantal/universe Sources   
   
Hit http://security.ubuntu.com quantal-security/universe Sources
   
Hit http://se.archive.ubuntu.com quantal/multiverse Sources 
   
Hit http://ppa.launchpad.net quantal/main amd64 Packages
   
Hit http://extras.ubuntu.com quantal/main amd64 Packages
   
Hit http://se.archive.ubuntu.com quantal/main amd64 Packages
   
Hit http://security.ubuntu.com quantal-security/multiverse Sources  
   
Hit http://ppa.launchpad.net quantal/main i386 Packages 
   
Hit http://se.archive.ubuntu.com quantal/restricted amd64 Packages  
   
Hit http://extras.ubuntu.com quantal/main i386 Packages 
   
Hit http://se.archive.ubuntu.com quantal/universe amd64 Packages
   
Hit http://security.ubuntu.com quantal-security/main amd64 Packages 
   
Err http://ppa.launchpad.net quantal/main Translation-en
   

   
Err http://extras.ubuntu.com quantal/main Translation-en
   

   
Hit http://se.archive.ubuntu.com quantal/multiverse amd64 Packages  
   
Hit http://se.archive.ubuntu.com quantal/main i386 Packages 
   
Hit http://security.ubuntu.com quantal-security/restricted amd64 Packages   
   
Err http://ppa.launchpad.net quantal/main Translation-en
   

   
Err http://extras.ubuntu.com quantal/main Translation-en
   

   
Hit http://se.archive.ubuntu.com quantal/restricted 

[Bug 1167158] Re: do-release-upgrade -d fails with 12.04: fatal error occurred in DistUpgrade/DistUpgradeView.py

2013-04-10 Thread Sundberg Pauli
** Attachment added: Second run log file apt.log
   
https://bugs.launchpad.net/ubuntu/+source/update-manager-core/+bug/1167158/+attachment/3636455/+files/apt.log

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

Title:
  do-release-upgrade -d fails with 12.04: fatal error occurred in
  DistUpgrade/DistUpgradeView.py

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

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


[Bug 1109198] Re: is-foreground-tab FALSE for single tab

2013-04-10 Thread Timo Jyrinki
** Changed in: bamf
Milestone: 0.2.128 = 0.4.0

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

Title:
  is-foreground-tab FALSE for single tab

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

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


[Bug 178034] Re: [needs-packaging] Please package Nestopia

2013-04-10 Thread shankao
Nestopia seems to have being resurrected lately:
http://0ldsk00l.ca/nestopia.html

I think it's worth of being packaged in Ubuntu :)

** Changed in: ubuntu
   Status: Incomplete = Confirmed

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

Title:
  [needs-packaging] Please package Nestopia

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

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


[Bug 1167149] Re: nvidia-310 310.32-0ubuntu2: nvidia-310 kernel module failed to build

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

** Changed in: nvidia-graphics-drivers-310 (Ubuntu)
   Status: New = Confirmed

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

Title:
  nvidia-310 310.32-0ubuntu2: nvidia-310 kernel module failed to build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-310/+bug/1167149/+subscriptions

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


[Bug 1098334] Re: Font corruption in Chromium tab bar using Intel SNA

2013-04-10 Thread Timo Aaltonen
reopening

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Fix Released = Triaged

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

Title:
  Font corruption in Chromium tab bar using Intel SNA

To manage notifications about this bug go to:
https://bugs.launchpad.net/xserver-xorg-video-intel/+bug/1098334/+subscriptions

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


[Bug 1073730] Re: Hedgewars 0.9.18 FTBFS on 13.04

2013-04-10 Thread LocutusOfBorg
Sorry Jeremy but I don't understand the problem in this FTBFS, there is no 
delta from debian, what is the cause?
Furthermore I still don't understand why the official builders doesn't have 
this problem, while the ppas have it.

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

Title:
  Hedgewars 0.9.18 FTBFS on 13.04

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

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


[Bug 1167084] Re: Input method gives the wrong charactor

2013-04-10 Thread Ads20000
Thank you for reporting this but I don't understand what you mean and we
need logs (which I'm not sure how to make myself).

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

Title:
  Input method gives the wrong charactor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-m17n/+bug/1167084/+subscriptions

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


[Bug 1166436] Re: Guake shows noticeable gap from the top of the screen

2013-04-10 Thread Mike
I'm having the same issue. Ubuntu 13.04

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

Title:
  Guake shows noticeable gap from the top of the screen

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

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


[Bug 1088771] Re: dangling symlink /usr/lib/pkgconfig/python2.pc

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-proposed/python-defaults

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

Title:
  dangling symlink /usr/lib/pkgconfig/python2.pc

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

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


[Bug 1167090] Re: Upgrade Software Version Of jEdit Text Editor

2013-04-10 Thread Ads20000
Thank you for reporting this, but it is not a bug.
It's possible that the pre-release is more stable than the actual release.

** Changed in: jedit (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/1167090

Title:
  Upgrade Software Version Of jEdit Text Editor

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

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


[Bug 1167158] Re: do-release-upgrade -d fails with 12.04: fatal error occurred in DistUpgrade/DistUpgradeView.py

2013-04-10 Thread Sundberg Pauli
Bit debugging with python and my locale, shows that my locale / python
is broken, not the script (that might do some counter measures / pre-
check ?):

XXX@XXX-office-antec ~
 % cat silly.py   
import locale

print Hello there
print locale.getdefaultlocale()

locale.setlocale(locale.LC_ALL, )
print locale.getdefaultlocale()

XXX@XXX-office-antec ~
 % locale
LANG=en_US.UTF-8
LANGUAGE=
LC_CTYPE=C
LC_NUMERIC=C
LC_TIME=C
LC_COLLATE=C
LC_MONETARY=C
LC_MESSAGES=C
LC_PAPER=C
LC_NAME=C
LC_ADDRESS=C
LC_TELEPHONE=C
LC_MEASUREMENT=C
LC_IDENTIFICATION=C
LC_ALL=C

XXX@XXX-office-antec ~
 % python silly.py
Hello there
(None, None)
(None, None)

XXX@XXX-office-antec ~
 % export LANGUAGE=en_US.UTF-8
XXX@XXX-office-antec ~
 % python silly.py 
Hello there
(None, None)
(None, None)

XXX@XXX-office-antec ~
 % export LC_ALL=en_US.UTF-8
XXX@XXX-office-antec ~
 % python silly.py  
Hello there
('en_US', 'UTF-8')
('en_US', 'UTF-8')

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

Title:
  do-release-upgrade -d fails with 12.04: fatal error occurred in
  DistUpgrade/DistUpgradeView.py

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

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


[Bug 1130709] Re: python-apt needs to be multiarched

2013-04-10 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/precise/python3-defaults
/precise-proposed

** Branch linked: lp:ubuntu/precise-proposed/python-defaults

** Branch linked: lp:ubuntu/precise-proposed/python-apt

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

Title:
  python-apt needs to be multiarched

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

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


[Bug 178034] Re: [needs-packaging] Please package Nestopia

2013-04-10 Thread shankao
Added the ITP bug in debian. It happens to have being packaged just some
days ago and should hit debian unstable soon

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

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

Title:
  [needs-packaging] Please package Nestopia

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

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


[Bug 1167097] Re: The mouse stops working randomly and have to reset

2013-04-10 Thread Ads20000
Thank you for reporting this bug. What do you mean by 'reset'? Do you
mean 'reboot' or 'logout' or 'reinstall'?

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

Title:
  The mouse stops working randomly and have to reset

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/meta-gnome3/+bug/1167097/+subscriptions

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


[Bug 1163034] Re: gnutls28 fails to build from source in armhf

2013-04-10 Thread LocutusOfBorg
I'm referring to bug 1042388, I din't know about the fallback on this,
but I have to say it doesn't work since apt exits and fails when
encounters this call, maybe the fallback has some problems?

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

Title:
  gnutls28 fails to build from source in armhf

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

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


[Bug 1140716] Re: [regression] 3.5.0-26-generic and 3.2.0-39-generic GPU hangs on Sandybridge

2013-04-10 Thread Christophe CATARINA
I have the same problem on xubuntu 12.04 x64.
3.2.0-38 works fine. 
3.2.0-39 and the new 3.2.0-40 freeze my system after few minutes or hours.

Extracted from 'sudo lshw' :
MB: H67MA-USB3-B3 (Gigabyte Technology Co., Ltd.)
BIOS : Award Software International, Inc. version: F3 03/31/2011
CPU : Intel(R) Core(TM) i3-2125 CPU @ 3.30GHz
Memory : 8GiB

Display : VGA compatible controller
produit: 2nd Generation Core Processor Family Integrated Graphics Controller
version: 09
bits: 64 bits
configuration: driver=i915 latency=0
ressources: irq:42 mémoire:fb80-fbbf mémoire:e000-efff 
portE/S:ff00(taille=64)

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

Title:
  [regression] 3.5.0-26-generic and  3.2.0-39-generic GPU hangs on
  Sandybridge

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

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

[Bug 1107693] Re: Wrong spacing around beta character when printing a latex generated pdf

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

** Changed in: evince (Ubuntu)
   Status: New = Confirmed

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

Title:
  Wrong spacing around beta character when printing a latex generated
  pdf

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

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


[Bug 1167106] Re: dom/tests/browser/browser_geolocation_privatebrowsing_perwindowpb.js browser mochitest crash

2013-04-10 Thread Ads20000
Thank you for reporting this bug. We need more information however, like
how to reproduce this bug and what version of Ubuntu/Firefox this is on
before we can try to confirm it.

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

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

Title:
  dom/tests/browser/browser_geolocation_privatebrowsing_perwindowpb.js
  browser mochitest crash

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

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


[Bug 1167029] Re: usb-creator-gtk crashed with SIGSEGV in dbus_message_get_reply_serial()

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

** Changed in: usb-creator (Ubuntu)
   Status: New = Confirmed

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

Title:
  usb-creator-gtk crashed with SIGSEGV in
  dbus_message_get_reply_serial()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/usb-creator/+bug/1167029/+subscriptions

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


[Bug 1167166] [NEW] flashplugin-installer fails to download adobe-flashplugin

2013-04-10 Thread Nitesh Mistry
Public bug reported:

Since last 3-4 updates of flashplugin-installer on both my installs of Ubuntu 
12.04 and Kubuntu 12.10, I am facing the following problem:
1. 'sudo apt-get upgrade' shows that a new version of flashplugin-installer is 
available (along with update to other packages)
2. When I go ahead with the update, it downloads the flashplugin-installer from 
'http://us.archive.ubuntu.com/ubuntu/ quantal-updates/multiverse'
3. Further it shows 'Preparing to replace flashplugin-installer ... (using ...)'
4. Then 'Unpacking replacement flashplugin-installer ...'
5. The next line is 'flashplugin-installer: downloading 
http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_11.2.202.280.orig.tar.gz'
 - Here it remains stuck for sometime. I remember earlier it used to show the 
process of downloading the adobe-flashplugin at this stage, but not since this 
problem is occuring.
6. After remaining stuck at the above message for some time, it shows 
'Installing from local file /tmp/tmpzjbHF5.gz' and proceeds with installation 
of other packages and exits.

I don't know if the new version of the plugin is installed or does it
revert back to the last installed version of the plugin. I guess the
link in the installer package is correct because it shows up the new
package when I open the link in the browser.

Also, I have no problem playing flash files in the browser like viewing
videos on youtube.

'apt-cache policy flashplugin-installer' gives the following output:

flashplugin-installer:
Installed: 11.2.202.280ubuntu0.12.10.1
Candidate: 11.2.202.280ubuntu0.12.10.1
Version table:
*** 11.2.202.280ubuntu0.12.10.1 0
500 http://us.archive.ubuntu.com/ubuntu/ quantal-updates/multiverse amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ quantal-security/multiverse amd64 
Packages
100 /var/lib/dpkg/status
11.2.202.243ubuntu1 0
500 http://us.archive.ubuntu.com/ubuntu/ quantal/multiverse amd64 Packages

** Affects: flashplugin-nonfree (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  flashplugin-installer fails to download adobe-flashplugin

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flashplugin-nonfree/+bug/1167166/+subscriptions

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


[Bug 1167106] Re: dom/tests/browser/browser_geolocation_privatebrowsing_perwindowpb.js browser mochitest crash

2013-04-10 Thread Chris Coulson
Errr, no we don't

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

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

** Changed in: firefox (Ubuntu)
   Importance: High = Medium

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

Title:
  dom/tests/browser/browser_geolocation_privatebrowsing_perwindowpb.js
  browser mochitest crash

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

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


[Bug 1167165] [NEW] Cannot browse the device using obex ftp

2013-04-10 Thread Ninjaonchronic
Public bug reported:

On Ubuntu 12.10 using blueman 1.23-0ubuntu3

When trying to browse my device, after connecting to my device (phone)
and trying the browse device feature I get this error message:

Could not display obex://[00:25:E5:20:8C:F5]/.

Error: Message did not receive a reply (timeout by message bus)
Please select another viewer and try again.
(obex-data-server 0.4.6-0ubuntu2)

I can send and recieve files just find but no browsing whatsoever

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

** Description changed:

  On Ubuntu 12.10 using blueman 1.23-0ubuntu3
  
  When trying to browse my device, after connecting to my device (phone)
  and trying the browse device feature I get this error message:
  
  Could not display obex://[00:25:E5:20:8C:F5]/.
  
  Error: Message did not receive a reply (timeout by message bus)
  Please select another viewer and try again.
+ (obex-data-server 0.4.6-0ubuntu2)
  
  I can send and recieve files just find but no browsing whatsoever

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

Title:
  Cannot browse the device using obex ftp

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

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


[Bug 1158884] Re: toolkit/content/tests/chrome/test_textbox_dictionary.xul chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Tags added: moz-test-failure

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

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

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

Title:
  toolkit/content/tests/chrome/test_textbox_dictionary.xul chrome
  mochitest failure

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

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


[Bug 1158882] Re: toolkit/content/tests/chrome/test_richlist_direction.xul chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Importance: Undecided = Medium

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

** Tags added: moz-test-failure

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

Title:
  toolkit/content/tests/chrome/test_richlist_direction.xul chrome
  mochitest failure

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

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


[Bug 1158881] Re: toolkit/content/tests/chrome/test_arrowpanel.xul chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Importance: Undecided = Medium

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

** Tags added: moz-test-failure

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

Title:
  toolkit/content/tests/chrome/test_arrowpanel.xul chrome mochitest
  failure

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

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


[Bug 1158875] Re: layout/inspector/tests/chrome/test_bug467669.xul chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  layout/inspector/tests/chrome/test_bug467669.xul chrome mochitest
  failure

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

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


[Bug 1158870] Re: editor/libeditor/text/tests/test_bug636465.xul chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Importance: Undecided = Medium

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

** Tags added: moz-test-failure

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

Title:
  editor/libeditor/text/tests/test_bug636465.xul chrome mochitest
  failure

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

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


[Bug 1158869] Re: editor/libeditor/html/tests/test_bug366682.html chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  editor/libeditor/html/tests/test_bug366682.html chrome mochitest
  failure

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

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


[Bug 1158866] Re: editor/composer/test/test_bug678842.html chrome mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  editor/composer/test/test_bug678842.html chrome mochitest failure

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

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


[Bug 1158836] Re: accessible/events/test_textattrchange.html a11y mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  accessible/events/test_textattrchange.html a11y mochitest failure

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

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


[Bug 1158821] Re: accessible/events/test_focus_general.* a11y mochitest failure

2013-04-10 Thread Chris Coulson
** Tags added: moz-test-failure

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

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

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

Title:
  accessible/events/test_focus_general.* a11y mochitest failure

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

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


[Bug 1158796] Re: toolkit/content/tests/widgets/test_contextmenu_nested.xul mochitest failure

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  toolkit/content/tests/widgets/test_contextmenu_nested.xul mochitest
  failure

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

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


[Bug 1158784] Re: editor/libeditor/html/tests/test_bug432225.html and editor/libeditor/html/tests/test_bug484181.html mochitest failures

2013-04-10 Thread Chris Coulson
** Changed in: firefox (Ubuntu)
   Status: New = Triaged

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

** Tags added: moz-test-failure

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

Title:
  editor/libeditor/html/tests/test_bug432225.html and
  editor/libeditor/html/tests/test_bug484181.html mochitest failures

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