[Bug 236510] Re: default apparmor setting prevents bind from running under chroot

2012-08-28 Thread D J Gardner
for what it's worth, here is my /etc/apparmor.d/local/usr.sbin.named:

   /var/bind9/chroot/etc/bind/** r,
   /var/bind9/chroot/var/lib/bind/** rw,
   /var/bind9/chroot/var/lib/bind/ rw,
   /var/bind9/chroot/var/cache/bind/** rw,
   /var/bind9/chroot/var/cache/bind/ rw,
   /var/bind9/chroot/var/run/named/named.pid w,
   /var/bind9/chroot/var/run/named/session.key w,
   /var/bind9/chroot/dev/random r,
   /var/bind9/chroot/dev/log w,
   /var/bind9/chroot/dev/null rw,

# support for resolvconf
   /{,var/,var/bind9/chroot/}run/named/named.options r,
   /var/bind9/chroot/usr/lib/x86_64-linux-gnu/openssl-1.0.0/engines/libgost.so 
rm, 


No warantee at all, but it works for me (precise).

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

Title:
  default apparmor setting prevents bind from running under chroot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/236510/+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 1042711] [NEW] php: throw and catch within a destructor causes exception on-the-fly to be lost

2012-08-28 Thread Mikko Rantalainen
Public bug reported:

See the attached test case. The Outer::runInner() throws a test
exception that is supposed to be catched in Outer::run(). However,
before this the destructor of Inner will run as a result of stack
unwinding while returning from Outer::runInner(). This, in turn, causes
the original exception to be lost because Inner::tearDown() throws an
exception which it later catches.

The test case is expected to output (tested official win32 builds 5.3.16
and 5.4.6):

$ php throw-test.php
Catched exception in Inner::tearDown(): test throw inside Inner::tearDown()
#0 /path/to/test.php(6): Inner-tearDown()
#1 /path/to/test.php(29): Inner-__destruct()
#2 /path/to/test.php(29): Outer-runInner()
#3 /path/to/test.php(45): Outer-run()
#4 {main}
OK: Catched exception in Outer::run(): test throw from Outer::runInner()
#0 /path/to/test.php(29): Outer-runInner()
#1 /path/to/test.php(45): Outer-run()
#2 {main}

The version distributed by ubuntu (PHP 5.3.2-1ubuntu4.17) outputs:

$ php throw-test.php 
Catched exception in Inner::tearDown(): test throw inside Inner::tearDown()
#0 /home/mira/tmp/throw-test.php(6): Inner-tearDown()
#1 /home/mira/tmp/throw-test.php(29): Inner-__destruct()
#2 /home/mira/tmp/throw-test.php(29): Outer-runInner()
#3 /home/mira/tmp/throw-test.php(45): Outer-run()
#4 {main}

Notice the missing exception in Outer::run(). [Lines have been manually
wrapped for this bug report.]

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: php5-cli 5.3.2-1ubuntu4.17
ProcVersionSignature: Ubuntu 3.0.0-24.40~lucid1-generic 3.0.38
Uname: Linux 3.0.0-24-generic x86_64
Architecture: amd64
CheckboxSubmission: f0bf0101e3df07a87acfbc156f0db03d
CheckboxSystem: b5acb6c9ca4017b1d44043910f45329d
Date: Tue Aug 28 15:01:35 2012
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release Candidate amd64 
(20091020.3)
SourcePackage: php5

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


** Tags: amd64 apport-bug lucid

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

Title:
  php: throw and catch within a destructor causes exception on-the-fly
  to be lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1042711/+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 1042711] Re: php: throw and catch within a destructor causes exception on-the-fly to be lost

2012-08-28 Thread Mikko Rantalainen
** Attachment added: minimal test case
   
https://bugs.launchpad.net/bugs/1042711/+attachment/3280442/+files/throw-test.php

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

Title:
  php: throw and catch within a destructor causes exception on-the-fly
  to be lost

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1042711/+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 1042275] Re: dnsmasq updating resolvconf when it's not configured to do DNS

2012-08-28 Thread Thomas Hood
The bug (in the network-manager package) is that /etc/dnsmasq.d/network-
manager contains

except-interface=lo

despite the fact that network-manager was changed not to listen on lo's
IP address (127.0.0.1) any more.  Here's the changelog entry announcing
this change.

  network-manager (0.9.6.0-0ubuntu4) quantal; urgency=low
* debian/patches/dns-dnsmasq-interface-and-dbus-path.patch: set the address
  dnsmasq (and bind) plugins should listen on for DNS resolution to 
127.0.1.1,
  as opposed to 127.0.0.1 to avoid conflicts with other instances that might
  need to run on the system with that address.
  [...]
   -- Mathieu Trudel-Lapierre mathieu...@ubuntu.com  Tue, 21 Aug 2012 
11:45:46 -0400

If the aforementioned line is commented out

#except-interface=lo

then name service works, with the standalone dnsmasq listening on
127.0.0.1 and forwarding to 127.0.1.1.  @Submitter: please use this
workaround for now.  Assuming you want to use standalone dnsmasq,
remember to set /etc/default/dnsmasq ENABLED back to 1.

Earlier discussion of the issues at hand here: bug #959037.

** Package changed: dnsmasq (Ubuntu) = network-manager (Ubuntu)

** Summary changed:

- dnsmasq updating resolvconf when it's not configured to do DNS
+ network-manager dnsmasq configuration snippet causes standalone dnsmasq not 
to listen on 127.0.0.1, breaking name service when dnsmasq is installed

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

Title:
  network-manager dnsmasq configuration snippet causes standalone
  dnsmasq not to listen on 127.0.0.1, breaking name service when dnsmasq
  is installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1042275/+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 1042711] Re: php: throw and catch within a destructor causes exception on-the-fly to be lost

2012-08-28 Thread Mikko Rantalainen
It just occurred to me that the test case written a bit differently
could be program logic guarding authenticated session.

As a result, I'm marking this bug as security but keeping it still
public because I'm not aware of real world PHP program suffering from a
security issue because of this issue.

** This bug has been flagged as a security vulnerability

** Attachment added: Possible security problem caused by the bug
   
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1042711/+attachment/3280518/+files/throw-test.php

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

Title:
  php: throw and catch within a destructor causes exception on-the-fly
  to be lost

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

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


[Blueprint servercloud-q-tomcat7] Promote Apache Tomcat 7 to main

2012-08-28 Thread James Page
Blueprint changed by James Page:

Work items changed:
  Work items for quantal-alpha-3:
  [james-page] Update tomcat-server seed to use tomcat7: DONE
  [james-page] Review and update tomcat server test case: DONE
  [james-page] Raise MIR for tomcat7: DONE
  [james-page] Transition servlet2.5 dependencies in main to 3.0: DONE
  
  Work items for ubuntu-12.10-beta-1:
- [james-page] Update packaging to use upstart: TODO
+ [james-page] Update packaging to use upstart: POSTPONED
  [james-page] Review upgrade path from tomcat6-tomcat7: POSTPONED
  [james-page] Request removal of tomcat6 from archive: POSTPONED
  
  Work items for ubuntu-12.10:
  [negronjl] Update tomcat(7) charm to accomodate changes during quantal dev 
cycle: DONE

-- 
Promote Apache Tomcat 7 to main
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-tomcat7

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


[Blueprint servercloud-q-server-iso-tests-review] Improve Server Install and Upgrade Testing

2012-08-28 Thread James Page
Blueprint changed by James Page:

Work items changed:
  Work items for quantal-alpha-1:
  [smoser] Call for testing of ISO images - Alpha 1: DONE
  
  Work items for quantal-alpha-2:
  [james-page] Call for testing of ISO images - Alpha 2: DONE
  
  Work items for quantal-alpha-3:
  Call for testing of ISO images - Alpha 3: DONE
  
  Work items for ubuntu-12.10-beta-1:
+ Call for testing of ISO images - Beta 1: TODO
+ 
+ Work items for ubuntu-12.10-beta-2:
  [jibel] Add a profile to auto upgrade testing  to support VM upgrade testing 
(nested VMs): TODO
  [serge-hallyn] Provide a test to check the status of the VM after upgrade 
(nested VM's): TODO
  [ivoks] Expand existing test cases to support different configuration options 
for mail-server: TODO
  [zulcss] Upgrade testing for openstack - work with jibel to setup new upgrade 
testing: TODO
  [james-page] Work out better more focussed upgrade testing for server tasks: 
TODO
  [james-page] Call for improvement of test cases and coordination with 
migration to new harness: TODO
- Call for testing of ISO images - Beta 1: TODO
- 
- Work items for ubuntu-12.10-beta-2:
+ [james-page] Review server seeds for gaps in testing of packages in main: TODO
  Call for testing of ISO images - Beta 2: TODO
  
  Work items for ubuntu-12.10:
  Improve MAAS test cases: TODO
  [james-page] Plug the iSCSI tests into UTAH: TODO
  Ensure UATH can support USB installation as well: TODO
  Ensure multi-nic testing can be supported: TODO
  Call for testing of ISO images - 12.10 RC: TODO

-- 
Improve Server Install and Upgrade Testing
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-server-iso-tests-review

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


[Bug 1042431] Re: lxc-start-ephemeral needs tweak to handle centos and fedora hostname setting

2012-08-28 Thread Serge Hallyn
Thanks, Dan, for the bug report and the patch.

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

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

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

Title:
  lxc-start-ephemeral needs tweak to handle centos and fedora hostname
  setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1042431/+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 1040475] Re: maas depends on a broken version of python-tx-tftp

2012-08-28 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
   Status: New = Fix Released

** Changed in: maas (Ubuntu)
   Status: Fix Released = Invalid

** Also affects: python-tx-tftp (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: python-tx-tftp (Ubuntu)
   Status: New = Fix Released

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

Title:
  maas depends on a broken version of python-tx-tftp

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

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


[Bug 997978] Re: KVM images lose connectivity with bridged network

2012-08-28 Thread Serge Hallyn
@Metin,

still no incidents?

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

Title:
  KVM images lose connectivity with bridged network

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

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


[Blueprint servercloud-q-juju-charm-unit-tests] Juju Charm Unit Tests

2012-08-28 Thread Mark Mims
Blueprint changed by Mark Mims:

Work items changed:
  Work items:
  documentation for unit tests: INPROGRESS
- write examples of unit tests on flag-bearing charms: TODO
+ write examples of unit tests on flag-bearing charms: INPROGRESS
  [jimbaker] make 'jitsu run-tests' aware of error codes (Jitsu watch): 
INPROGRESS
  [jimbaker] improve charmtester logging information: DONE
  [hazmat] charm proof testing: TODO
  keep everything green: INPROGRESS
  [mark-mims] make charmtester easier to use one-off by anyone: INPROGRESS
- [mark-mims] make charmtester whitelist: INPROGRESS
- extend charm tools to help generate tests: TODO
+ [mark-mims] make charmtester whitelist: DONE
+ extend charm tools to help generate tests: POSTPONED
  run charmtester against maas environment: TODO

-- 
Juju Charm Unit Tests
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charm-unit-tests

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


[Blueprint servercloud-q-juju-integration] Juju Integration

2012-08-28 Thread Mark Mims
Blueprint changed by Mark Mims:

Work items changed:
  Work items:
- [mark-mims] charm to deploy chef-server (maybe w sub like clint's puppet sub) 
: TODO
- [mark-mims] charms that call chef solo recipes : TODO
+ [mark-mims] charm to deploy chef-server (maybe w sub like clint's puppet sub) 
: POSTPONED
+ [mark-mims] charms that call chef solo recipes : POSTPONED
  [negronjl] jujustrano ( Juju Capistrano integration ) : DONE
- [negronjl] go to town on clint's puppet sub ( puppetforge? ) ( add charm 
create option for puppet recipes ) : TODO
+ [negronjl] go to town on clint's puppet sub ( puppetforge? ) ( add charm 
create option for puppet recipes ) : POSTPONED
  [negronjl] define ways that juju would need to call Capistrano : DONE
  [negronjl] jrapi as juju-jitsu subcommand... 'jitsu api' : POSTPONED
  [negronjl] integrate Juju with facter : DONE
- [hazmat] export/import environment into juju-jitsu : TODO
+ [hazmat] export/import environment into juju-jitsu : DONE
  [negronjl] how to make charms out of puppetforge modules / github cookbooks : 
POSTPONED
  [negronjl] plugin for chef-search to interface with juju (possibly just chef 
sub) : POSTPONED
  [mike-mcclurg] cloudstack integration : TODO
  [imbrandon] investigate enstratus integration : TODO

-- 
Juju Integration
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-integration

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


[Blueprint servercloud-q-juju-charm-unit-tests] Juju Charm Unit Tests

2012-08-28 Thread Mark Mims
Blueprint changed by Mark Mims:

Work items changed:
  Work items:
  documentation for unit tests: INPROGRESS
  write examples of unit tests on flag-bearing charms: INPROGRESS
  [jimbaker] make 'jitsu run-tests' aware of error codes (Jitsu watch): 
INPROGRESS
  [jimbaker] improve charmtester logging information: DONE
- [hazmat] charm proof testing: TODO
+ [hazmat] charm proof testing: DONE
  keep everything green: INPROGRESS
  [mark-mims] make charmtester easier to use one-off by anyone: INPROGRESS
  [mark-mims] make charmtester whitelist: DONE
  extend charm tools to help generate tests: POSTPONED
  run charmtester against maas environment: TODO

-- 
Juju Charm Unit Tests
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-juju-charm-unit-tests

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


[Blueprint servercloud-q-maas-next-steps] MAAS Next Steps

2012-08-28 Thread Andres Rodriguez
Blueprint changed by Andres Rodriguez:

Work items changed:
  Work items:
  [andreserl] MIR celery: DONE
  [andreserl] MIR libjs-yui3: DONE
  [andreserl] MIR libjs-raphael: DONE
  [andreserl] package python-tx-tftp: DONE
  Enable test-suite in packaging: TODO
  maas-enlist - do not die if MAAS is invalid (LP: #973414): TODO
  complete documentation and manpages (LP: #975454): TODO
  [andreserl] update libjs-yui to latest and drop them from trunk: DONE
  [andreserl] update libjs-raphael to latest and drop them from trunk: DONE
  [andreserl] IPMI support: DONE
  Support for other power management devices: TODO
  ARM support: TODO
  Use squashfs image for PXE installations (and ubuntu server CD install): TODO
- Dropping/replacing cobbler (maas-provision): TODO
+ Dropping/replacing cobbler (maas-provision): DONE
  [smoser] package read-only root fs (ephemeral disk) initramfs tools 
(overlayroot): DONE

-- 
MAAS Next Steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-maas-next-steps

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


[Bug 1017978] Re: [MIR] libfcgi, ceph (radosgw)

2012-08-28 Thread James Page
The other fly in the ointment for radosgw is that to actually use it you
need to use apache2 with libapache2-mod-fastcgi (which is in
multiverse).

This configuration is not currently automated in the packaging (I picked
this from the upstream docs) so the packages don't express this in their
dependencies.

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

Title:
  [MIR] libfcgi, ceph (radosgw)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1017978/+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 1042431] Re: lxc-start-ephemeral needs tweak to handle centos and fedora hostname setting

2012-08-28 Thread Dan Kegel
For completeness, here's a cleaner copy of the patch, along with the
centos script I'm using, from that same thread.

I haven't actually deployed yet, but it passes my little unit test.

** Patch added: 0001-Add-Centos-support-to-lxc-create.patch
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1042431/+attachment/3280828/+files/0001-Add-Centos-support-to-lxc-create.patch

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

Title:
  lxc-start-ephemeral needs tweak to handle centos and fedora hostname
  setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1042431/+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 1042856] [NEW] libapache2-mod-auth-kerb using krb5passwd and keepalive and credential delegation loses delegation after first request on connection

2012-08-28 Thread Raubvogel
Public bug reported:

This is a bug that was reported in
https://bugzilla.redhat.com/show_bug.cgi?id=687975; does it also affect
ubuntu? Reason I ask is that I seem to be able to reproduce it in 12.04.

Steps:
1. Need php5-ldap libapache2-mod-auth-kerb libsasl2-modules-ldap
2. Configure apache host to do kerberos, including having a keytab for apache.
3. Setup the apache virtual host site to use mod_auth_kerb:

Location /
Options FollowSymLinks
AuthType Kerberos
KrbAuthRealms DOMAIN.COM
KrbServiceName HTTP
Krb5Keytab /etc/apache2/krb5.keytab
KrbMethodNegotiate on
KrbMethodK5Passwd on
# The saveCredentials entry is important for php to get KRB5CCNAME
KrbSaveCredentials on
Require valid-user
/Location

4. create test.php (yes I am using php) file:

html
head
titlePHP Test/title
/head
body 
h1PHP Kerberos Test/h1
?php  
// LDAP parameters 
echo user = {$_SERVER['PHP_AUTH_USER']}br/;
echo REMOTE_USER={$_SERVER['REMOTE_USER']}br/;
echo KRB5CCNAME={$_SERVER['KRB5CCNAME']}br/;

exit();
?
  /body
/html

5. Connect to page. First time you log in you should see something like:

PHP Kerberos Test

user=raubvogel
REMOTE_USER=raubvo...@domain.com
KRB5CCNAME=FILE:/tmp/krb5cc_apache_0156Pt

6. Immediately reload page. You will now see

PHP Kerberos Test

user=raubvogel
REMOTE_USER=raubvo...@domain.com
KRB5CCNAME=

7. Wait 15 seconds and try again:

PHP Kerberos Test

user=raubvogel
REMOTE_USER=raubvo...@domain.com
KRB5CCNAME=FILE:/tmp/krb5cc_apache_Q3sMmK

Did I missconfigure anything?

** Affects: libapache-mod-auth-kerb (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  libapache2-mod-auth-kerb using krb5passwd and keepalive and credential
  delegation loses delegation after first request on connection

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-auth-kerb/+bug/1042856/+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 1026402] Re: mon cluster (no cephx) fails to start unless empty keyring files are created

2012-08-28 Thread James Page
Fixed in 0.48.1 (uploaded yesterday to quantal)

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

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

Title:
  mon cluster (no cephx) fails to start unless empty keyring files are
  created

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

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


[Blueprint servercloud-q-lxc] Lxc work for Q

2012-08-28 Thread Serge Hallyn
Blueprint changed by Serge Hallyn:

Work items changed:
  Work items:
  [stgraber] Review list of extra packages in lxc-ubuntu and have it contain 
the right list for each release: DONE
  [cooloney] check that all new cgroups are enabled in quantal kernel: DONE
  [serge-hallyn] pre-mount cgroups during container startup (using optional 
mount hook): DONE
  [serge-hallyn] send attach patch sets to kernel-team ASAP: DONE
  [serge-hallyn] convert lxc-apparmor patchset to generic lsm set: DONE
  [serge-hallyn] add smack support to lsm set: POSTPONED
  [serge-hallyn] add selinux support to lsm set: POSTPONED
  [kees] package libscecomp to aid bpf creation 
http://sourceforge.net/projects/libseccomp/: DONE
  [serge-hallyn] exploit libseccomp in lxc-start: DONE
  [serge-hallyn] come up with default seccomp containers profile (all syscalls 
- for x86-64, 0-300 and 1024-1079): DONE
  [apw] expect SECCOMP to drop in v3.5 replacing our patches (confirmed): DONE
  [ebiederm] fix lxc-attach upstream to use the new setns syntax: DONE
  [serge-hallyn] write a patch for lxc to use user namespaces: BLOCKED
  [ebiederm] patch adduser: TODO
  [ebiederm] get rest of v40 of userns patchset upstream: INPROGRESS
  [ebiederm] push userns patches to allow containers to mount, pivot_root, and 
rename nics: TODO
  [ebiederm] push remaining userns patches needed for simple containers: TODO
  [ebiederm] get setns(mnt) upstream: DONE
  [ebiederm] get setns(pid) upstream: TODO
  [serge-hallyn] extend lxc-attach to support attaching only to specific 
namespaces (done by community): DONE
  [stgraber] add the lxc-nesting apparmor profile to the package in quantal: 
DONE
  [serge-hallyn] send usernamespace patchset ASAP to kernel team (link to git 
repo for review): DONE
  [stgraber] write the hookpoints and send to the lxc-devel list for review: 
DONE
  [serge-hallyn] Post POC patchset implementing hookpoints to lxc-devel: DONE
- [serge-hallyn] implement configuration file #includes (stretch goal): TODO
- [serge-hallyn] example for encrypted root in the example guide (blocked 
awaiting hooks): TODO
+ [serge-hallyn] implement configuration file #includes (stretch goal): DONE
+ [serge-hallyn] example for encrypted root in the example guide: INPROGRESS
  [serge-hallyn] investigate post commit hook to email out changes: DONE
  [serge-hallyn] document mounts sharing through /shared using hooks: TODO
  [serge-hallyn] apport hook for lxc bugs: DONE
  [stgraber] where do crashes in the container go: TODO
  [james-page] hook testing up to jenkins: TODO
  [serge-hallyn] convert the test suite to jenkins: TODO
  [serge-hallyn] fedora 16 and 17 and open-suse templates need to be made to 
work (stretch goal): TODO
  [stgraber] make an liblxc API definition and publicise (+ serge-hallyn): DONE
  [stgraber] Create python module using the API: DONE
  [serge-hallyn] server guide 12.10 update for API: TODO
  [serge-hallyn] server guide 12.10 update for hooks: TODO
  [serge-hallyn] server guide 12.10 update using user namespaces: TODO
  [serge-hallyn] server guide 12.10 update apparmor changes: TODO
  [serge-hallyn] server guide 12.10 update for using seccomp: TODO

-- 
Lxc work for Q
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-lxc

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


[Blueprint servercloud-q-jenkins-cloud-builder] Jenkins Cloud Builder

2012-08-28 Thread Antonio Rosales
Blueprint changed by Antonio Rosales:

Whiteboard changed:
  Motivation: The current build system works beautifully for producing
  images for Amazon. However, as Amazon adds more regions and as we add
  more build targets, the process of building the images has morphed into
  more of workflow. By migrating the build system to Jenkins, we'll have
  the ability to track the different builds, integrate testing, and allow
  for official derivative images to built from a single source.
  
  https://wiki.ubuntu.com/BlueprintSpec needs integrated into whiteboard
  [a.rosales].
+ 
+ Release Notes:
+ need to add release note documentation

-- 
Jenkins Cloud Builder
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-q-jenkins-cloud-builder

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


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

2012-08-28 Thread Leo Unglaub
Are there any updates on this request? What is the current status?
Debian is shipping 5.4 for a while now without any problems.

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

Title:
  Please merge PHP 5.4 from Debian

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

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


[Bug 1042431] Re: lxc-start-ephemeral needs tweak to handle centos and fedora hostname setting

2012-08-28 Thread Ubuntu Foundation's Bug Bot
The attachment 0001-Add-Centos-support-to-lxc-create.patch of this bug
report has been identified as being a patch.  The ubuntu-reviewers team
has been subscribed to the bug report so that they can review the patch.
In the event that this is in fact not a patch you can resolve this
situation by removing the tag 'patch' from the bug report and editing
the attachment so that it is not flagged as a patch.  Additionally, if
you are member of the ubuntu-reviewers team please also unsubscribe the
team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  lxc-start-ephemeral needs tweak to handle centos and fedora hostname
  setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1042431/+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 1042968] [NEW] Russian core sounds must be packaged

2012-08-28 Thread Mystic-Mirage
Public bug reported:

Hi!
Russian core sounds are now part of the official Asterisk. It should be in repo.

http://downloads.asterisk.org/pub/telephony/sounds/

There is my ppa for asterisk-core-sounds-ru if it can help
https://launchpad.net/~mystic-mirage/+archive/asterisk-core-sounds-ru

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


** Tags: asterisk core russian sounds

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

Title:
  Russian core sounds must be packaged

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/asterisk/+bug/1042968/+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 1034701] Re: ImportError: Could not import settings 'openstack_dashboard.settings': missing dependency on python-glanceclient

2012-08-28 Thread Adam Gandelman
Looks like python-glanceclient was added as  a Dependency with the
horizon (2012.2~f3-0ubuntu1) upload, along with the other required
clients (swiftclient, quantumclient, etc).  Marking as Fixed Released
since its missing the bug ref.  If this is still an issue please reopen.

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

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

Title:
  ImportError: Could not import settings 'openstack_dashboard.settings':
  missing dependency on python-glanceclient

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/horizon/+bug/1034701/+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 1017978] Re: [MIR] libfcgi, ceph (radosgw)

2012-08-28 Thread Yehuda Sadeh
Note that while libapache2-mod-fastcgi is currently the better way to
go, there's also libapache2-mod-fcgid, or nginx/lighttpd with fastcgi.

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

Title:
  [MIR] libfcgi, ceph (radosgw)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1017978/+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 1043004] [NEW] --bindhome option should be on lxc-create, not on lxc-ubuntu

2012-08-28 Thread Dan Kegel
Public bug reported:

The ubuntu template has a handy --bindhome option, but that's not very useful 
if you need to support
multiple guest OS's. 
That option should be hoisted out of the template and into lxc-create itself.

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

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

Title:
  --bindhome option should be on lxc-create, not on lxc-ubuntu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043004/+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 1043010] [NEW] Update to 3.6.7

2012-08-28 Thread Robert Ancell
Public bug reported:

   =
   Release Notes for Samba 3.6.7
   August 6, 2012
   =


This is is the latest stable release of Samba 3.6.

Major enhancements in Samba 3.6.7 include:

o  Fix resolving our own Domain Local groups (bug #9052).
o  Fix migrating printers while upgrading from 3.5.x (bug #9026).


Changes since 3.6.6:


o   Jeremy Allison j...@samba.org
* BUG 8974: Fix kernel oplocks when uid(file) != uid(process).
* BUG 8989: Send correct responses to NT Transact Secondary when no data and
  no params for the Trans2 calls are set.
* BUG 9034: Fix typo in set_re_uid() call when USE_SETRESUID selected in
  configure.


o   David Binderman dcb...@hotmail.com
* BUG 9062: rpcclient: Fix bad call to data_blob_const.


o   Günther Deschner g...@samba.org
* BUG 9026: Fix migrating printers while upgrading from 3.5.x.


o   David Disseldorp dd...@samba.org
* BUG 8719: Printing fails in function cups_job_submit.
* BUG 9026: Fix migrating printers while upgrading from 3.5.x.


o   Olaf Flebbe o.fle...@science-computing.de
* BUG 8552: Correct documentation of case sensitive.


o   Björn Jacke b...@sernet.de
* BUG 8996: Fix build without ads support.


o   Volker Lendecke v...@samba.org
* BUG 9003: Fix posix acl on gpfs.
* BUG 9040: Using asynchronous IO with SMB2 can return NT_STATUS_FILE_CLOSED
  in error instead ofNT_STATUS_FILE_LOCK_CONFLICT.


o   Stefan Metzmacher me...@samba.org
* BUG 9002: Don't turn negative cache entries into valid idmappings.
* BUG 9022: Make vfs_gpfs less verbose in get/set_xattr functions.
* BUG 9057: Fix bugs in SMB2 credit handling code.


o   Jiri Popelka jpope...@redhat.com
* BUG 9055: Fix build against CUPS 1.6.


o   Jura Sasek jiri.sa...@oracle.com
* BUG 9037: Fix 'net ads join' on T4 (sun4v) systems on Solaris 10.


o   Andreas Schneider a...@samba.org
* BUG 9052: Fix resolving our own Domain Local groups.

** Affects: samba (Ubuntu)
 Importance: Wishlist
 Status: Triaged


** Tags: upgrade-software-version

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

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

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

Title:
  Update to 3.6.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1043010/+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 1043018] [NEW] lxc-ls lists running containers multiple times

2012-08-28 Thread Dan Kegel
Public bug reported:

This seems wrong:

$ lxc-ls
demo_centos5  demo_centos6  demofedora16  demo_ubuntu_1004  demo_ubuntu_1204  
demo_ubuntu_1204-temp-NjwI1BQ  ubu12-bb-01-ubu12
ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  
ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12
ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  
ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12  ubu12-bb-01-ubu12

Lessee: lxc-ls does
active=$(netstat -xa 2/dev/null | grep $lxcpath | \
sed -e 's#.*'$lxcpath/'\(.*\)/command#\1#');

which expands to

++ netstat -xa
++ grep /var/lib/lxc
++ sed -e 's#.*/var/lib/lxc/\(.*\)/command#\1#'
+ active='ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
ubu12-bb-01-ubu12
...

