[Bug 1197884] Re: apache2.2 SSL has no forward-secrecy: need ECDHE keys

2013-11-27 Thread Robie Basak
Since this is fixed in Saucy, I'm marking this bug as Fix Released. If
you want PFS in an official Ubuntu release, use Ubuntu 13.10.

I understand that some of you want this feature backported to 12.04.
That's fine, but this is a considerable amount of work and I don't think
it falls under the Ubuntu LTS remit. If somebody wants to backport
Apache 2.4 and make it available in 12.04, please do so - see
https://wiki.ubuntu.com/UbuntuBackports for the process. Or
alternatively, publish and maintain a third party PPA and announce it
here.

Backports and PPAs are the acceptable options here. We do not backport
features to LTS releases. That's why they're LTS - because you expect
them to be stable and not introduce unnecessary regressions. You may
want PFS added, but others don't want their production systems running
on LTS messed with. So we generally do not backport features, and I
don't think PFS warrants an exception. See
https://wiki.ubuntu.com/StableReleaseUpdates for the policy. Your route
is simple: if you want a new feature, use a newer release, or sponsor
the backport work yourselves and use a third party maintained backport
or PPA.

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

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

Title:
  apache2.2 SSL has no forward-secrecy: need ECDHE keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1197884/+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 1255464] [NEW] radosgw init script missing from 0.64 onwards.

2013-11-27 Thread James Page
Public bug reported:

The radosgw upstart configurations started shipping in 13.10; however
one namespace conflicts with the radosgw init script but does not do the
same thing; so upgrades will break.

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

** Affects: ceph (Ubuntu Saucy)
 Importance: Undecided
 Status: New

** Affects: ceph (Ubuntu Trusty)
 Importance: Undecided
 Status: New

** Also affects: ceph (Ubuntu Saucy)
   Importance: Undecided
   Status: New

** Also affects: ceph (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

Title:
  radosgw init script missing from 0.64 onwards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1255464/+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 1244694] Re: Creating snapshot fails due to nonexistent temporary directory

2013-11-27 Thread Tino Schmeier
I tried to repeatedly reproduce the error. I removed the rw-permission
from abstractions/libvirt-qemu, reloaded the apparmor-profiles. I start
an new intstance an try to get an snapshot.

I have added some debug-output to the soruce code of /usr/lib/python2.7
/dist-packages/nova/virt/libvirt/driver.py to check if the directory
exists or not.

disk_delta = out_path + '.delta'
...
import os.path
disk_delta_exists = os.path.isfile(disk_delta)
LOG.debug(_(disk_delta_exists: %s) % disk_delta_exists)

domain.blockRebase(disk_path, disk_delta, 0,
   libvirt.VIR_DOMAIN_BLOCK_REBASE_COPY |
   libvirt.VIR_DOMAIN_BLOCK_REBASE_REUSE_EXT |
   libvirt.VIR_DOMAIN_BLOCK_REBASE_SHALLOW)

 LOG.debug(_(disk_delta_exists2: %s) % disk_delta_exists)


This leads to this debug-log:

2013-11-27 09:21:21.172 5568 DEBUG nova.virt.libvirt.driver 
[req-5bd8a420-2747-490f-a688-7468ffcd3c00 b6d2602f38914f20a0fec492fd1482e8 
32c4869a7fee41ecb953cd00
c3e71eac] disk_delta_exists: True _live_snapshot 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/driver.py:1484
2013-11-27 09:21:21.500 5568 INFO nova.virt.libvirt.driver 
[req-5bd8a420-2747-490f-a688-7468ffcd3c00 b6d2602f38914f20a0fec492fd1482e8 
32c4869a7fee41ecb953cd00c
3e71eac] [instance: df82e015-077c-48d7-8008-5b5f64efb6da] Snapshot extracted, 
beginning image upload
2013-11-27 09:21:21.500 5568 DEBUG nova.compute.manager 
[req-5bd8a420-2747-490f-a688-7468ffcd3c00 b6d2602f38914f20a0fec492fd1482e8 
32c4869a7fee41ecb953cd00c3e7
1eac] [instance: df82e015-077c-48d7-8008-5b5f64efb6da] Cleaning up image 
a2074ffb-e556-4263-9843-698867e79dae decorated_function 
/usr/lib/python2.7/dist-packag
es/nova/compute/manager.py:313
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] Traceback (most recent call last):
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/nova/compute/
manager.py, line 309, in decorated_function
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] *args, **kwargs)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/nova/compute/
manager.py, line 2293, in snapshot_instance
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] task_states.IMAGE_SNAPSHOT)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/nova/compute/
manager.py, line 2324, in _snapshot_instance
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] update_task_state)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/nova/virt/lib
virt/driver.py, line 1400, in snapshot
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] image_format)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/nova/virt/lib
virt/driver.py, line 1489, in _live_snapshot
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] 
libvirt.VIR_DOMAIN_BLOCK_REBASE_SHALLOW)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/eventlet/tpoo
l.py, line 179, in doit
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] result = proxy_call(self._autowrap, 
f, *args, **kw
args)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/eventlet/tpoo
l.py, line 139, in proxy_call
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] rv = execute(f,*args,**kwargs)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/eventlet/tpoo
l.py, line 77, in tworker
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] rv = meth(*args,**kwargs)
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da]   File 
/usr/lib/python2.7/dist-packages/libvirt.py, 
line 646, in blockRebase
2013-11-27 09:21:21.500 5568 TRACE nova.compute.manager [instance: 
df82e015-077c-48d7-8008-5b5f64efb6da] if ret == -1: raise 

[Bug 1202839] Re: qemu-bridge-helper missing from qemu-kvm or elsewhere

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

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

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

Title:
  qemu-bridge-helper missing from qemu-kvm or elsewhere

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1202839/+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 1202839] Re: qemu-bridge-helper missing from qemu-kvm or elsewhere

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

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

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

Title:
  qemu-bridge-helper missing from qemu-kvm or elsewhere

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1202839/+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 1202839] Re: qemu-bridge-helper missing from qemu-kvm or elsewhere

2013-11-27 Thread Thomas Klute
I'm trying to build a network simulation using multiple VMs and bridges
on my desktop system, and manually configuring TAP interfaces as
requirements change is quite cumbersome. I had this working about a year
ago using the helper with locally configured capabilities, so I'd very
much like to see the qemu-bridge-helper added to saucy. I'm happy to
provide a description of the capability configuration for a README if
that helps.

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

Title:
  qemu-bridge-helper missing from qemu-kvm or elsewhere

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1202839/+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 655039] Re: package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-11-27 Thread Miquel
*** This bug is a duplicate of bug 621837 ***
https://bugs.launchpad.net/bugs/621837

Try to find /etc/apache2/.mpm* and delete it, 
next try:
apt-get install -f

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

Title:
  package apache2.2-common 2.2.14-5ubuntu8.2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/655039/+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-1311-openstack] Openstack Next Steps

2013-11-27 Thread Andy Whitcroft
Blueprint changed by Andy Whitcroft:

Work items changed:
- Work items:
- * MIR for heat: TODO
- * Integrated upstream gating tests OR 3rd party tests for libvirt LXC tests: 
TODO
- * Discuss contribution of Juju/OpenStack documentation upstream (annegentle): 
TODO
- * Packaging/review of trove: TODO
- * Packaging/review of savannah: TODO
- * Packaging/review of ironic: TODO
- * Neutron packaging review and deprecation of old-style plugins - ML2: TODO
- * Nova hypervisor packaging review and re-jig to support libvirt-less 
drivers: TODO

-- 
Openstack Next Steps
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1311-openstack

-- 
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 1245113] Re: libapache2-mod-auth-pgsql is missing in 13.10 amd64

2013-11-27 Thread Robie Basak
On #ubuntu-release:

09:00 rbasak May I have an SRU team ack for a Saucy SRU for 
https://launchpad.net/bugs/1245113 please, before I do the work?
09:00 ubot2 Launchpad bug 1245113 in libapache2-mod-auth-pgsql (Ubuntu Saucy) 
libapache2-mod-auth-pgsql is missing in 13.10 amd64 [Undecided,New]
09:00 rbasak It's a regression - the package was dropped from Debian due to 
falling behind on the Apache 2.4 transition, and has now been reinstated. Is an 
SRU for Saucy NEW acceptable here?
09:01 rbasak I see low SRU regression risk because it would be a new package.
...
09:57 cjwatson rbasak: seems reasonable to me

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

Title:
  libapache2-mod-auth-pgsql is missing in 13.10 amd64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache2-mod-auth-pgsql/+bug/1245113/+subscriptions

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


[Bug 1100843] Re: Live Migration Causes Performance Issues

2013-11-27 Thread Paolo Bonzini
Fix will be part of QEMU 1.7.0 (commit fc1c4a5, migration: drop
MADVISE_DONT_NEED for incoming zero pages, 2013-10-24).


** Changed in: qemu
   Status: New = Fix Committed

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

Title:
  Live Migration Causes Performance Issues

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

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


[Bug 1220950] Re: [MIR] open-vm-tools

2013-11-27 Thread Ben Howard
** Changed in: zerofree (Ubuntu)
   Status: Incomplete = New

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

Title:
  [MIR] open-vm-tools

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libdumbnet/+bug/1220950/+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 1202839] Re: qemu-bridge-helper missing from qemu-kvm or elsewhere

2013-11-27 Thread Serge Hallyn
** Changed in: qemu-kvm (Ubuntu)
   Importance: Low = Medium

** Changed in: qemu-kvm (Ubuntu Saucy)
   Importance: Undecided = Medium

** No longer affects: qemu-kvm (Ubuntu Raring)

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

Title:
  qemu-bridge-helper missing from qemu-kvm or elsewhere

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1202839/+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 1255581] [NEW] samba4 - samba transitional packages