netstat -xa | grep /var/lib/lxc shows
$ netstat -xa | grep /var/lib/lxc
unix  2  [ ACC ] STREAM LISTENING 1509155  
@/var/lib/lxc/ubu12-bb-01-ubu12/command
unix  2  [ ] STREAM CONNECTING0
@/var/lib/lxc/ubu12-bb-01-ubu12/command
unix  2  [ ] STREAM CONNECTING0
@/var/lib/lxc/ubu12-bb-01-ubu12/command
unix  3  [ ] STREAM CONNECTING0
@/var/lib/lxc/ubu12-bb-01-ubu12/command

So,  perhaps that should be grep LISTENING.*$lxcpath ?

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

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

Title:
  lxc-ls lists running containers multiple times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043018/+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 966944] Re: proxy support not fully working

2012-08-28 Thread Chris Halse Rogers
Hello Yoann, or anyone else affected,

Accepted vm-builder into precise-proposed. The package will build now
and be available at http://launchpad.net/ubuntu/+source/vm-
builder/0.12.4+bzr477-0ubuntu3 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 change the bug tag from
verification-needed to verification-done.  If it does not, 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: vm-builder (Ubuntu Precise)
   Status: In Progress = Fix Committed

** Tags added: verification-needed

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

Title:
  proxy support not fully working

To manage notifications about this bug go to:
https://bugs.launchpad.net/vmbuilder/+bug/966944/+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 1008225] Re: vmbuilder fails using tmpfs due to upstart restarting cron in the tmpfs

2012-08-28 Thread Chris Halse Rogers
Hello Tokuko, or anyone else affected,

Accepted vm-builder into precise-proposed. The package will build now
and be available at http://launchpad.net/ubuntu/+source/vm-
builder/0.12.4+bzr477-0ubuntu3 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 change the bug tag from
verification-needed to verification-done.  If it does not, 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: vm-builder (Ubuntu Precise)
   Status: In Progress = Fix Committed

** Tags added: verification-needed

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

Title:
  vmbuilder fails using tmpfs due to upstart restarting cron in the
  tmpfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1008225/+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 1008225] Re: vmbuilder fails using tmpfs due to upstart restarting cron in the tmpfs

2012-08-28 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/precise/vm-builder/precise-
proposed

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

Title:
  vmbuilder fails using tmpfs due to upstart restarting cron in the
  tmpfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/1008225/+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 1043052] [NEW] [FFE] add pre-mount container startup hook

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

It is possible to use an ecryptfs backing store for a container's
rootfs.  Advantages include the inability of unprivileged processes to
see the container's file contents, and, if the host is a cloud instance,
confidence that when disk space is recycled for a new instance,
container data will be scrambled.