2013-11-27 Thread Dmitrijs Ledkovs
Public bug reported:

samba has now switched to samba4. thus transitional packages  replaces stanzas 
are needed.
I'm preparing the two uploads, but I'd like to temporarly block 
proposed-migration such that upgrade paths can be verified before the two 
packages (src:samba4  src:samba) are allowed to go in.

** Affects: samba (Ubuntu)
 Importance: Undecided
 Assignee: Dmitrijs Ledkovs (xnox)
 Status: Confirmed

** Affects: samba4 (Ubuntu)
 Importance: Undecided
 Assignee: Dmitrijs Ledkovs (xnox)
 Status: Confirmed


** Tags: block-proposed

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

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

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

** Changed in: samba4 (Ubuntu)
 Assignee: (unassigned) = Dmitrijs Ledkovs (xnox)

** Changed in: samba (Ubuntu)
 Assignee: (unassigned) = Dmitrijs Ledkovs (xnox)

** Tags added: block-proposed

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

Title:
  samba4 - samba transitional packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1255581/+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 1255464] Re: radosgw init script missing from 0.64 onwards.

2013-11-27 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/ceph

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

Title:
  radosgw init script missing from 0.64 onwards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1255464/+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 1129720] Re: juju instances not including the default security group

2013-11-27 Thread Curtis Hovey
** Tags removed: openstack
** Tags added: openstack-provider

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

Title:
  juju instances not including the default security group

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju/+bug/1129720/+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 1246320] Re: Azure bootstrap fails: versioning header is not specified

2013-11-27 Thread Curtis Hovey
** Tags removed: azure
** Tags added: azure-provider

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

Title:
  Azure bootstrap fails: versioning header is not specified

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwacl/+bug/1246320/+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 1255464] Re: radosgw init script missing from 0.64 onwards.

2013-11-27 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/ceph

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

Title:
  radosgw init script missing from 0.64 onwards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1255464/+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 1248283] Re: Juju deploy of Charm in MAAS fails because dbus fails

2013-11-27 Thread Antonio Rosales
** Tags added: ubuntu-openstack

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

Title:
  Juju deploy of Charm in MAAS fails because dbus fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1248283/+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 1255617] Re: unable to identify ISOFS format on Trusty

2013-11-27 Thread Ben Howard
On a Saucy system, the following appears in dmesg:
[   29.072953] UDF-fs: INFO Mounting volume 'rd_rdfe_stable.131122-1638', 
timestamp 2013/11/27 16:53 (1000)

Which means that the UDF module is likely not getting loaded.

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

Title:
  unable to identify ISOFS format on Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1255617/+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 1255617] [NEW] unable to identify ISOFS format on Trusty

2013-11-27 Thread Ben Howard
Public bug reported:

Cloud-init is unable to identify the ISO format on Trusty

From dmesg:
[   28.290855] ISOFS: Unable to identify CD-ROM format.
[   30.760287] EXT4-fs (sda1): resizing filesystem from 360448 to 7679744 blocks
[   30.770746] EXT4-fs (sda1): resized filesystem to 7679744
[   34.079703] init: plymouth-log main process (874) terminated with status 1
[   34.131507] init: failsafe main process (875) killed by TERM signal

From /var/log/cloud-init.log
2013-11-27 16:51:38,713 - DataSourceOVF.py[DEBUG]: /dev/sr0 not mountable as 
iso9660
...
2013-11-27 16:51:39,275 - stages.py[DEBUG]: Loaded datasource 
DataSourceNoCloudNet - DataSourceNoCloudNet 
[seed=/var/lib/cloud/seed/nocloud-net][dsmode=net]


This means that the Windows Azure datasource is unable to identify what the 
datasource is, and therefore fails to come up.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: cloud-init 0.7.3-0ubuntu2
Uname: Linux 3.11.0-13-generic x86_64
ApportVersion: 2.12.7-0ubuntu1
Architecture: amd64
Date: Wed Nov 27 18:00:05 2013
PackageArchitecture: all
ProcEnviron: Error: [Errno 2] No such file or directory: '/proc/1798/environ'
SourcePackage: cloud-init
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty uec-images

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

Title:
  unable to identify ISOFS format on Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1255617/+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 1255617] Re: unable to identify ISOFS format on Trusty

2013-11-27 Thread Ben Howard
My hunch is that Trusty is not loading the UDF module.

$ sudo blkid /dev/sr0
/dev/sr0: LABEL=rd_rdfe_stable.131122-1638 TYPE=udf

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

Title:
  unable to identify ISOFS format on Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1255617/+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 1250388] Re: maas-ipmi-autodetect-tool fails to detect IPMI on midway

2013-11-27 Thread Robie Basak
We know that there is a fix for this in trunk, if not validated.

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

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

Title:
  maas-ipmi-autodetect-tool fails to detect IPMI on midway

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1250388/+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 1255464] Re: radosgw init script missing from 0.64 onwards.

2013-11-27 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/ceph

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

Title:
  radosgw init script missing from 0.64 onwards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1255464/+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 1255464] Re: radosgw init script missing from 0.64 onwards.

2013-11-27 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.72.1-3

---
ceph (0.72.1-3) unstable; urgency=low


  * d/rules,ceph.install: Correct install paths for ceph-* helpers. 
  * d/p/modules: Mark libcls_kvs.so as module.
  * d/rules: Rename radosgw upstart configuration to radosgw-instance to
avoid namespace conflict with init script which breaks backwards
compatibility (LP: #1255464).

 -- James Page james.p...@ubuntu.com  Wed, 27 Nov 2013 10:52:48 +

** Changed in: ceph (Ubuntu Trusty)
   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/1255464

Title:
  radosgw init script missing from 0.64 onwards.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1255464/+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 1255464] Re: radosgw init script missing from 0.64 onwards.

2013-11-27 Thread James Page
** Changed in: ceph (Ubuntu Saucy)
   Status: New = In Progress

** Changed in: ceph (Ubuntu Saucy)
   Importance: Undecided = High

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

Title:
  radosgw init script missing from 0.64 onwards.

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

2013-11-27 Thread gadLinux
I've found this problem in my saucy installation. I just opened a bug
cause I'm not sure if it's related.

https://bugs.launchpad.net/ubuntu/+source/core-network/+bug/1255516

My problem is actually worse since host machine cannot get access to
other machines on the network. Not even virtual machines but hardware
machines, routers, NAS, and so on.

The only way to recover from this situation is to ifdown ifup the
bridge. Then it recovers until it happens again.

When I remove the bridge no problems. But I was not able to test it
since I need the bridge up.

I'm investigating macvtap instead of bridge...

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/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


[Bug 1235231]

2013-11-27 Thread Scott Moser
Created attachment 89759
/sbin/init wrapper that will demonstrate the issue

See attachment here, which will reproduce this bug.

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

Title:
  plymouth loses output to /dev/console (such as ci-info: messages)

To manage notifications about this bug go to:
https://bugs.launchpad.net/plymouth/+bug/1235231/+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 1235231]

2013-11-27 Thread Scott Moser
Ray,
 thanks for the response.
 The version of plymouth we have is '0.8.8-0ubuntu8'. I realize that doesn't 
mean much, but you can check it out explicitly with 'bzr branch 
lp:ubuntu/trusty/plymouth'

 It does have the 'add_consoles_from_file' method.

 I'll poke read some more there, try from trunk and see what i can't
find out.

  thanks again for the response.

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

Title:
  plymouth loses output to /dev/console (such as ci-info: messages)

To manage notifications about this bug go to:
https://bugs.launchpad.net/plymouth/+bug/1235231/+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 1235231]

2013-11-27 Thread Rstrode
Does the version of plymouth you're using have add_consoles_from_file()
in main.c ?  If not, pulling in the commits that add that function and
then subsquently fix that function may fix this issue.

We used to infer serial consoles from the kernel command line.  These
days we read them directly from /sys/class/tty/console/active

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

Title:
  plymouth loses output to /dev/console (such as ci-info: messages)

To manage notifications about this bug go to:
https://bugs.launchpad.net/plymouth/+bug/1235231/+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 1255617] Re: datasource for Azure fails to load if datasource OVF starts first

2013-11-27 Thread Ben Howard
** Summary changed:

- unable to identify ISOFS format on Trusty
+ datasource for Azure fails to load if datasource OVF starts first

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

Title:
  datasource for Azure fails to load if datasource OVF starts first

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1255617/+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 1255581] Re: samba4 - samba transitional packages

2013-11-27 Thread Dmitrijs Ledkovs
** Tags removed: block-proposed

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

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

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

** Changed in: samba (Ubuntu)
 Assignee: Dmitrijs Ledkovs (xnox) = (unassigned)

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

Title:
  samba4 - samba transitional packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1255581/+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 1255763] [NEW] package amavisd-new-postfix 1:2.6.5-0ubuntu3.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-11-27 Thread jorgefar
Public bug reported:

No tengo que informar mas errores

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: amavisd-new-postfix 1:2.6.5-0ubuntu3.2
ProcVersionSignature: Ubuntu 3.2.0-56.86-generic-pae 3.2.51
Uname: Linux 3.2.0-56-generic-pae i686
ApportVersion: 2.0.1-0ubuntu17.6
AptOrdering:
 wicd-kde: Remove
 amavisd-new-postfix: Configure
Architecture: i386
Date: Wed Nov 27 16:46:00 2013
DuplicateSignature: package:amavisd-new-postfix:1:2.6.5-0ubuntu3.2:subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: amavisd-new
Title: package amavisd-new-postfix 1:2.6.5-0ubuntu3.2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: amavisd-new (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 precise

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

Title:
  package amavisd-new-postfix 1:2.6.5-0ubuntu3.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amavisd-new/+bug/1255763/+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 1255763] Re: package amavisd-new-postfix 1:2.6.5-0ubuntu3.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-11-27 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package amavisd-new-postfix 1:2.6.5-0ubuntu3.2 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/amavisd-new/+bug/1255763/+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 1255581] Re: samba4 - samba transitional packages