To do this right, the container rootfs should be mounted in the
container's namespace (so after clone(2)) and before its rootfs is
mounted.  That requires a new hook, 'pre-start'.

This hook is trivial to add.  The patch to add it will be attached to
this bug for the release team's review.

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

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

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

Title:
  [FFE] add pre-mount container startup hook

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043052/+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 1043052] Re: [FFE] add pre-mount container startup hook

2012-08-28 Thread Serge Hallyn
** Patch added: lxc-add-premount-hook.patch
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043052/+attachment/3281426/+files/lxc-add-premount-hook.patch

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

Title:
  [FFE] add pre-mount container startup hook

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1043052/+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 1042864] Re: Failure to enlist due to preseed errors

2012-08-28 Thread Julian Edwards
I found the problem, the enlist_userdata template is missing from
/usr/share/maas/preseeds/

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

** Changed in: maas
   Status: Incomplete = Invalid

** Branch linked: lp:~andreserl/maas/maas_missing_preseed_setuppy

** Changed in: maas
   Status: Invalid = In Progress

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

Title:
  Failure to enlist due to preseed errors

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1042864/+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 1018094] Re: failed with nslookup for www.google.com, others domain names are fine

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

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

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

Title:
  failed with nslookup for www.google.com, others domain names are fine

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

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


[Bug 914160] Re: [MIR] openvswitch

2012-08-28 Thread Ben Pfaff
 While not a condition of this MIR, IMHO it would be good to coordinate
with Ben to see if what is happening for wheezy is good for 12.10.

I'm not sure what I'm being asked here, can you be more explicit?

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

Title:
  [MIR] openvswitch

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

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


[Bug 1042864] Re: Failure to enlist due to preseed errors

2012-08-28 Thread Julian Edwards
** Changed in: maas
   Status: In Progress = Fix Released

** Changed in: maas (Ubuntu)
   Status: New = 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/1042864

Title:
  Failure to enlist due to preseed errors

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1042864/+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 1042543] [NEW] package libreoffice-help-en-us 1:3.3.4-0ubuntu1.2 failed to install/upgrade: short read on buffer copy for backend dpkg-deb κατά το `./usr/share/libreoffice/basis3.3/help/en/schart

2012-08-28 Thread Boudakidisp
Public bug reported:

i dont know

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libreoffice-help-en-us 1:3.3.4-0ubuntu1.2
ProcVersionSignature: Ubuntu 2.6.38-15.65-generic 2.6.38.8
Uname: Linux 2.6.38-15-generic i686
Architecture: i386
Date: Mon Aug 27 08:23:34 2012
ErrorMessage: short read on buffer copy for backend dpkg-deb κατά το 
`./usr/share/libreoffice/basis3.3/help/en/schart.idxl/_0.cfs'
InstallationMedia: Ubuntu 10.04.2 LTS Lucid Lynx - Release i386 (20110211.1)
PackageArchitecture: all
SourcePackage: libreoffice
Title: package libreoffice-help-en-us 1:3.3.4-0ubuntu1.2 failed to 
install/upgrade: short read on buffer copy for backend dpkg-deb κατά το 
`./usr/share/libreoffice/basis3.3/help/en/schart.idxl/_0.cfs'
UpgradeStatus: Upgraded to natty on 2011-06-13 (441 days ago)

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


** Tags: apport-package i386 natty

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

Title:
  package libreoffice-help-en-us 1:3.3.4-0ubuntu1.2 failed to
  install/upgrade: short read on buffer copy for backend dpkg-deb κατά
  το `./usr/share/libreoffice/basis3.3/help/en/schart.idxl/_0.cfs'

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

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