2013-11-27 Thread Dmitrijs Ledkovs
** Changed in: samba (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  samba4 - samba transitional packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1255581/+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 1255581] Re: samba4 - samba transitional packages

2013-11-27 Thread Bug Watch Updater
** Changed in: samba (Debian)
   Status: Unknown = New

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

Title:
  samba4 - samba transitional packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1255581/+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 1253841] Re: qemu live migrate feature doesn't work with i6300esb watchdog

2013-11-27 Thread Serge Hallyn
Marking low priority as there is a workaround.  Marking incomplete
pending reply.

** Changed in: qemu (Ubuntu)
   Importance: Undecided = Low

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

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

Title:
  qemu live migrate feature doesn't work with i6300esb watchdog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1253841/+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 1253841] Re: qemu live migrate feature doesn't work with i6300esb watchdog

2013-11-27 Thread Serge Hallyn
Thanks for taking the time to report this bug.

Do you know whether older versions like 1.0 (in precise) or the current
upstream git head have the same behavior?

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

Title:
  qemu live migrate feature doesn't work with i6300esb watchdog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1253841/+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 1067779] Re: missing pam_loginuid.so breaks getlogin()

2013-11-27 Thread Serge Hallyn
** Changed in: at (Ubuntu)
   Status: New = Confirmed

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

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

Title:
  missing pam_loginuid.so breaks getlogin()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at/+bug/1067779/+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 1254085] Re: ssh fails to connect to VPN host - hangs at 'expecting SSH2_MSG_KEX_ECDH_REPLY'

2013-11-27 Thread Serge Hallyn
** Changed in: openssh (Ubuntu)
   Importance: Undecided = High

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

Title:
  ssh fails to connect to VPN host - hangs at 'expecting
  SSH2_MSG_KEX_ECDH_REPLY'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1254085/+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 1067779] Re: missing pam_loginuid.so breaks getlogin()

2013-11-27 Thread Serge Hallyn
I see the fix in at's git tree at

http://anonscm.debian.org/gitweb/?p=collab-
maint/at.git;a=commitdiff;h=23def4839244a4937e60c4bfa27c97147f41cf3a

Marking fix committed.  The fix will come in through a merge after this
is released in debian.

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

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

Title:
  missing pam_loginuid.so breaks getlogin()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at/+bug/1067779/+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 1239008] Re: qemu fails to scroll screen on ^Vidmem output

2013-11-27 Thread Serge Hallyn
Thanks for reporting this bug.  Is there any other reproducer you can
give us?

** No longer affects: kvm (Ubuntu)

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

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

** Changed in: qemu
   Status: New = Incomplete

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

Title:
  qemu fails to scroll screen on ^Vidmem output

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1239008/+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 981718] Re: package at 3.1.13-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2013-11-27 Thread Serge Hallyn
Thanks for reporting this bug.  If this is something you can still
reproduce then please reply.

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

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

Title:
  package at 3.1.13-1ubuntu1 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/at/+bug/981718/+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 970297] Re: upstart should start atd later in the boot process

2013-11-27 Thread Serge Hallyn
Thanks for reporting this bug.  If I'm not mistaken, runlevel 2345
should not be happening before 'filesystem'.  If this is still a problem
for you, please reply.  I'm mraking it invalid meaning can no longer be
reproduced.

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

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

Title:
  upstart should start atd later in the boot process

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at/+bug/970297/+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 872266] Re: package nbd-server 1:2.9.23-3ubuntu1 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2013-11-27 Thread Serge Hallyn
From DpkgTerminalLog (translated):

useradd: unable to lock, please try again later

If this is still an issue, please run 'sudo apt-get install -f' which
should continue the install.

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

Title:
  package nbd-server 1:2.9.23-3ubuntu1 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nbd/+bug/872266/+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 688050] Re: nbd-client timeout should be compiled in!

2013-11-27 Thread Serge Hallyn
Marking invalid as 10.10 is eol.  If this is still an issue then please
re-open.

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

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

Title:
  nbd-client timeout should be compiled in!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nbd/+bug/688050/+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 693174] Re: package at 3.1.10.2ubuntu2 failed to install/upgrade: subprocess post-installation script returned error exit status 1

2013-11-27 Thread Serge Hallyn
Marking invalid as 9.04 is no longer supported.  If you still have this
issue in a new release please re-open.

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

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

Title:
  package at 3.1.10.2ubuntu2 failed to install/upgrade: subprocess post-
  installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/at/+bug/693174/+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 872266] Re: package nbd-server 1:2.9.23-3ubuntu1 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2013-11-27 Thread Serge Hallyn
(Marking invalid as 11.10 is no longer supported)

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

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

Title:
  package nbd-server 1:2.9.23-3ubuntu1 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nbd/+bug/872266/+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 963142] Re: kernel BUG at /var/lib/dkms/iscsitarget/1.4.20.2/build/kernel/iscsi.c:392!

2013-11-27 Thread Serge Hallyn
Thanks for reporting this bug.  Can you still reproduce this with an
uptodate kernel?

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

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

Title:
  kernel BUG at
  /var/lib/dkms/iscsitarget/1.4.20.2/build/kernel/iscsi.c:392!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iscsitarget/+bug/963142/+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 1197884] Re: apache2.2 SSL has no forward-secrecy: need ECDHE keys

2013-11-27 Thread Nestor Urquiza
I thought this request felt under the below wording in
https://wiki.ubuntu.com/StableReleaseUpdates :

quote
Stable release updates will, in general, only be issued in order to fix 
high-impact bugs. Examples of such bugs include:

Bugs which may, under realistic circumstances, directly cause a security 
vulnerability. These are done by the security team and are documented at 
SecurityTeam/UpdateProcedures.
...
/quote
I believe this threat is very realistic ( 
http://blog.ivanristic.com/2013/06/ssl-labs-deploying-forward-secrecy.html ). I 
guess the metrics to determine what warrants an exception are up to you for 
sure but as far as I can tell the privacy cost of this vulnerability justifies 
the upgrade for apache servers *only* or the usage of a PPA like 
https://launchpad.net/~derek-morton/+archive/apache-2.4 if you decide to trust 
it or simply building apache 2.4 from scratch. If the server is not running 
apache clearly there is nothing to be worry about.

Thanks for the statement because at least the wait is over.

Best,
- Nestor

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

Title:
  apache2.2 SSL has no forward-secrecy: need ECDHE keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1197884/+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 717894] Re: warning: fetchmail start runlevel arguments (2 3 4 5) do not match LSB Default-Start values (1)

2013-11-27 Thread Serge Hallyn
(6.3.18 is no longer in any release, but in saucy I get:

update-rc.d: warning:  stop runlevel arguments (none) do not match fetchmail 
Default-Stop values (0 1 6)
 * Not starting fetchmail daemon, disabled via /etc/default/fetchmail


** Changed in: fetchmail (Ubuntu)
   Importance: Undecided = Low

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

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

Title:
  warning: fetchmail start runlevel arguments (2 3 4 5) do not match LSB
  Default-Start values (1)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fetchmail/+bug/717894/+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 1129231] Re: package iscsitarget 1.4.20.2-5ubuntu3.2 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2013-11-27 Thread Serge Hallyn
Oddly, the eerror is

 * Starting iSCSI enterprise target service   ESC[80G FATAL: Module
iscsi_trgt not found.

but earlier on iscsi_trgt is explicitly removed.

Can you still reproduce this.

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

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

Title:
  package iscsitarget 1.4.20.2-5ubuntu3.2 failed to install/upgrade:
  sub-processo script post-installation instalado retornou estado de
  saída de erro 1

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


Re: [Bug 963142] Re: kernel BUG at /var/lib/dkms/iscsitarget/1.4.20.2/build/kernel/iscsi.c:392!

2013-11-27 Thread Werner Kuballa
Hello Serge

I am no longer able to reproduce this problem.

Have a great Thanksgiving.

Werner


On Wed, Nov 27, 2013 at 6:50 PM, Serge Hallyn 963...@bugs.launchpad.netwrote:

 Thanks for reporting this bug.  Can you still reproduce this with an
 uptodate kernel?

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

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/963142

 Title:
   kernel BUG at
   /var/lib/dkms/iscsitarget/1.4.20.2/build/kernel/iscsi.c:392!

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/iscsitarget/+bug/963142/+subscriptions


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

Title:
  kernel BUG at
  /var/lib/dkms/iscsitarget/1.4.20.2/build/kernel/iscsi.c:392!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iscsitarget/+bug/963142/+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 1248283] Re: Juju deploy of Charm in MAAS fails because dbus fails

2013-11-27 Thread William Reade
** Changed in: juju-core
Milestone: None = 1.17.1

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

Title:
  Juju deploy of Charm in MAAS fails because dbus fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1248283/+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 1255428] [NEW] LCD brightness control keys and widget do not work on Intel Graphics on Saucy

2013-11-27 Thread Shriramana Sharma
Public bug reported:

After upgrading to Saucy, on my Lenovo IdeaPad Z570 with Intel HD
Graphics 3000, it is no longer possible to control the LCD brightness
using the hardware brightness control keys. Likewise for the KDE power
management settings or the battery icon on my Kubuntu Plasma tray. (I
don't use GNOME/Unity.) Until Raring I did not have this problem.

There is a workaround available from
http://askubuntu.com/questions/362894/changing-the-brightness-stopped-
working-in-13-10-saucy-salamander i.e. doing the following command on a
terminal:

echo 150 | sudo tee /sys/class/backlight/intel_backlight/brightness

where 150 is on the scale of 0 to whatever is given within
/sys/class/backlight/intel_backlight/max_brightness.

Based on this I wrote a GUI which however needs to be run using
sudo/kdesudo/gksudo. I have attached it.

Bug #1241745 also relates to the same problem on Saucy but apparently
relates to an NVidia driver and I was asked to track this as a separate
bug
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1241745/comments/17

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: Workaround GUI for changing brightness
   
https://bugs.launchpad.net/bugs/1255428/+attachment/3918055/+files/intel-lcd.py

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

Title:
  LCD brightness control keys and widget do not work on Intel Graphics
  on Saucy

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

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


[Bug 1241745] Re: [regression] Changing the screen brightness does not work anymore in 319.xx

2013-11-27 Thread Shriramana Sharma
I filed a separate bug for Intel as
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-
intel/+bug/1255428

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

Title:
  [regression] Changing the screen brightness does not work anymore in
  319.xx

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

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


[Bug 1249242] Re: Performance regression: mir_demo_client_flicker is skipping frames on desktop (GBM)

2013-11-27 Thread Daniel van Vugt
** Branch linked: lp:~afrantzis/mir/shm-buffers-part-2

** Changed in: mir
Milestone: None = 0.1.3

** Changed in: mir
 Assignee: (unassigned) = Alexandros Frantzis (afrantzis)

** Changed in: mir
   Status: New = In Progress

** Description changed:

  Performance regression: mir_demo_client_flicker is skipping frames and
  frequently dropping to 50-something FPS.
  
  This is building Mir from development-branch. I've verified the bug
  occurs in r1117 right up to r1207 on trusty (I only noticed it after
  upgrading to trusty). So it looks like a regression at a lower layer...
  Mesa or the kernel.
+ 
+ Regression relative to how it performed in saucy, I mean.

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

Title:
  Performance regression: mir_demo_client_flicker is skipping frames on
  desktop (GBM)

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

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


[Bug 197288] Re: New windows are put in the background when a window has Always on Top set

2013-11-27 Thread rduke15
Same problem on 12.04LTS

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

Title:
  New windows are put in the background when a window has Always on Top
  set

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

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


[Bug 968308]

2013-11-27 Thread Grant Gayed
*** Bug 421891 has been marked as a duplicate of this bug. ***

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread francesco
Sorry for trivial question...

I would like to apply the patch for ubuntu 13.10. In the tar file
included in dropbox there are 15 .deb files.

Do I install each files in order to apply the patch?

Thank you...

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread Marc-Andre Laperle
(In reply to Kaloyan Raev from comment #75)
 I believe you can just share the .deb files via dropbox or similar service.
 In the end, WebKitGTK is an open source project and redistribution is
 allowed.

Here are the patched .deb files for 13.10 64 bit:
https://www.dropbox.com/l/3fsKx3y53bmVoe80asoVKb

It doesn't include the optional debugging symbols (-dbg packages)
because they are quite big ( 1GB!).

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread Marc-andre-laperle
(In reply to Grant Gayed from comment #79)
 Your view crashes reliably for me if step 3 is replaced by close the view
 (crash!). 

Thanks for reproducing it!

Here are the patched .deb files for 13.04 64 bit:
https://www.dropbox.com/l/fdlcEeDRbVoHuivn6RNLyd

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread Marc-andre-laperle
(In reply to Florian HENRY from comment #74)
 I don't understand 
 1-Open Test Browser view
 
 I import the projet into eclipse, I can see it, it didn't crash. Do you mean
 run it as Java application, or Applet ? I try without succes.

Sorry this message was directed to Grant so I didn't add as much detail. More 
steps:
0. Import the project in Eclipse. It's a plug-in project so you'll need PDE 
installed (Eclipse SDK, Classic, etc have it).
0.1 Run as Eclipse Application so that you get the view inside the launched 
Eclipse.

(In reply to Kaloyan Raev from comment #75)
 (In reply to Marc-Andre Laperle from comment #68)
 I believe you can just share the .deb files via dropbox or similar service.
 In the end, WebKitGTK is an open source project and redistribution is
 allowed.

Thanks for the suggestion, I was looking for something like that.

 Could you explain in more details about the fix you applied? Is this an
 official newer version of WebKitGTK? Or you patched the one in Ubuntu 13.04
 and rebuilt it?

I applied the fix locally on top of the Ubuntu 13.04 package then I patched it 
again when I upgraded to Ubuntu 13.10. The fix is included in later official 
versions of Webkit. I'm not sure exactly which version will get into 14.04 but 
it looks like it will be 2.3.1 (proposed) which includes the fix. The webkit 
bugzilla link has been posted before but I'll give you the direct link to the 
patch:
https://bug-119003-attachments.webkit.org/attachment.cgi?id=207317

(In reply to Francesco D\'Amore from comment #76)
 In order to make menus working, you should add this line:
 Exec=env UBUNTU_MENUPROXY= /home/myhome/eclipse/eclipse

Ah OK, I was referring to the same thing, we just misunderstood each
other a little bit.

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread Marc-andre-laperle
(In reply to Francesco D\'Amore from comment #82)
 Do I install each files in order to apply the patch?
 
You need to at least install (i.e. upgrade) all the ones you have currently 
installed otherwise you will most likely have broken dependencies. All the 
packages included in the tar are built from the same webkit source tree so they 
all have the same Ubuntu version. If an update comes from Ubuntu they will all 
get replaced. You can install/upgrade only the ones you have currently 
installed but I think it's easier to just install all of them:

sudo dpkg -i *.deb

If you want to revert to the original packages from Ubuntu servers, you
can specify /saucy when re-installing the packages with apt-get, for
example:

sudo apt-get install gir1.2-javascriptcoregtk-*/saucy
gir1.2-webkit-*/saucy  libjavascriptcoregtk-*/saucy libwebkit-dev/saucy
libwebkitgtk*/saucy

For 13.04 it would be /raring.

Let me know if you see an improvement. On our end, we tested the fix on
5 different PCs and VMs using the test plug-in I attached and it seemed
to resolved the issue. Keep in mind that there are other possible
crashes so check your crash log.

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread Grant Gayed
(In reply to Marc-Andre Laperle from comment #71)
 Grant, could you try this test project and see if you are seeing the crash?
 
 1. Open Test Browser view
 2. Maximize the view (Double-click on the tab)
 3. Move around the mouse a bit inside the view (optional?)

Your view crashes reliably for me if step 3 is replaced by close the
view (crash!).  My Ubuntu is 13.04 and my VM is from IBM, which could
account for the difference in the timing of the crashes (eg.- memory
getting corrupted once the view is maximized but the IBM VM gets lucky
and tolerates it longer than the Oracle VM).

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 968308]

2013-11-27 Thread francesco
(In reply to Marc-Andre Laperle from comment #68)
 Can you describe your workaround? Or perhaps a link to it? I might look into
 fixing this menu issue soon and any information is useful.

My eclipse launcher, showd in Unity toolbar, is a file stored in:
/home/myhome/.local/share/applications/eclipse.desktop

This is my launcher:
[Desktop Entry]
Encoding=UTF-8
Version=1.0
Type=Application
Name=Java - Eclipse 
Icon=eclipse.png
Path=/home/myhome/eclipse
Exec=env UBUNTU_MENUPROXY= /home/myhome/eclipse/eclipse
StartupNotify=false
StartupWMClass=Eclipse
OnlyShowIn=Unity;
X-UnityGenerated=true

In order to make menus working, you should add this line:
Exec=env UBUNTU_MENUPROXY= /home/myhome/eclipse/eclipse

My Eclipse is installed in /home/myhome/eclipse

 So far, everything as led me to believe that this particular crash has been
 fixed in webkit and Ubuntu will get an updated version in Ubuntu 14.04. I
 have applied the fix locally on my 13.10 and haven't seen the crash since. I
 would attach the .deb files here but I don't think this would sit well with
 Eclipse policy since they are not EPL (?).

Can you describe this webkit fix in more details??? Can you provide us
with a link?  Is very important to overcame this issue Eclipse in
ubuntu 13.10 is unstable

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

Title:
  Opening Eclipse workbench causes SIGSEGV

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

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


[Bug 1173349]

2013-11-27 Thread Christoph-maxiom
*** Bug 328095 has been marked as a duplicate of this bug. ***

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

Title:
  plasma-desktop crashes repeatedly

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdebase-workspace/+bug/1173349/+subscriptions

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


[Bug 1207812] Re: Iphone with iOS 7 does not work on Ubuntu

2013-11-27 Thread Perry Mitchell
I commented on the dup by accident, but I also have this problem on the
following setup:

iPhone 5 7.0.4
Ubuntu 12.04.3

I've tried reinstalling Fuse and iFuse, as well was libimobiledevice
etc. Nothing helps. I get a perpetual loop of Trust this computer and
errors: Unable to mount - DBus error
org.freedesktop.DBus.Error.NoReply: Message did not receive a reply
(timeout by message bus).

Would love to see this fixed, as I name numerous iOS devices. It's
problematic for me just to plug them in, let alone mount them!

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

Title:
  Iphone with iOS 7 does not work on Ubuntu

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

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


[Bug 786325] Re: Unable to change mouse cursor theme and size

2013-11-27 Thread Daniel van Vugt
** Also affects: compiz
   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/786325

Title:
  Unable to change mouse cursor theme and size

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

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


[Bug 1215098] Re: iPhone with iOS 7 does not work on Ubuntu

2013-11-27 Thread Perry Mitchell
*** This bug is a duplicate of bug 1207812 ***
https://bugs.launchpad.net/bugs/1207812

I have this issue as well, on the following setup:

iPhone 5 7.0.4
Ubuntu 12.04.3

I've tried reinstalling Fuse and iFuse, as well was libimobiledevice
etc. Nothing helps. I get a perpetual loop of Trust this computer and
errors: Unable to mount - DBus error
org.freedesktop.DBus.Error.NoReply: Message did not receive a reply
(timeout by message bus).

Would love to see this fixed, as I name numerous iOS devices. It's
problematic for me just to plug them in, let alone mount them!

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

Title:
  iPhone with iOS 7 does not work on Ubuntu

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

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


[Bug 1247373] Re: Empathy’s “Insert Smiley” menu doesn't display correctly

2013-11-27 Thread Matthew Paul Thomas
** Changed in: indicator-appmenu (Ubuntu)
   Importance: Undecided = High

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

Title:
  Empathy’s “Insert Smiley” menu doesn't display correctly

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

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

[Bug 1250558] Re: linux: 3.8.0-34.49 -proposed tracker

2013-11-27 Thread Parameswaran Sivatharman
** Tags added: qa-testing-passed

** Changed in: kernel-sru-workflow/regression-testing
   Status: In Progress = Fix Released

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

Title:
  linux: 3.8.0-34.49 -proposed tracker

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

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


[Bug 1252451] Re: lxterminal does not change title of window

2013-11-27 Thread Jackson Doak
The best solution would be to add both possibilities. It should be a 4
line fix.

** Tags added: bitesize

** Changed in: ubuntu-manual-tests
   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/1252451

Title:
  lxterminal does not change title of window

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-manual-tests/+bug/1252451/+subscriptions

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


[Bug 1254831] Re: plainbox needs packaging

2013-11-27 Thread Daniel Holbach
Good work.

A few things:
 - ./plainbox/impl/signal.py is GPL (v3) and not GPL (v3 or later)
 - duplicate-short-description plainbox plainbox-insecure-policy 
plainbox-secure-policy python3-plainbox python3-plainbox-doc
   All the packages have the same short description, so will be hard to 
distinguish in a package manager
 - latest-debian-changelog-entry-without-new-date (minor)
 - It might be worth registering the docs in the -doc package with doc-base at 
some stage (Debian Policy Manual section 9.10) 
 - Why can't the images of the python3 package be in /usr/share/?
 - ./plainbox/vendor/funcsigs/LICENSE needs to be specified in debian/copyright

And a few small things about the man page:
W: plainbox: manpage-has-bad-whatis-entry usr/share/man/man1/plainbox.1.gz
N: 
N:Each manual page should start with a NAME section, which lists the
N:name and a brief description of the page separated by \-. The NAME
N:section is parsed by lexgrog and used to generate a database that's
N:queried by commands like apropos and whatis. This tag indicates that
N:lexgrog was unable to parse the NAME section of this manual page.
N:
N:For manual pages that document multiple programs, functions, files, or
N:other things, the part before \- should list each separated by a comma
N:and a space. Each thing listed must not contain spaces; a man page for a
N:two-part command like fs listacl must use something like fs_listacl
N:in the NAME section so that it can be parsed by lexgrog.
N:
N:Refer to the lexgrog(1) manual page, the groff_man(7) manual page, and
N:the groff_mdoc(7) manual page for details.
N:
N:Severity: normal, Certainty: certain
N:
N:Check: manpages, Type: binary
N: 
I: plainbox: hyphen-used-as-minus-sign usr/share/man/man1/plainbox.1.gz:4
N: 
N:This manual page seems to contain a hyphen where a minus sign was
N:intended. By default, - chars are interpreted as hyphens (U+2010) by
N:groff, not as minus signs (U+002D). Since options to programs use minus
N:signs (U+002D), this means for example in UTF-8 locales that you cannot
N:cut and paste options, nor search for them easily. The Debian groff
N:package currently forces - to be interpreted as a minus sign due to
N:the number of manual pages with this problem, but this is a
N:Debian-specific modification and hopefully eventually can be removed.
N:
N:- must be escaped (\-) to be interpreted as minus. If you really
N:intend a hyphen (normally you don't), write it as \(hy to emphasise
N:that fact. See groff(7) and especially groff_char(7) for details, and
N:also the thread starting with
N:
http://lists.debian.org/debian-devel/2003/debian-devel-200303/msg01481.html
N:
N:If you use some tool that converts your documentation to groff format,
N:this tag may indicate a bug in the tool. Some tools convert dashes of
N:any kind to hyphens. The safe way of converting dashes is to convert
N:them to \-.
N:
N:Because this error can occur very often, Lintian shows only the first 10
N:occurrences for each man page and give the number of suppressed
N:occurrences. If you want to see all warnings, run Lintian with the
N:-d/--debug option.
N:
N:Refer to /usr/share/doc/groff-base/README.Debian and the groff_char(7)
N:manual page for details.
N:
N:Severity: wishlist, Certainty: possible
N:
N:Check: manpages, Type: binary

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

Title:
  plainbox needs packaging

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

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


Re: [Bug 1055103] Re: package foomatic-filters 4.0.16-0ubuntu0.2 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 10

2013-11-27 Thread kakouares
*** This bug is a duplicate of bug 1045038 ***
https://bugs.launchpad.net/bugs/1045038

Hello,

I have the UBUNTU 13.10 now and it's ok.
Tank for your report. 

Envoyé de mon iPad
Cordiales salutations
JJ Olhagaray 
GSM 06 08 90 15 64


 Le 26 nov. 2013 à 00:45, Brian Murray br...@ubuntu.com a écrit :
 
 *** This bug is a duplicate of bug 1045038 ***
https://bugs.launchpad.net/bugs/1045038
 
 ** This bug has been marked a duplicate of bug 1045038
   package foomatic-filters 4.0.16-0ubuntu0.2 failed to install/upgrade: le 
 sous-processus script post-installation installé a retourné une erreur de 
 sortie d'état 10
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1055103
 
 Title:
  package foomatic-filters 4.0.16-0ubuntu0.2 failed to install/upgrade:
  le sous-processus script post-installation installé a retourné une
  erreur de sortie d'état 10
 
 Status in “foomatic-filters” package in Ubuntu:
  New
 
 Bug description:
  Hello
  A new bug, because you still have not found a solution and you do not answer 
 my emails: Should I redo UBUNTU via a live CD? Return to WINDOWS? Or wait for 
 the new version UBUNTU?
  Sincerely.
 
  ProblemType: Package
  DistroRelease: Ubuntu 12.04
  Package: foomatic-filters 4.0.16-0ubuntu0.2
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic 3.2.18
  Uname: Linux 3.2.0-25-generic i686
  ApportVersion: 2.0.1-0ubuntu11
  Architecture: i386
  Date: Sun Sep 23 19:06:35 2012
  DpkgTerminalLog:
   Paramétrage de foomatic-filters (4.0.16-0ubuntu0.2) ...
   dpkg : erreur de traitement de foomatic-filters (--configure) :
le sous-processus script post-installation installé a retourné une erreur 
 de sortie d'état 10
   Paramétrage de grub-pc (1.99-21ubuntu3.1) ...
  ErrorMessage: le sous-processus script post-installation installé a retourné 
 une erreur de sortie d'état 10
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  Lpstat:
   device for EPSON-Epson-Stylus-Office-BX305: 
 usb://EPSON/Stylus%20Office%20BX305
   device for EPSON-Epson-Stylus-Office-BX305-WiFi: 
 dnssd://EPSON4884B0%20(Epson%20Stylus%20Office%20BX305)._printer._tcp.local/
  MachineType: ASUSTeK Computer Inc. F3JP
  Papersize: a4
  PpdFiles:
   EPSON-Epson-Stylus-Office-BX305-WiFi: Epson Stylus Office BX305 Series - 
 epson-inkjet-printer 1.0.0-1lsb3.2 (Seiko Epson Corporation LSB 3.2)
   EPSON-Epson-Stylus-Office-BX305: Epson Stylus Office BX305 Series - 
 epson-inkjet-printer 1.0.0-1lsb3.2 (Seiko Epson Corporation LSB 3.2)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-25-generic 
 root=UUID=2338f431-c321-4725-b639-cec6f4d9cb44 ro quiet splash vt.handoff=7
  SourcePackage: foomatic-filters
  Title: package foomatic-filters 4.0.16-0ubuntu0.2 failed to install/upgrade: 
 le sous-processus script post-installation installé a retourné une erreur de 
 sortie d'état 10
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/23/2007
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 208
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: F3JP
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.modalias: 
 dmi:bvnAmericanMegatrendsInc.:bvr208:bd05/23/2007:svnASUSTeKComputerInc.:pnF3JP:pvr1.0:rvnASUSTeKComputerInc.:rnF3JP:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr:
  dmi.product.name: F3JP
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
 
 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/foomatic-filters/+bug/1055103/+subscriptions

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

Title:
  package foomatic-filters 4.0.16-0ubuntu0.2 failed to install/upgrade:
  le sous-processus script post-installation installé a retourné une
  erreur de sortie d'état 10

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/foomatic-filters/+bug/1055103/+subscriptions

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

[Bug 1255428] Re: LCD brightness control keys and widget do not work on Intel Graphics on Saucy

2013-11-27 Thread Nik.Th.
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command, as it will
automatically gather debugging information, in a terminal:

apport-collect 1255428

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

This is a known problem. Please see here on how to debugging blacklight: 
https://wiki.ubuntu.com/Kernel/Debugging/Backlight

Your slider works for me also :-)

Here is a thread on ubuntuforums.org . See another workaround related to ACPI 
events. 
http://ubuntuforums.org/showthread.php?t=2156192p=12701188#post12701188

Best Regards
NikTh


** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: New = Incomplete

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

Title:
  LCD brightness control keys and widget do not work on Intel Graphics
  on Saucy

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

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


[Bug 1248760] Re: Calendar control shakes when leaving newly-selected date

2013-11-27 Thread Matthew Paul Thomas
*** This bug is a duplicate of bug 1238626 ***
https://bugs.launchpad.net/bugs/1238626

On closer inspection, the flickering happens a fraction of a second
after you choose a date, regardless of whether you leave the date area
or not. So this is a duplicate of bug 1238626.

** This bug has been marked a duplicate of bug 1238626
   flickers when changing the date

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

Title:
  Calendar control shakes when leaving newly-selected date

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

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


[Bug 1251219] Re: Calendar flickers when changing date

2013-11-27 Thread Matthew Paul Thomas
*** This bug is a duplicate of bug 1238626 ***
https://bugs.launchpad.net/bugs/1238626

** This bug has been marked a duplicate of bug 1238626
   flickers when changing the date

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

Title:
  Calendar flickers when changing date

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-datetime/+bug/1251219/+subscriptions

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


[Bug 1238626] Re: Menu flickers shortly after choosing a date

2013-11-27 Thread Matthew Paul Thomas
** Summary changed:

- flickers when changing the date
+ Menu flickers shortly after choosing a date

** Description changed:

- Repro steps:
+ indicator-datetime 13.10.0+13.10.20131011-0ubuntu1, Ubuntu 13.10
  
  1. Click on the applet to open the drop down calendar
  2. Click on any day you wish to skip to the next month
  3. The entire drop down view flickers for .10 of a second . It looks like it 
is redrawing
  
  I have the absolute latest , including an update that just got
  installed, fro the indicator-datetime applet and the problem persists
  
- ProblemType: Bug
- DistroRelease: Ubuntu 13.10
- Package: indicator-datetime 13.10.0+13.10.20131011-0ubuntu1
- ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
- Uname: Linux 3.11.0-12-generic x86_64
- ApportVersion: 2.12.5-0ubuntu1
- Architecture: amd64
- Date: Fri Oct 11 08:00:12 2013
- InstallationDate: Installed on 2013-10-10 (0 days ago)
- InstallationMedia: Ubuntu 13.10 Saucy Salamander - Beta amd64 (20131007)
- MarkForUpload: True
- SourcePackage: indicator-datetime
- UpgradeStatus: No upgrade log present (probably fresh install)
+ Screencast from Michael Tanner in duplicate bug 1248760:
+ https://www.youtube.com/watch?v=Kh4z5H9-4y0

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

Title:
  Menu flickers shortly after choosing a date

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

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


[Bug 1197884] Re: apache2.2 SSL has no forward-secrecy: need ECDHE keys

2013-11-27 Thread Robie Basak
Since this is fixed in Saucy, I'm marking this bug as Fix Released. If
you want PFS in an official Ubuntu release, use Ubuntu 13.10.

I understand that some of you want this feature backported to 12.04.
That's fine, but this is a considerable amount of work and I don't think
it falls under the Ubuntu LTS remit. If somebody wants to backport
Apache 2.4 and make it available in 12.04, please do so - see
https://wiki.ubuntu.com/UbuntuBackports for the process. Or
alternatively, publish and maintain a third party PPA and announce it
here.

Backports and PPAs are the acceptable options here. We do not backport
features to LTS releases. That's why they're LTS - because you expect
them to be stable and not introduce unnecessary regressions. You may
want PFS added, but others don't want their production systems running
on LTS messed with. So we generally do not backport features, and I
don't think PFS warrants an exception. See
https://wiki.ubuntu.com/StableReleaseUpdates for the policy. Your route
is simple: if you want a new feature, use a newer release, or sponsor
the backport work yourselves and use a third party maintained backport
or PPA.

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

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

Title:
  apache2.2 SSL has no forward-secrecy: need ECDHE keys

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

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


[Bug 1250629] Re: linux-lts-raring: 3.8.0-34.49~precise1 -proposed tracker

2013-11-27 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New = Confirmed

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

** Description changed:

  This bug is for tracking the 3.8.0-34.49~precise1 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 12. November 2013 21:07 UTC
  kernel-stable-master-bug:1250558
  kernel-stable-Prepare-package-end:Wednesday, 13. November 2013 21:02 UTC
  kernel-stable-Promote-to-proposed-start:Wednesday, 13. November 2013 21:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 14. November 2013 11:02 UTC
- kernel-stable-phase:Verification  Testing
- kernel-stable-phase-changed:Thursday, 14. November 2013 12:03 UTC
  kernel-stable-Verification-testing-start:Thursday, 14. November 2013 12:03 UTC
  kernel-stable-Certification-testing-start:Thursday, 14. November 2013 12:03 
UTC
  kernel-stable-Security-signoff-start:Thursday, 14. November 2013 12:03 UTC
  kernel-stable-Regression-testing-start:Thursday, 14. November 2013 12:03 UTC
  kernel-stable-Security-signoff-end:Tuesday, 19. November 2013 00:02 UTC
  kernel-stable-Certification-testing-end:Friday, 22. November 2013 21:03 UTC
  kernel-stable-Regression-testing-end:Monday, 25. November 2013 09:02 UTC
+ kernel-stable-phase:CopyToUpdates
+ kernel-stable-phase-changed:Wednesday, 27. November 2013 09:02 UTC
+ kernel-stable-Promote-to-updates-start:Wednesday, 27. November 2013 09:02 UTC

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

Title:
  linux-lts-raring: 3.8.0-34.49~precise1 -proposed tracker

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

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


[Bug 1250624] Re: linux-lowlatency: 3.8.0-34.26 -proposed tracker

2013-11-27 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New = Confirmed

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

** Description changed:

  This bug is for tracking the version to be filled upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 12. November 2013 21:03 UTC
  kernel-stable-master-bug:1250558
  kernel-stable-Certification-testing-end:Tuesday, 19. November 2013 17:03 UTC
  kernel-stable-Security-signoff-end:Tuesday, 19. November 2013 17:03 UTC
  kernel-stable-Prepare-package-end:Thursday, 21. November 2013 01:02 UTC
  kernel-stable-Promote-to-proposed-start:Thursday, 21. November 2013 01:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 21. November 2013 11:03 UTC
  kernel-stable-Verification-testing-start:Thursday, 21. November 2013 12:03 UTC
  kernel-stable-Regression-testing-start:Thursday, 21. November 2013 12:03 UTC
- kernel-stable-phase:Testing
- kernel-stable-phase-changed:Monday, 25. November 2013 23:01 UTC
  kernel-stable-Verification-testing-end:Monday, 25. November 2013 23:01 UTC
  kernel-stable-Regression-testing-end:Tuesday, 26. November 2013 22:02 UTC
+ kernel-stable-phase:CopyToUpdates
+ kernel-stable-phase-changed:Wednesday, 27. November 2013 09:02 UTC
+ kernel-stable-Promote-to-updates-start:Wednesday, 27. November 2013 09:02 UTC

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

Title:
  linux-lowlatency: 3.8.0-34.26  -proposed tracker

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

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


[Bug 1250627] Re: linux-ppc: 3.8.0-18.24 -proposed tracker

2013-11-27 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New = Confirmed

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

** Description changed:

  This bug is for tracking the version to be filled upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 12. November 2013 21:05 UTC
  kernel-stable-master-bug:1250558
  kernel-stable-Certification-testing-end:Wednesday, 13. November 2013 19:02 UTC
  kernel-stable-Security-signoff-end:Wednesday, 13. November 2013 19:02 UTC
  kernel-stable-Prepare-package-end:Friday, 15. November 2013 14:53 UTC
  kernel-stable-Promote-to-proposed-start:Friday, 15. November 2013 14:53 UTC
  kernel-stable-Promote-to-proposed-end:Friday, 15. November 2013 15:03 UTC
  kernel-stable-Verification-testing-start:Friday, 15. November 2013 17:02 UTC
  kernel-stable-Regression-testing-start:Friday, 15. November 2013 17:02 UTC
- kernel-stable-phase:Testing
- kernel-stable-phase-changed:Monday, 25. November 2013 23:01 UTC
  kernel-stable-Verification-testing-end:Monday, 25. November 2013 23:01 UTC
  kernel-stable-Regression-testing-end:Wednesday, 27. November 2013 00:02 UTC
+ kernel-stable-phase:CopyToUpdates
+ kernel-stable-phase-changed:Wednesday, 27. November 2013 09:02 UTC
+ kernel-stable-Promote-to-updates-start:Wednesday, 27. November 2013 09:02 UTC

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

Title:
  linux-ppc: 3.8.0-18.24 -proposed tracker

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

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


[Bug 1250558] Re: linux: 3.8.0-34.49 -proposed tracker

2013-11-27 Thread Brad Figg
** Changed in: kernel-sru-workflow/promote-to-security
   Status: New = Confirmed

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

** Description changed:

  This bug is for tracking the 3.8.0-34.49 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 12. November 2013 17:13 UTC
  kernel-stable-Prepare-package-end:Tuesday, 12. November 2013 21:09 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 12. November 2013 21:09 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 14. November 2013 12:01 UTC
  kernel-stable-Verification-testing-start:Thursday, 14. November 2013 13:01 UTC
  kernel-stable-Certification-testing-start:Thursday, 14. November 2013 13:01 
UTC
  kernel-stable-Security-signoff-start:Thursday, 14. November 2013 13:01 UTC
  kernel-stable-Regression-testing-start:Thursday, 14. November 2013 13:01 UTC
  kernel-stable-Security-signoff-end:Monday, 18. November 2013 23:03 UTC
  kernel-stable-Certification-testing-end:Friday, 22. November 2013 21:00 UTC
- kernel-stable-phase:Testing
- kernel-stable-phase-changed:Monday, 25. November 2013 22:00 UTC
  kernel-stable-Verification-testing-end:Monday, 25. November 2013 22:00 UTC
+ kernel-stable-phase:CopyToUpdates
+ kernel-stable-phase-changed:Wednesday, 27. November 2013 09:01 UTC
+ kernel-stable-Promote-to-updates-start:Wednesday, 27. November 2013 09:01 UTC
+ kernel-stable-Regression-testing-end:Wednesday, 27. November 2013 09:01 UTC

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

Title:
  linux: 3.8.0-34.49 -proposed tracker

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

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


[Bug 1242221] Re: Ubuntu 13.10, Thinkpad x230, Fn keys not working after upgrade

2013-11-27 Thread orenl
Same here: Fn + key not working at all, running Kubuntu 13.10 with
latest (to date) updates, even after reboot.

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

Title:
  Ubuntu 13.10, Thinkpad x230, Fn keys not working after upgrade

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

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


[Bug 1222705] Re: init assert failure: alloc.c:633: Assertion failed in nih_unref: ref != NULL

2013-11-27 Thread James Hunt
We need a proper stack trace to aid debugging this issue. So, if you
have seen this bug please run the following:

$ apport-collect 1222705

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

Title:
  init assert failure: alloc.c:633: Assertion failed in nih_unref: ref
  != NULL

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

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


[Bug 1255450] [NEW] Xorg freeze

2013-11-27 Thread RAKESH KUMAR
Public bug reported:

Xorg freeze

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: xorg 1:7.7+1ubuntu6
ProcVersionSignature: Ubuntu 3.8.0-31.46-generic 3.8.13.8
Uname: Linux 3.8.0-31-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  319.60  Wed Sep 25 14:28:26 
PDT 2013
 GCC version:  gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8)
.tmp.unity.support.test.0:
 
ApportVersion: 2.12.5-0ubuntu2.1
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Wed Nov 27 14:28:08 2013
DistUpgraded: 2013-10-29 11:16:58,832 DEBUG enabling apt cron job
DistroCodename: saucy
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation G96GL [Quadro FX 380] [10de:0658] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: NVIDIA Corporation Device [10de:063b]
InstallationDate: Installed on 2013-09-26 (62 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MachineType: Sun Microsystems Ultra 27
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-31-generic 
root=UUID=2fcbf5f2-b744-42cd-aca8-40b93e221f98 ro quiet splash
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: Upgraded to saucy on 2013-10-29 (29 days ago)
dmi.bios.date: 09/25/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.07
dmi.board.asset.tag: Null
dmi.board.name: Ultra 27
dmi.board.vendor: Sun Microsystems
dmi.board.version: 50
dmi.chassis.asset.tag: Null
dmi.chassis.type: 3
dmi.chassis.vendor: Sun Microsystems
dmi.chassis.version: 00
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.07:bd09/25/2009:svnSunMicrosystems:pnUltra27:pvr0.00.01:rvnSunMicrosystems:rnUltra27:rvr50:cvnSunMicrosystems:ct3:cvr00:
dmi.product.name: Ultra 27
dmi.product.version: 0.00.01
dmi.sys.vendor: Sun Microsystems
version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.46-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.904-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
xserver.bootTime: Wed Nov 27 14:02:05 2013
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputSun USB Keyboard KEYBOARD, id 8
 inputUSB MouseMOUSE, id 9
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.14.3-3ubuntu2

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


** Tags: amd64 apport-bug compiz-0.9 false-gpu-hang freeze 
possible-manual-nvidia-install saucy ubuntu

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

Title:
  Xorg freeze

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

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


[Bug 1255452] [NEW] Dash::test_show_scope_on_load is flaky

2013-11-27 Thread Michał Sawicz
Public bug reported:

The test sometimes fails in jenkins:

https://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-trusty/433/

** Affects: unity8 (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/1255452

Title:
  Dash::test_show_scope_on_load is flaky

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

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


[Bug 1249132] Re: [MIR] fonts-android

2013-11-27 Thread Sebastien Bacher
** Changed in: fonts-android (Ubuntu)
   Status: Fix Committed = 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/1249132

Title:
  [MIR] fonts-android

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fonts-android/+bug/1249132/+subscriptions

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


[Bug 1255219] Re: package libc6 2.15-0ubuntu10.4 failed to install/upgrade: el subproceso script pre-installation nuevo devolvió el código de salida de error 1

2013-11-27 Thread pedro
** Description changed:

- no puedo instalar nada debido a paquetes rotos libc6,libc6-dev . no se
- puede actualizar libc6  2.15- Oubuntu 10.4  a  2.15-Oubntu 10.5 ,usando
- ubuntu 12.04,  no se arregla con synaptic ni dpkg
+ sin nada Instalar sí puedo debido a Paquetes rotos libc6, libc6-dev. No
+ Se Puede Actualizar libc6 2.15-Oubuntu 10.4 a 2.15-Oubntu 10.5, Log in
+ using ubuntu 12.04, No Se arregla estafadores dpkg NI sinápticas
  
- ProblemType: Package
- DistroRelease: Ubuntu 12.04
- Package: libc6 2.15-0ubuntu10.4
- ProcVersionSignature: Ubuntu 3.2.0-55.85-generic 3.2.51
- Uname: Linux 3.2.0-55-generic i686
- NonfreeKernelModules: fglrx
- ApportVersion: 2.0.1-0ubuntu17.4
- AptOrdering:
-  libc6: Install
-  libc6: Configure
-  libc6-dev: Configure
- Architecture: i386
- Date: Tue Nov 26 13:24:06 2013
- DuplicateSignature: package:libc6:2.15-0ubuntu10.4:el subproceso script 
pre-installation nuevo devolvió el código de salida de error 1
- ErrorMessage: el subproceso script pre-installation nuevo devolvió el código 
de salida de error 1
- InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
- MarkForUpload: True
- SourcePackage: eglibc
- Title: package libc6 2.15-0ubuntu10.4 failed to install/upgrade: el 
subproceso script pre-installation nuevo devolvió el código de salida de error 1
- UpgradeStatus: No upgrade log present (probably fresh install)
+ ProblemType: Paquete 
+ DistroRelease: Ubuntu 12.04 
+ Paquete: libc6 2.15-0ubuntu10.4 
+ ProcVersionSign ratura: Ubuntu 3.2.0-55.85-generic 3.2.51 
+ Uname: Linux i686 3.2.0-55-generic 
+ NonfreeKernelMo Dules: fglrx 
+ ApportVersion: 2.0.1- 0ubuntu17.4 
+ AptOrdering: 
+  libc6: instalar 
+  libc6: Configurar 
+  libc6-dev: Configurar 
+ Arquitectura: i386 
+ Fecha: mar 26 de noviembre 2013 13:24:06 
+ DuplicateSignature: paquete: libc6:. 2 . 15-0ubuntu10 4: el subproceso script 
pre-installation nuevo devolvió el Código de Salida de error 1 
+ ErrorMessage: el subproceso script pre-installation nuevo devolvió el Código 
de Salida de error 1 
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423) 
+ MarkForUpload: Verdadero 
+ SourcePackage: EGLIBC 
+ Título: paquete de libc6 2.15-0ubuntu10.4 falló to install / upgrade: el 
subproceso script pre-installation nuevo devolvió el Código de Salida de error 
1 
+ UpgradeStatus: Sin registro de actualización actual (probablemente 
instalación nueva)

** Description changed:

- sin nada Instalar sí puedo debido a Paquetes rotos libc6, libc6-dev. No
- Se Puede Actualizar libc6 2.15-Oubuntu 10.4 a 2.15-Oubntu 10.5, Log in
- using ubuntu 12.04, No Se arregla estafadores dpkg NI sinápticas
+ pecado nada Instalar sí puedo debido a Paquetes rotos libc6, libc6-dev.
+ No Se Puede Actualizar libc6 2.15-Oubuntu 10.4 a 2.15-Oubntu 10.5,
+ Entrar usando ubuntu 12.04, No Se Estafadores arregla dpkg NI sinápticas
  
  ProblemType: Paquete 
  DistroRelease: Ubuntu 12.04 
  Paquete: libc6 2.15-0ubuntu10.4 
  ProcVersionSign ratura: Ubuntu 3.2.0-55.85-generic 3.2.51 
  Uname: Linux i686 3.2.0-55-generic 
  NonfreeKernelMo Dules: fglrx 
  ApportVersion: 2.0.1- 0ubuntu17.4 
  AptOrdering: 
-  libc6: instalar 
+  libc6: Instalar 
   libc6: Configurar 
   libc6-dev: Configurar 
  Arquitectura: i386 
- Fecha: mar 26 de noviembre 2013 13:24:06 
- DuplicateSignature: paquete: libc6:. 2 . 15-0ubuntu10 4: el subproceso script 
pre-installation nuevo devolvió el Código de Salida de error 1 
+ Fecha: 26 de marzo de 2013 13:24:06 noviembre 
+ DuplicateSignature: Paquete: libc6:. 2. 15-0ubuntu10 4: el subproceso script 
pre-installation nuevo devolvió el Código de Salida de error 1 
  ErrorMessage: el subproceso script pre-installation nuevo devolvió el Código 
de Salida de error 1 
- InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423) 
+ InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 ( 
20120423) 
  MarkForUpload: Verdadero 
  SourcePackage: EGLIBC 
- Título: paquete de libc6 2.15-0ubuntu10.4 falló to install / upgrade: el 
subproceso script pre-installation nuevo devolvió el Código de Salida de error 
1 
- UpgradeStatus: Sin registro de actualización actual (probablemente 
instalación nueva)
+ Título: Paquete de libc6 Fallo 2,15-0ubuntu10.4 para instalar / actualizar: 
el subproceso script pre-installation nuevo devolvió el Código de Salida de 
error 1 
+ UpgradeStatus: Sin Registro de Actualización real (probablemente Instalación 
nueva )

** Summary changed:

- package libc6 2.15-0ubuntu10.4 failed to install/upgrade: el subproceso 
script pre-installation nuevo devolvió el código de salida de error 1
+ paquete libc6 2.15-0ubuntu10.4 pudo instalar / actualizar: el subproceso 
script pre-installation nuevo devolvió el Código de Salida de error 1

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

Title:
  paquete libc6 2.15-0ubuntu10.4 

[Bug 1178618] Re: --hotkey option does not work when the menu is hidden

2013-11-27 Thread Yang Bai
I had sent the patch in comment 15 to grub mailing list 
http://lists.gnu.org/archive/html/grub-devel/2013-09/msg00053.html. There were 
some comments on it and this patch is rejected.
After discussing, the maintaner wants to use the patch in comment 14.

Franz Hsieh sent one update patch to the upstream at
http://lists.gnu.org/archive/html/grub-devel/2013-10/msg00070.html and I
sent one ping email to upstream at http://lists.gnu.org/archive/html
/grub-devel/2013-11/msg00029.html.

But still no response from the upstream.

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

Title:
  --hotkey option does not work when the menu is hidden

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

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


[Bug 1042069] Re: Jumpy Mouse Cursor using Thinkpad X230 (+X230t) Touchpad

2013-11-27 Thread ramgorur
I am also having similar problem with Ubuntu 13.10 on ThinkPad S431, any
workaround for S431?

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

Title:
  Jumpy Mouse Cursor using Thinkpad X230 (+X230t) Touchpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1042069/+subscriptions

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


[Bug 1254831] Re: plainbox needs packaging

2013-11-27 Thread Zygmunt Krynicki
The man page stuff is something I don't know how to fix. I'm using
help2man to produce a stub man page as plainbox itself doesn't have a
proper man page (yet). Do you know if there is a way to influence
help2man to not generate such problems?

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

Title:
  plainbox needs packaging

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

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


[Bug 1254831] Re: plainbox needs packaging

2013-11-27 Thread Zygmunt Krynicki
Hi Daniel, thanks for looking at this.
(for some reason launchpad didn't allow me to reply with your message fully 
quoted, please forgive me about the harder readability of the content below).

A few things:
 - ./plainbox/impl/signal.py is GPL (v3) and not GPL (v3 or later)

I understand that this applies to debian/copyright? I'll see if I can
correct that.

 - duplicate-short-description plainbox plainbox-insecure-policy 
plainbox-secure-policy python3-plainbox python3-plainbox-doc
   All the packages have the same short description, so will be hard to 
distinguish in a package manager

I'll correct those, I thought that is the standard as many packages seem
to do that.

 - latest-debian-changelog-entry-without-new-date (minor)

Hmm?

 - It might be worth registering the docs in the -doc package with doc-
base at some stage (Debian Policy Manual section 9.10)

I'll look at that but TBH I never understood the value of that system

 - Why can't the images of the python3 package be in /usr/share/?

It would require patching the source as it is using pkg_resources to
lookup data files relative to the source files. This is something the
python community has strong opinion about but at the same time, works
towards making better for distributions such as Debian.  In particular
there is a work-in-progress system that allows the python code to remain
unchanged while re-arranging the layout of files in the filesystem, with
the help of a mapping file. Still right now it would serve no purpose
(the end result would be identical) so before a global solution is
available I'd rather not patch the library.

 - ./plainbox/vendor/funcsigs/LICENSE needs to be specified in
debian/copyright

I'll correct those, I was under the incorrect assumption that if I
remove things in the clean target (like I do with the vendorized
modules) I don't need to list them in the copyright file.

Thanks
ZK

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

Title:
  plainbox needs packaging

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

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


[Bug 1255452] Re: Dash::test_show_scope_on_load is flaky

2013-11-27 Thread Michał Sawicz
** Also affects: unity8
   Importance: Undecided
   Status: New

** Changed in: unity8
   Status: New = Triaged

** Changed in: unity8
   Importance: Undecided = High

** Changed in: unity8 (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/1255452

Title:
  Dash::test_show_scope_on_load is flaky

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

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


[Bug 1255464] [NEW] radosgw init script missing from 0.64 onwards.

2013-11-27 Thread James Page
Public bug reported:

The radosgw upstart configurations started shipping in 13.10; however
one namespace conflicts with the radosgw init script but does not do the
same thing; so upgrades will break.

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

** Affects: ceph (Ubuntu Saucy)
 Importance: Undecided
 Status: New

** Affects: ceph (Ubuntu Trusty)
 Importance: Undecided
 Status: New

** Also affects: ceph (Ubuntu Saucy)
   Importance: Undecided
   Status: New

** Also affects: ceph (Ubuntu Trusty)
   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/1255464

Title:
  radosgw init script missing from 0.64 onwards.

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

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


[Bug 1255466] [NEW] tegaki-build in Ubuntu 12.04 has known bug

2013-11-27 Thread yanfeng
Public bug reported:

The python-tegakitools 0.3.1-1 got from apt-get doesn't contain this fix: 
https://github.com/tegaki/tegaki/commit/aecd32801ec66efb294f5e296a93e6e5226c5182
The tegaki-build tool will break when running with the model.xml files 
downloaded from tegaki.org site.

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


** Tags: tegaki

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

Title:
  tegaki-build in Ubuntu 12.04 has known bug

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

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


[Bug 1255344] Re: alsamixer reboots phone

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

** Changed in: linux-mako (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/1255344

Title:
  alsamixer reboots phone

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

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


[Bug 1255344] Re: alsamixer reboots phone

2013-11-27 Thread Timo Jyrinki
Happens here too, did su - phablet and alsamixer, and had the device
rebooting soon enough.

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

Title:
  alsamixer reboots phone

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

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


[Bug 556782]

2013-11-27 Thread ShinobiTeno
Created attachment 89895
Samsung R60, xpress 1250, OpenSuse Tumbleweed, kernel 3.11, Mesa 9.2.2, login 
corruption

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

Title:
  [rs690m] [Gateway] Graphics corruption with ati x1200

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

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


[Bug 556782]

2013-11-27 Thread ShinobiTeno
Dear Mr. Deutcher, thank you for will and readiness to help in this
problem!!

I am using radeon.gart=1024, it does not help.
Then I upgraded to Tumbleweed (3.11)
Glxinfo reports:

OpenGL vendor string: X.Org R300 Project
OpenGL renderer string: Gallium 0.4 on ATI RS600
OpenGL version string: 2.1 Mesa 9.2.2
OpenGL shading language version string: 1.20

Then I added radeon.dpm=1, there are no information about dpm or
powermanagement what so ever in dmesg (unlike 5850 card that I have). I
suggest dpm is not supported on this chip. Not great deal, but for
example, 5850 is unstable withOUT dpm in 3.11.

Lastly, of course I read all patches and responses from people in these
two bugs, and tested first switching from 256 VGA memory to 128 via BIOS
(only two options), it didn't help.

Then I appended radeon.vramlimit=64 to grub2 kernel line, updated
grub, rebooted. Nothing changed. I attach the screenshot showing the
issue with gnome-shell corruption and the login triangle issue, that is
even more agressive when system comes out of hibernation.

dmesg | grep -i radeon says:

[0.00] Command line: BOOT_IMAGE=/boot/vmlinuz-3.11.6-4-desktop 
root=UUID=29100748-63ff-45a1-8642-b795f20d4aea 
resume=/dev/disk/by-id/ata-WDC_WD1200BEVS-22UST0_WD-WXC208783969-part2 
splash=silent quiet showopts radeon.dpm=1 radeon.gartsize=1024 
radeon.vramlimit=64
[0.00] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.11.6-4-desktop 
root=UUID=29100748-63ff-45a1-8642-b795f20d4aea 
resume=/dev/disk/by-id/ata-WDC_WD1200BEVS-22UST0_WD-WXC208783969-part2 
splash=silent quiet showopts radeon.dpm=1 radeon.gartsize=1024 
radeon.vramlimit=64
[2.276384] [drm] radeon kernel modesetting enabled.
[2.276584] fb: conflicting fb hw usage radeondrmfb vs EFI VGA - removing 
generic driver
[2.279337] radeon :01:05.0: VRAM: 128M 0x7800 - 
0x7FFF (64M used)
[2.279345] radeon :01:05.0: GTT: 1024M 0x8000 - 
0xBFFF
[2.281879] [drm] radeon: 64M of VRAM memory ready
[2.281885] [drm] radeon: 1024M of GTT memory ready.
[2.304378] [drm] radeon: 1 quad pipes, 1 z pipes initialized.
[2.309271] radeon :01:05.0: WB enabled
[2.309286] radeon :01:05.0: fence driver on ring 0 use gpu addr 
0x8000 and cpu addr 0x880036bbe000
[2.309352] [drm] radeon: irq initialized.
[2.310247] [drm] radeon: ring at 0x80001000
[2.312584] [drm] radeon atom DIG backlight initialized
[2.312592] [drm] Radeon Display Connectors
[2.902375] fbcon: radeondrmfb (fb0) is primary device
[3.227074] radeon :01:05.0: fb0: radeondrmfb frame buffer device
[3.227080] radeon :01:05.0: registered panic notifier
[3.227124] [drm] Initialized radeon 2.34.0 20080528 for :01:05.0 on 
minor 0

I will test the patch today.
At your will, I will give you remote login to the notebook for any kind of 
testing you so desire.

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

Title:
  [rs690m] [Gateway] Graphics corruption with ati x1200

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