[Bug 1042543] Re: package libreoffice-help-en-us 1:3.3.4-0ubuntu1.2 failed to install/upgrade: short read on buffer copy for backend dpkg-deb κατά το `./usr/share/libreoffice/basis3.3/help/en/schart.i

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

Title:
  package libreoffice-help-en-us 1:3.3.4-0ubuntu1.2 failed to
  install/upgrade: short read on buffer copy for backend dpkg-deb κατά
  το `./usr/share/libreoffice/basis3.3/help/en/schart.idxl/_0.cfs'

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

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

[Bug 1042471] Re: Ubuntu 12.04 Server doesn't respond to ARP request

2012-08-28 Thread Jamie Royer
This is not a bug.  There is an issue with my router.

I'm using DD-WRT and it is set to client bridge which is performing ARP
forwarding.  The ARP packets coming from the SIP phone are padded
(ethernet packet is 60 bytes) where as the ARP packets from the Ubuntu
desktop are not padded (ethernet packet is 42 bytes).

Sorry for raising a false alarm.  Hopefully I can re-configure my router
correctly.

Jamie

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

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

Title:
  Ubuntu 12.04 Server doesn't respond to ARP request

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

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


[Bug 1042276] Re: software-properties-kde and policykit1 translation is a mix between english and german

2012-08-28 Thread Steffen Eibicht
as far as I know, the GTK-version of software-properties is 100%
translated, because  in Ubuntu Precise (with Unity Desktop) and Xubuntu
Precise (XFCE), this issue does not exist. Only the Kubuntu (KDE)
version is affected.

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

Title:
  software-properties-kde and policykit1 translation is a mix between
  english and german

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1042276/+subscriptions

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


[Bug 1003406] Re: 168c:0023 Wireless network continuously disconnecting and reconnecting

2012-08-28 Thread Miek Gieben
kernel 3.6-rc3 seems to work better in the wifi department. It only
broke suspendresume on my laptop

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

Title:
  168c:0023 Wireless network continuously disconnecting and reconnecting

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

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


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

2012-08-28 Thread Miek Gieben
A new day, a new kernel: 3.6-rc3, suspendresume does not work anymore,
but the wireless as much more stable.

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

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

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

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


[Bug 1042551] Re: compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

2012-08-28 Thread Alberto Mardegan
** Visibility changed to: Public

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042547] [NEW] Debconf/Log.pm

2012-08-28 Thread Tigran Hovhannisyan
Public bug reported:

Good day.

I can't update my system(ubuntu 12.04) becouse i recieve that message

Can't locate Debconf/Log.pm in @INC...

but my @INC contain that package.

What can I do?
Thanks.
___
With best regards
Tigran Hovhannisyan.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: tzdata 2012e-0ubuntu0.12.04
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic-pae 3.2.24
Uname: Linux 3.2.0-29-generic-pae i686
ApportVersion: 2.0.1-0ubuntu12
Architecture: i386
Date: Tue Aug 28 09:56:57 2012
DpkgTerminalLog:
 Setting up tzdata (2012e-0ubuntu0.12.04) ...
 Can't locate Debconf/Db.pm in @INC (@INC contains: 
/usr/local/lib/perl5/site_perl/5.16.0/i686-linux 
/usr/local/lib/perl5/site_perl/5.16.0 /usr/local/lib/perl5/5.16.0/i686-linux 
/usr/local/lib/perl5/5.16.0 .) at /usr/share/debconf/frontend line 6.
 BEGIN failed--compilation aborted at /usr/share/debconf/frontend line 6.
 dpkg: error processing tzdata (--configure):
  subprocess installed post-installation script returned error exit status 2
DuplicateSignature:
 Setting up tzdata (2012e-0ubuntu0.12.04) ...
 Can't locate Debconf/Db.pm in @INC (@INC contains: 
/usr/local/lib/perl5/site_perl/5.16.0/i686-linux 
/usr/local/lib/perl5/site_perl/5.16.0 /usr/local/lib/perl5/5.16.0/i686-linux 
/usr/local/lib/perl5/5.16.0 .) at /usr/share/debconf/frontend line 6.
 BEGIN failed--compilation aborted at /usr/share/debconf/frontend line 6.
 dpkg: error processing tzdata (--configure):
  subprocess installed post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
PackageArchitecture: all
SourcePackage: tzdata
Title: package tzdata 2012e-0ubuntu0.12.04 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 precise

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

Title:
  Debconf/Log.pm

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

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


[Bug 1042547] Re: Debconf/Log.pm

2012-08-28 Thread Tigran Hovhannisyan
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042547

Title:
  Debconf/Log.pm

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

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


[Bug 1042546] [NEW] Sound card is muted or mute being constantly toggled when no audio is played

2012-08-28 Thread Lasse Kärkkäinen
Public bug reported:

For a long time, Ubuntu has muted the sound card whenever no audio is
played, presumably to save power. On my laptop this has two nasty side
effects. First of all, the mute button LED lights up, even though the
the volume control is not set on mute (in the user interface). Thus,
pressing the lit button does not have the expected effect of unmuting
but the opposite. Secondly, the audio device takes about two seconds to
start up after unmuting, causing short sounds not being heard at all and
the beginning of longer sounds being missing or garbled.

Lately this has getting worse, with the mute status getting toggled
roughly once per second all the time when no audio is being played. This
makes the mute button LED blink in a highly annoying manner, and it also
causes the laptop speaker to click constantly.

On this particular sound device, at least, it would seem best if the
device was never muted for power saving reasons but only when the user
actually has muted audio output.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: pulseaudio 1:1.1-0ubuntu15.1
ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
Uname: Linux 3.2.0-26-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: AD198x Analog [AD198x Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
ApportVersion: 2.0.1-0ubuntu8
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: AD198x Analog [AD198x Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  tronic 4776 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xe0644000 irq 46'
   Mixer name   : 'Analog Devices AD1981'
   Components   : 'HDA:11d41981,103c30c9,00100200 
HDA:14f12c06,103c1379,0010'
   Controls  : 12
   Simple ctrls  : 10
Date: Tue Aug 28 08:53:31 2012
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=fi_FI.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
UpgradeStatus: Upgraded to precise on 2012-05-13 (106 days ago)
dmi.bios.date: 11/04/2008
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68MSP Ver. F.0E
dmi.board.name: 30C9
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 75.28
dmi.chassis.asset.tag: CNF7516B1Y
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68MSPVer.F.0E:bd11/04/2008:svnHewlett-Packard:pnHPCompaq2510p(RU537EA#AK8):pvrF.0E:rvnHewlett-Packard:rn30C9:rvrKBCVersion75.28:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP Compaq 2510p (RU537EA#AK8)
dmi.product.version: F.0E
dmi.sys.vendor: Hewlett-Packard

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


** Tags: amd64 apport-bug precise

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

Title:
  Sound card is muted or mute being constantly toggled when no audio is
  played

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

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


[Bug 1042546] Re: Sound card is muted or mute being constantly toggled when no audio is played

2012-08-28 Thread Lasse Kärkkäinen
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042546

Title:
  Sound card is muted or mute being constantly toggled when no audio is
  played

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

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


[Bug 1041760] Re: i368 netboot install xubuntu fails installing software

2012-08-28 Thread Redmar
I had not noticed the logs were in Dutch, sorry. The problem is indeed
unmet dependencies, does this mean this bug will go away as new packages
hit the archive?

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

Title:
  i368 netboot install xubuntu fails installing software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041760/+subscriptions

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


[Bug 1039594] Re: evolution-calendar-factory crashed with SIGSEGV in g_rec_mutex_get_impl()

2012-08-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: evolution-data-server (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/1039594

Title:
  evolution-calendar-factory crashed with SIGSEGV in
  g_rec_mutex_get_impl()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-data-server/+bug/1039594/+subscriptions

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


[Bug 1037483] Re: Needs NVIDIA driver 304.37

2012-08-28 Thread Boaz Dodin
New stable version 304.43 just been released :
http://www.geforce.com/drivers/results/47534

Release Highlights:
* Added support for the following GPUs:
   GeForce GTX 660 Ti
   Quadro K5000
   Quadro K5000M
   Quadro K4000M
   Quadro K3000M
   NVS 510
* Fixed a bug that caused pre-release versions of X.Org xserver 1.13 to crash 
when certain GLX operations were performed, such as when starting Firefox.
* Fixed a bug that caused VDPAU to hang when expanding the YouTube Flash Player.
* Fixed a bug that caused gnome-settings-daemon to revert display configuration 
changes made by nvidia-settings.
* Updated nvidia-settings to use RandR per-CRTC gamma control, when available. 
When controlling an X server with support for RandR 1.2, nvidia-settings will 
display the color correction widget as a tab within each display device page, 
instead of a per-X screen color correction page.
* Fixed a bug that prevented the display palette from being updated immediately 
after an application called XStoreColors.
* Added the ability to select and move X screens in the X Server Display 
Configuration page of nvidia-settings via Ctrl-(Left)Click + Drag.

** Summary changed:

- Needs NVIDIA driver 304.37
+ Needs NVIDIA driver 304.43

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

Title:
  Needs NVIDIA driver 304.43

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

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


[Bug 1032251] Re: EOG hangs in Ubuntu 12.04

2012-08-28 Thread angus73
Sebastien, do you mean synaptics (the touchpad driver)? If so, would it
be useful trying to reproduce the bug having previously disabled the
touchpad (by disconnecting it physically, or unloading a module, or I
don't know whatelse...)

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

Title:
  EOG hangs in Ubuntu 12.04

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

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


[Bug 1042553] [NEW] comgt fails when USB modem is dialed in

2012-08-28 Thread Rolf Leggewie
Public bug reported:

$ lsusb -d 12d1:1003
Bus 001 Device 067: ID 12d1:1003 Huawei Technologies Co., Ltd. E220 HSDPA Modem 
/ E270 HSDPA/HSUPA Modem

comgt package 0.32-2 on lucid.  When I am dialed in via the USB stick
(network-manager), I can no longer measure the signal strength.

$ sudo comgt -d /dev/ttyUSB1
 ***SIM ERROR***
Check device port configuration.
Check SIM is inserted
Test SIM in a mobile phone?

This works when there is no connection.

$ sudo comgt -d /dev/ttyUSB0
SIM ready
Waiting for Registration..(120 sec max)
Registered on Home network: SMART,2
Signal Quality: 17,99
$ sudo comgt -d /dev/ttyUSB1
SIM ready
Waiting for Registration..(120 sec max)
Registered on Home network: SMART,2
Signal Quality: 14,99

But after this I have to unplug and replug the device before I can use
it again with network-manager.  Not sure if this is a kernel bug, one in
comgt or network-manager.  The comgt developer explicitly confirms This
means for example you can have an active PPP connection on /dev/ttyUSB0
(or/dev/noz0) and still get signal stength reports.
(http://www.pharscape.org/forum/index.php?topic=15.0)

** Affects: comgt (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/1042553

Title:
  comgt fails when USB modem is dialed in

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

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


[Bug 1042547] Re: Debconf/Log.pm

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

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

Title:
  Debconf/Log.pm

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

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


[Bug 1042478] Re: Login gets stuck in a loop (login screen, partly loaded home screen, messed up screen)

2012-08-28 Thread Jackson Doak
i can as i cant log in

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

Title:
  Login gets stuck in a loop (login screen, partly loaded home screen,
  messed up screen)

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

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


[Bug 1042478] Re: Login gets stuck in a loop (login screen, partly loaded home screen, messed up screen)

2012-08-28 Thread Jackson Doak
my laptop ran out of power and reset the vm

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

Title:
  Login gets stuck in a loop (login screen, partly loaded home screen,
  messed up screen)

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

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


[Bug 1042551]

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168

StacktraceTop:
 all_enums () from /tmp/tmp6NSmVw/usr/lib/x86_64-linux-gnu/dri/swrast_dri.so
 ?? ()
 ?? ()
 ?? ()
 ?? ()

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042551] Stacktrace.txt

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168


** Attachment added: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1042551/+attachment/3280156/+files/Stacktrace.txt

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042551] StacktraceSource.txt

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168


** Attachment added: StacktraceSource.txt
   
https://bugs.launchpad.net/bugs/1042551/+attachment/3280157/+files/StacktraceSource.txt

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042551] ThreadStacktrace.txt

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168


** Attachment added: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1042551/+attachment/3280158/+files/ThreadStacktrace.txt

** Changed in: unity (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/1042551

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042551] Crash report cannot be processed

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168

Thank you for your report!

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

compiz-plugins-main-default version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
libpci3 version 1:3.1.9-5ubuntu1 required, but 1:3.1.9-5ubuntu2 is available
libglapi-mesa version 8.0.4-1ubuntu1 required, but 
9.0~git20120821.c1114c61-0ubuntu2 is available
libdecoration0 version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
libbamf3-0 version 0.2.122+webapps1-0ubuntu1 required, but 0.2.122-0ubuntu1 is 
available
compiz-gnome version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
bamfdaemon version 0.2.122+webapps1-0ubuntu1 required, but 0.2.122-0ubuntu1 is 
available
compiz-plugins-default version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
compiz version 1:0.9.8+bzr3319-0ubuntu1 required, but 1:0.9.8+bzr3319-0ubuntu2 
is available
libglu1-mesa version 8.0.4-1ubuntu1 required, but 
9.0~git20120821.c1114c61-0ubuntu2 is available
metacity-common version 1:2.34.3-3ubuntu1 required, but 1:2.34.5-0ubuntu1 is 
available
libcompizconfig0 version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
compiz-core version 1:0.9.8+bzr3319-0ubuntu1 required, but 
1:0.9.8+bzr3319-0ubuntu2 is available
outdated debug symbol package for initscripts: package version 
2.88dsf-13.10ubuntu13 dbgsym version 2.88dsf-13.10ubuntu11.1
libgl1-mesa-glx version 8.0.4-1ubuntu1 required, but 
9.0~git20120821.c1114c61-0ubuntu2 is available
gsettings-desktop-schemas version 3.5.90-0ubuntu1 required, but 3.5.90-0ubuntu2 
is available
package libmetacity-private0 does not exist, ignoring
outdated debug symbol package for module-init-tools: package version 
3.16-1ubuntu3 dbgsym version 3.16-1ubuntu2


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

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


** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1042551/+attachment/3280146/+files/CoreDump.gz

** Tags removed: need-amd64-retrace

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1033533] Re: Xorg crashed with SIGABRT: exaMemcpyBox with src=0x0 - Unhandled dwarf expression opcode 0xfa

2012-08-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: xorg-server (Ubuntu Precise)
   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/1033533

Title:
  Xorg crashed with SIGABRT: exaMemcpyBox with src=0x0 - Unhandled
  dwarf expression opcode 0xfa

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1033533/+subscriptions

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


[Bug 1042551] Re: compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

2012-08-28 Thread Daniel van Vugt
*** This bug is a duplicate of bug 927168 ***
https://bugs.launchpad.net/bugs/927168

I'm going to assume this is bug 927168 because it looks similar enough.

** This bug has been marked a duplicate of bug 927168
   compiz crashed with SIGSEGV in memmove() from drisw_update_tex_buffer() from 
dri_set_tex_buffer2() from drisw_bind_tex_image() from __glXBindTexImageEXT() 
from TfpTexture::enable() from enableFragmentOperationsAndDrawGeometry()

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

Title:
  compiz crashed with SIGSEGV in TfpTexture::bindTexImage()

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

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


[Bug 1042231] Re: InstallPackageNames should not return until the package has been installed

2012-08-28 Thread Alberto Mardegan
Martin Pitt would be the most competent to fix this bug, but it's not exactly 
his responsibility, and it's unlikely that he'll find time to fix this soon.
So, while I'm assigning the bug to him (just so that he doesn't forget about 
it), anyone else is welcome to step in and reclaim the bug -- after notifying 
Martin about it.

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

** No longer affects: sessioninstaller

** Package changed: sessioninstaller (Ubuntu) = sessioninstaller

** Also affects: online-accounts-account-plugins
   Importance: Undecided
   Status: New

** Changed in: sessioninstaller
 Assignee: (unassigned) = Martin Pitt (pitti)

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

Title:
  InstallPackageNames should not return until the package has been
  installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/online-accounts-account-plugins/+bug/1042231/+subscriptions

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


[Bug 901105] Re: Asus K54C wireless led is always off

2012-08-28 Thread AceLan Kao
Quantal and Precise SRU sent

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

Title:
  Asus K54C wireless led is always off

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

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


[Bug 1042556] [NEW] Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Craig Ringer
Public bug reported:

Hi

The Debian packages for PostgreSQL (and thus the Ubuntu packages because
of the shared use of pg_wrapper) are subject to a potentially critical
data loss bug because of an unsafe procedure for restarting PostgreSQL.

This issue has been recognised and patched in Debian:


http://anonscm.debian.org/loggerhead/pkg-postgresql/postgresql-common/trunk/revision/1181
http://archives.postgresql.org/pgsql-general/2012-07/msg00501.php

but should be urgently included in Ubuntu and backported.

I quote Tom Lane (key PostgreSQL dev):

[The] forced unlink on the postmaster.pid file [...] (a) is entirely
unnecessary, and (b) defeats the safety interlock against starting a
new postmaster before all the old backends have flushed out.

It is VITAL that pg_wrapper NEVER unlink the postmaster.pid file. The
postmaster will do that its self if it finds the pid to be stale, but
only after performing some checks to make sure there are no backends
still running and to ensure that there's no other postmaster running
against the database.

See:
http://archives.postgresql.org/pgsql-general/2012-07/msg00475.php

Context here:

http://archives.postgresql.org/pgsql-general/2012-07/msg00350.php

http://dba.stackexchange.com/questions/20959/recover-postgresql-database-from-wal-errors-on-startup/20961

** Affects: postgresql-common (Ubuntu)
 Importance: Undecided
 Status: Confirmed

** Affects: postgresql-common (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: patch-accepted-debian

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

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

** Changed in: postgresql-common (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/1042556

Title:
  Critical data loss bug in postgresql-common initscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-common/+bug/1042556/+subscriptions

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


[Bug 1042556] Re: Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Craig Ringer
Debian patch: http://anonscm.debian.org/loggerhead/pkg-postgresql
/postgresql-common/trunk/revision/1181

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

Title:
  Critical data loss bug in postgresql-common initscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-common/+bug/1042556/+subscriptions

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


[Bug 862776] Re: apt-get --install-suggests install is a NOOP

2012-08-28 Thread Daniel Hartwig
** Changed in: apt (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  apt-get  --install-suggests install  is a NOOP

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

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


[Bug 1042556] Re: Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Craig Ringer
BTW, while the Debian patch says potentially dangerous, Tom Lane (core
Pg developer  Red Hat package maintainer) says horridly, horridly
dangerous and stupid.

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

Title:
  Critical data loss bug in postgresql-common initscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-common/+bug/1042556/+subscriptions

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


[Bug 1010439] Re: ifup fails prematurely if the same static IPv4 address was configured per kernel command line

2012-08-28 Thread Matthias Andree
** Changed in: ifupdown (Ubuntu)
   Status: Expired = New

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

Title:
  ifup fails prematurely if the same static IPv4 address was configured
  per kernel command line

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

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


[Bug 1042556] Re: Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Martin Pitt
This is fixed in Quantal.

** Changed in: postgresql-common (Ubuntu)
   Status: Confirmed = Fix Released

** Changed in: postgresql-common (Ubuntu)
   Importance: Undecided = High

** Also affects: postgresql-common (Ubuntu Lucid)
   Importance: Undecided
   Status: New

** Also affects: postgresql-common (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: postgresql-common (Ubuntu Lucid)
   Status: New = Triaged

** Changed in: postgresql-common (Ubuntu Precise)
   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/1042556

Title:
  Critical data loss bug in postgresql-common initscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-common/+bug/1042556/+subscriptions

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


[Bug 1042556] Re: Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Martin Pitt
Adding tasks for LTSes.

** Changed in: postgresql-common (Ubuntu Precise)
 Assignee: (unassigned) = Martin Pitt (pitti)

** Changed in: postgresql-common (Ubuntu Precise)
   Importance: Undecided = High

** Changed in: postgresql-common (Ubuntu Lucid)
   Importance: Undecided = High

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

Title:
  Critical data loss bug in postgresql-common initscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-common/+bug/1042556/+subscriptions

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


[Bug 1042413] Re: compiz crashed with SIGABRT in assert() from intel_resolve_map_set() from brw_draw_prims() from vbo_draw_arrays() from GLWindow::glDrawGeometry()

2012-08-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mesa (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/1042413

Title:
  compiz crashed with SIGABRT in assert() from intel_resolve_map_set()
  from brw_draw_prims() from vbo_draw_arrays() from
  GLWindow::glDrawGeometry()

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

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


[Bug 1042413] Re: compiz crashed with SIGABRT in assert() from intel_resolve_map_set() from brw_draw_prims() from vbo_draw_arrays() from GLWindow::glDrawGeometry()

2012-08-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: unity (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/1042413

Title:
  compiz crashed with SIGABRT in assert() from intel_resolve_map_set()
  from brw_draw_prims() from vbo_draw_arrays() from
  GLWindow::glDrawGeometry()

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

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


[Bug 1041376] Re: package postgresql-9.1 9.1.5-0ubuntu12.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-08-28 Thread Martin Pitt
2012-08-24 18:38:50 GMT FATAL:  could not write lock file
postmaster.pid: No space left on device

Seems you need to clean up your hard disk a bit?

** Changed in: postgresql-9.1 (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/1041376

Title:
  package postgresql-9.1 9.1.5-0ubuntu12.04 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/postgresql-9.1/+bug/1041376/+subscriptions

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


[Bug 1040219] Re: Didn't pick up new flickr account

2012-08-28 Thread David Callé
immediately after installing the lens, without logging out or
restarting Unity? Unity doesn't automatically displays new lenses, it
needs to be restarted.

Nevertheless, nothing specific to do to return to the first state of the
lens, it doesn't store any configuration (except a backup of Shotwell
database in ~/.cache/unity-lens-photos). Killing unity-lens-photos and
removing accounts is enough.

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

Title:
  Didn't pick up new flickr account

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-lens-photos/+bug/1040219/+subscriptions

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


[Bug 1042589] [NEW] Unable to launch nvidia-settings from the Dash. Launches correctly from CLI

2012-08-28 Thread Louis Bouchard
Public bug reported:

Just let me know if you need any other kind of data collected. Problem
is systematic

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xorg 1:7.6+12ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] est un dossier: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  295.40  Thu Apr  5 21:37:00 
PDT 2012
 GCC version:  gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
.tmp.unity.support.test.0:
 
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,gnomecompat,mousepoll,wall,grid,snap,regex,animation,move,vpswitch,place,resize,imgpng,workarounds,fade,unitymtgrabhandles,session,expo,scale,ezoom,unityshell]
CompositorRunning: compiz
Date: Tue Aug 28 08:38:19 2012
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
DkmsStatus:
 nvidia-current, 295.40, 3.2.0-26-generic, x86_64: installed
 nvidia-current, 295.40, 3.2.0-29-generic, x86_64: installed
 virtualbox, 4.1.12, 3.2.0-25-generic, x86_64: installed
 virtualbox, 4.1.12, 3.2.0-26-generic, x86_64: installed
 virtualbox, 4.1.12, 3.2.0-29-generic, x86_64: installed
ExtraDebuggingInterest: Yes, even including gdb or git bisection work if needed
GraphicsCard:
 NVIDIA Corporation GT218 [NVS 3100M] [10de:0a6c] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company Device [103c:172b]
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
JockeyStatus:
 xorg:nvidia_current - Pilote d'accélération graphique NVIDIA (Propriétaire, 
Activé, Utilisé)
 xorg:nvidia_current_updates - Pilotes graphiques accélérés NVIDIA (mises à 
jour postérieures à la sortie d'Ubuntu) (Propriétaire, Désactivé, Non utilisé)
MachineType: Hewlett-Packard HP EliteBook 8440p
PccardctlStatus:
 Socket 0:
   3.3V
  16-bit
  PC Card
   Subdevice 0 (function 0) bound to driver pata_pcmcia
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-29-generic 
root=/dev/mapper/hostname-root ro quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
XorgConf:
 Section Device
Identifier  Default Device
Option  NoLogoTrue
 EndSection
dmi.bios.date: 11/25/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 68CCU Ver. F.11
dmi.board.name: 172B
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 30.31
dmi.chassis.asset.tag: CZC109660H
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr68CCUVer.F.11:bd11/25/2010:svnHewlett-Packard:pnHPEliteBook8440p:pvr:rvnHewlett-Packard:rn172B:rvrKBCVersion30.31:cvnHewlett-Packard:ct10:cvr:
dmi.product.name: HP EliteBook 8440p
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.7.8-0ubuntu1.4
version.ia32-libs: ia32-libs 20090808ubuntu36
version.libdrm2: libdrm2 2.4.32-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.3+8.0.2-0ubuntu3.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.3+8.0.2-0ubuntu3.2
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1.2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build2

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


** Tags: amd64 apport-bug compiz-0.9 precise running-unity ubuntu

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

Title:
  Unable to launch nvidia-settings from the Dash. Launches correctly
  from CLI

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

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

[Bug 1042589] Re: Unable to launch nvidia-settings from the Dash. Launches correctly from CLI

2012-08-28 Thread Louis Bouchard
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042589

Title:
  Unable to launch nvidia-settings from the Dash. Launches correctly
  from CLI

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

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


[Bug 1042588] [NEW] package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade: package libsqlite3-0 is already installed and configured

2012-08-28 Thread anabelli
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

Public bug reported:

Error after dist-upgrade.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libsqlite3-0 3.7.9-2ubuntu1.1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
Date: Mon Aug 27 20:09:41 2012
ErrorMessage: package libsqlite3-0 is already installed and configured
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
SourcePackage: dpkg
Title: package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade: package 
libsqlite3-0 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package precise

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

Title:
  package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade:
  package libsqlite3-0 is already installed and configured

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

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


[Bug 1042588] Re: package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade: package libsqlite3-0 is already installed and configured

2012-08-28 Thread anabelli
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

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

Title:
  package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade:
  package libsqlite3-0 is already installed and configured

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

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


[Bug 1042587] [NEW] package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupscgi1 is already installed and configured

2012-08-28 Thread anabelli
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

Public bug reported:

Error after dist-upgrade.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libcupscgi1 1.5.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
Date: Mon Aug 27 20:09:41 2012
ErrorMessage: package libcupscgi1 is already installed and configured
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
SourcePackage: cups
Title: package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package 
libcupscgi1 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package precise

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

Title:
  package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupscgi1 is already installed and configured

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

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


[Bug 1042587] Re: package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupscgi1 is already installed and configured

2012-08-28 Thread anabelli
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

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

Title:
  package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupscgi1 is already installed and configured

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

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


[Bug 1042586] [NEW] package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupsmime1 is already installed and configured

2012-08-28 Thread anabelli
Public bug reported:

Error after dist-upgrade.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: libcupsmime1 1.5.3-0ubuntu4
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
Date: Mon Aug 27 20:09:41 2012
ErrorMessage: package libcupsmime1 is already installed and configured
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
SourcePackage: dpkg
Title: package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package 
libcupsmime1 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package precise

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

Title:
  package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupsmime1 is already installed and configured

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

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


[Bug 1042586] Re: package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupsmime1 is already installed and configured

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

Title:
  package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupsmime1 is already installed and configured

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

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


[Bug 989787] Re: Resume from suspension fails on Ubuntu 12.04

2012-08-28 Thread Lee Crites
I think this was closed prematurely. I have the problem, and my Acer
laptop isn't the same configuration as Marco's. The suspend works in
SuSE, CentOS but not in Ubuntu. I was going to test Mint, but haven't
yet done so. If this is not being considered a real bug, then I'm
probably going to either go back to a previous version of Ubuntu (which
did work with this hardware) or perhaps try Mint and see if it works
there.

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

Title:
  Resume from suspension fails on Ubuntu 12.04

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

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


[Bug 1042587] Re: package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupscgi1 is already installed and configured

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

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

** Tags removed: need-duplicate-check

** This bug has been marked a duplicate of bug 1042586
   package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package 
libcupsmime1 is already installed and configured

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

Title:
  package libcupscgi1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupscgi1 is already installed and configured

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

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


[Bug 1042586] Re: package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package libcupsmime1 is already installed and configured

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

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

Title:
  package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package
  libcupsmime1 is already installed and configured

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

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


[Bug 1041976] Re: apt repositories are broken for precise

2012-08-28 Thread Lauri Rintala
The Finnish repos are now back in action.

** Changed in: ubuntu
   Status: Confirmed = Fix Released

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

Title:
  apt repositories are broken for precise

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

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


[Bug 1042594] [NEW] package initramfs-tools 0.99ubuntu13 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-08-28 Thread Charles Ludwig
Public bug reported:

will not upgrade

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: initramfs-tools 0.99ubuntu13
ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
Uname: Linux 3.2.0-26-generic x86_64
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
Date: Tue Aug 28 01:42:05 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
PackageArchitecture: all
SourcePackage: initramfs-tools
Title: package initramfs-tools 0.99ubuntu13 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: initramfs-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package precise

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

Title:
  package initramfs-tools 0.99ubuntu13 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1042594/+subscriptions

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


[Bug 1042594] Re: package initramfs-tools 0.99ubuntu13 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2012-08-28 Thread Charles Ludwig
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042594

Title:
  package initramfs-tools 0.99ubuntu13 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1042594/+subscriptions

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


[Bug 1042593] [NEW] package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-08-28 Thread Charles Ludwig
Public bug reported:

kernel will not update

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: linux-image-3.2.0-29-generic 3.2.0-29.46
ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
Uname: Linux 3.2.0-26-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  charles1472 F pulseaudio
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfeaf8000 irq 44'
   Mixer name   : 'Realtek ALC888'
   Components   : 'HDA:10ec0888,14627592,00100202'
   Controls  : 43
   Simple ctrls  : 20
Date: Tue Aug 28 01:41:55 2012
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
returned error exit status 2
HibernationDevice: RESUME=UUID=50c4a0f7-623e-49f8-a198-7a416bb4efc2
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MachineType: MSI MS-7592
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-26-generic 
root=UUID=55fcaac0-a5f7-4375-9480-5c017d19ff7c ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 1.99-21ubuntu3.1
RfKill:
 
SourcePackage: linux
Title: package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to 
install/upgrade: ErrorMessage: subprocess installed post-installation script 
returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/24/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: V1.10
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: G41M4 (MS-7592)
dmi.board.vendor: MSI
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: MSI
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrV1.10:bd08/24/2010:svnMSI:pnMS-7592:pvr1.0:rvnMSI:rnG41M4(MS-7592):rvr1.0:cvnMSI:ct3:cvr1.0:
dmi.product.name: MS-7592
dmi.product.version: 1.0
dmi.sys.vendor: MSI

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


** Tags: amd64 apport-package precise varlogdistupgradeapttermlog-examined

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

Title:
  package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

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

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


[Bug 1042593] Re: package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-08-28 Thread Charles Ludwig
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1042593

Title:
  package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

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

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


[Bug 1042588] Re: package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade: package libsqlite3-0 is already installed and configured

2012-08-28 Thread Apport retracing service
*** This bug is a duplicate of bug 1042586 ***
https://bugs.launchpad.net/bugs/1042586

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

** Tags removed: need-duplicate-check

** This bug has been marked a duplicate of bug 1042586
   package libcupsmime1 1.5.3-0ubuntu4 failed to install/upgrade: package 
libcupsmime1 is already installed and configured

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

Title:
  package libsqlite3-0 3.7.9-2ubuntu1.1 failed to install/upgrade:
  package libsqlite3-0 is already installed and configured

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

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


[Bug 1042546] Re: Sound card is muted or mute being constantly toggled when no audio is played

2012-08-28 Thread Raymond
1838.748079] hda-intel: azx_get_response timeout, switching to polling mode: 
last cmd=0x00170500
[ 1839.752094] hda-intel: No response from codec, disabling MSI: last 
cmd=0x00170500
[ 1840.760077] hda_intel: azx_get_response timeout, switching to single_cmd 
mode: last cmd=0x00170500

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

Title:
  Sound card is muted or mute being constantly toggled when no audio is
  played

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

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


[Bug 1041625] Re: X not starting after install [openchrome]

2012-08-28 Thread Erick Brunzell
Just out of curiosity I tried installing Lubuntu QQ alpha 3 on the
aforementioned hardware. All went fine other than one totally unrelated
ubiquity bug.

After installing I applied the available updates, I did NOT enable
proposed, but then it's no longer able to boot into that old (circa
2007) VIA hardware. I get the errors shown in these really horrible
pics.

I really wish i could grab better pics of the screen but I'm old, frail,
and shaky :^(

** Attachment added: failed_boot.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-openchrome/+bug/1041625/+attachment/3280250/+files/failed_boot.tar.gz

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

Title:
  X not starting after install [openchrome]

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

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


[Bug 1036078] Re: Wireless USB keyboard stopped working after upgrade to 12.04

2012-08-28 Thread Martijn Brinkers
In my case this was caused by bluetooth being locked in the bios.
Allowing bluetooth solved it.

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

Title:
  Wireless USB keyboard stopped working after upgrade to 12.04

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

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


[Bug 1042593] Re: package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 2

2012-08-28 Thread Brad Figg
dpkg: dependency problems prevent configuration of linux-image-generic:
linux-image-generic depends on linux-image-3.2.0-27-generic; however:
 Package linux-image-3.2.0-27-generic is not configured yet.


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

** Tags added: varlogdistupgradeapttermlog-examined

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

Title:
  package linux-image-3.2.0-29-generic 3.2.0-29.46 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script returned error exit status 2

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

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


[Bug 1041814] Re: weston crashed with SIGSEGV in ____longjmp_chk()

2012-08-28 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: weston (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/1041814

Title:
  weston crashed with SIGSEGV in longjmp_chk()

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

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


[Bug 1002815] Re: failed upgrade from 10.04.4 to 12.04

2012-08-28 Thread Jean-Baptiste Lallement
@ogenex, could you please file another report as your issue is different
and attach the content of /var/log/dist-upgrade. Thanks.

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

Title:
  failed upgrade from 10.04.4 to 12.04

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

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


[Bug 1042556] Re: Critical data loss bug in postgresql-common initscript

2012-08-28 Thread Craig Ringer
Thanks. I wanted to make sure this didn't slip under the radar in terms
of merging with Debian etc.

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

Title:
  Critical data loss bug in postgresql-common initscript

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