[Bug 1305839] Re: FFe: Support for Third Party Driver Installation

2014-04-15 Thread Graham Binns
If you land code for this feature without tests then *please* file a bug
(tagged tech-debt) and let us on the MAAS team know so that we can
either write the tests or help you write the tests. If you don't file a
bug, chances are it's going to get forgotten about.

I've already filed bug 1307906 for adding tests for the web UI warning;
it's not a big change and I'll take care of adding the tests today.

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

Title:
  FFe: Support for Third Party Driver Installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1305839/+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 1307925] [NEW] package samba4 4.0.3+dfsg1-0.1ubuntu1 failed to install/upgrade: installed post-installation script alfolyamat 255 hibakóddal kilépett

2014-04-15 Thread Bor Ferenc
Public bug reported:

fogalmam sincs mi a probléma

ProblemType: Package
DistroRelease: Ubuntu 13.10
Package: samba4 4.0.3+dfsg1-0.1ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-19.33-generic 3.11.10.5
Uname: Linux 3.11.0-19-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
Date: Tue Apr 15 10:52:23 2014
DuplicateSignature: package:samba4:4.0.3+dfsg1-0.1ubuntu1:installed 
post-installation script alfolyamat 255 hibakóddal kilépett
ErrorMessage: installed post-installation script alfolyamat 255 hibakóddal 
kilépett
InstallationDate: Installed on 2014-03-24 (21 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MarkForUpload: True
SourcePackage: samba4
Title: package samba4 4.0.3+dfsg1-0.1ubuntu1 failed to install/upgrade: 
installed post-installation script alfolyamat 255 hibakóddal kilépett
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package need-duplicate-check saucy

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

Title:
  package samba4 4.0.3+dfsg1-0.1ubuntu1 failed to install/upgrade:
  installed post-installation script alfolyamat 255 hibakóddal kilépett

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba4/+bug/1307925/+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 1306916] Re: cgroup-lite should be added as an explicit dependency

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

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

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

Title:
  cgroup-lite should be added as an explicit dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1306916/+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 1306916] Re: cgroup-lite should be added as an explicit dependency

2014-04-15 Thread Shih-Yuan Lee
$ sudo cat /var/log/upstart/cgmanager.log | sort -u
cgmanager: could not open cgroup file for [PID]
...
cgmanager:do_move_pid_main: victim's cgroup is not under proxy's (p.uid 0)
cgmanager:get_pid_cgroup_main: Could not determine the requestor cgroup
cgmanager: Invalid path /run/cgmanager/fs/none,name=systemd///user (No such 
file or directory)
cgmanager:list_children_main: Could not determine the requested cgroup
cgmanager:victim_under_proxy_cgroup: Could not determine the victim's cgroup


** Attachment added: cgmanager.log
   
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1306916/+attachment/4084270/+files/cgmanager.log

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

Title:
  cgroup-lite should be added as an explicit dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1306916/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Damjan Marion
I left over night  following simple app which runs inside linux VM (pinned to 
CPU1). and displays how much ticks happened during the 1 second sleep. I found 
several occasions where sleep was taking much longer.

code:

#includesys/time.h
#includetime.h
#includestdio.h
#includestdint.h

#define CPUSPEED 2533422000

static __inline__ uint64_t getticks(void)
{
 unsigned a, d;
 asm(cpuid);
 asm volatile(rdtsc : =a (a), =d (d));
 return (((uint64_t)a) | (((uint64_t)d)  32));
}
int main()
{
uint64_t t0,t1;
while (1) {
t0 = getticks();
sleep(1);
t1 = getticks();
printf(Ticks: %lu delta:%lu\n,t1-t0, t1-t0-CPUSPEED);
}
return 0;
}


Sample1: 
Ticks: 2533748354 delta:326354
Ticks: 2533785458 delta:363458
Ticks: 2533889852 delta:467852
Ticks: 13309910165 delta:10776488165
Ticks: 2533823762 delta:401762
Ticks: 2533817164 delta:395164
Ticks: 2533894302 delta:472302


Sample2:
Ticks: 2533896753 delta:474753
Ticks: 2533876689 delta:454689
Ticks: 2533783931 delta:361931
Ticks: 20528401242 delta:17994979242
Ticks: 2533904102 delta:482102
Ticks: 2533740733 delta:318733
Ticks: 2533856266 delta:434266


Sample3:
Ticks: 2533761095 delta:339095
Ticks: 2533652242 delta:230242
Ticks: 2533855141 delta:433141
Ticks: 18943955180 delta:16410533180
Ticks: 2533780954 delta:358954
Ticks: 2533923283 delta:501283
Ticks: 2533909033 delta:487033

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1307473/+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 1304407] Re: juju bootstrap defaults to i386

2014-04-15 Thread Robie Basak
** Changed in: juju-core (Ubuntu)
   Status: New = Triaged

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

Title:
  juju bootstrap defaults to i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1304407/+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 1308046] [NEW] Current stable version is 2.2.4

2014-04-15 Thread Ralf Hildebrandt
Public bug reported:

The current stable version of freeradius is the 2.2 series (2.2.4, of march 
19th 2014).
Having at least a PPA for the recent stable version would be a good thing.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: freeradius 2.1.12+dfsg-1.2ubuntu8
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu2
Architecture: amd64
Date: Tue Apr 15 14:47:05 2014
InstallationDate: Installed on 2012-05-07 (707 days ago)
InstallationMedia: Ubuntu-Server 12.04 LTS Precise Pangolin - Release amd64 
(20120424.1)
SourcePackage: freeradius
UpgradeStatus: Upgraded to trusty on 2014-04-15 (0 days ago)

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


** Tags: amd64 apport-bug trusty

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

Title:
  Current stable version is 2.2.4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeradius/+bug/1308046/+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 1307415] Re: IntegrityError: duplicate key value violates unique constraint maasserver_componenterror_component_key

2014-04-15 Thread Andres Rodriguez
** Also affects: maas (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  IntegrityError: duplicate key value violates unique constraint
  maasserver_componenterror_component_key

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307415/+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 1304407] Re: juju bootstrap defaults to i386

2014-04-15 Thread Curtis Hovey
I have created a 1.18.2 milestone. I cannot reproduce this behaviour. I
don't see CI doing it as well.

** Changed in: juju-core/1.18
Milestone: None = 1.18.2

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

Title:
  juju bootstrap defaults to i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1304407/+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 1299055] Re: Standing FFe for icehouse

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/heat/icehouse

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

Title:
  Standing FFe for icehouse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1299055/+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 1308059] [NEW] package php5-cli 5.5.3+dfsg-1ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2014-04-15 Thread Jacqueline S. Homan
Public bug reported:

updates from software updater failed to install

ProblemType: Package
DistroRelease: Ubuntu 13.10
Package: php5-cli 5.5.3+dfsg-1ubuntu2.3
Uname: Linux 3.10.9-031009-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
Date: Tue Apr 15 09:15:23 2014
DuplicateSignature: package:php5-cli:5.5.3+dfsg-1ubuntu2.3:subprocess installed 
post-installation script returned error exit status 4
ErrorMessage: subprocess installed post-installation script returned error exit 
status 4
InstallationDate: Installed on 2013-06-27 (292 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
SourcePackage: php5
Title: package php5-cli 5.5.3+dfsg-1ubuntu2.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 4
UpgradeStatus: Upgraded to saucy on 2014-02-06 (68 days ago)

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


** Tags: amd64 apport-package need-duplicate-check saucy

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

Title:
  package php5-cli 5.5.3+dfsg-1ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1308059/+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 1307780] Re: no armhf commissioning template

2014-04-15 Thread Andres Rodriguez
** Also affects: maas (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: maas (Ubuntu)
   Importance: Undecided = Critical

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

Title:
  no armhf commissioning template

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307780/+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 1257352] Re: kvm hangs occasionally when switching out of the qemu console

2014-04-15 Thread James Hunt
Sorry - ignore that. However, problem persists on a separate fully-
updated amd64 trusty system running kvm version 2.0.0~rc1+dfsg-0ubuntu3.

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

Title:
  kvm hangs occasionally when switching out of the qemu console

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1257352/+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 1307682] Re: samba full_audit reports wrong username when using force user

2014-04-15 Thread Sebastien Bacher
** Changed in: samba (Ubuntu)
   Status: New = Fix Released

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

** Also affects: samba (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: samba (Ubuntu Precise)
   Importance: Undecided = Low

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

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

Title:
  samba full_audit reports wrong username when using force user

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1307682/+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 459967] Re: scripts called on ac power or battery power fail (power.d)

2014-04-15 Thread Kwinz
Hi,

I moved away from Ubuntu because of all the grief with bugs,
regressions, poor hardware support, and all the yearlong unsolved bug
reports. I don't blame anyone for this. I know Ubuntu is free software.
But for me personally I can't comment any more as I am not using Ubuntu
at the moment.

~ Kwinz

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

Title:
  scripts called on ac power or battery power fail (power.d)

To manage notifications about this bug go to:
https://bugs.launchpad.net/acpid/+bug/459967/+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 1304789] Re: keystone packages for 14.04 don't set a log_dir

2014-04-15 Thread James Page
Hi Tom

Thanks for reporting this bug; we'll target to get this resolved post
release of 14.04 as we are now in Final Freeze.

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

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

** Also affects: keystone (Ubuntu Trusty)
   Importance: Medium
   Status: Triaged

** Also affects: keystone (Ubuntu U-series)
   Importance: Undecided
   Status: New

** Changed in: keystone (Ubuntu U-series)
   Importance: Undecided = Medium

** Changed in: keystone (Ubuntu U-series)
   Status: New = Triaged

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

Title:
  keystone packages for 14.04 don't set a log_dir

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1304789/+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 1277526] Re: [SRU] juju-core 1.16.6 point release tracker

2014-04-15 Thread James Page
** Description changed:

  * New upstream stable point release:
  - core: Add destroy-machine --force option to allow forced termination
    of machines that are unresponsive (LP: #1089291).
  - core: Fix problem with dying services with no service units
    attached not completing destruction (LP: #1233457).
  - regression: Add API calls to allow clients  1.16.4 to
    communicate with = 1.16.4 environments (LP: #1253643).
  - regression: Fix juju set-env functionality with MAAS environments
    (LP: #1256179).
  - core: Fix issue with yaml parsing in juju get command (LP: #1227952).
  - core: Limit effect of juju destroy-environment to the environment
    actually being destroyed (LP: #1257481).
  - core: Add 'safe-mode' feature to provisioner to support operations
    such as backup/restore of juju environments (LP: #1254729).
  - core: Fix juju set operation for boolean config attributes
    (LP: #1254938).
- - core: Add update-bootstrap plugin to allow bootstrap machine
-   address to be updated to a new bootstrap node in the event of
-   a bootstrap node failure (LP: #1254579):
-   + d/rules: Build and install juju-update-bootstrap plugin.
- - core: Add remove-* aliases for destroy-* commands (LP: #1261628).
- - core: Propagate ssl-hostname-verification to cloud-init configuration
-   to support use in private clouds with self-signed certs (LP: #1268913).
- - azure: Support 307 redirects in Azure API calls (LP: #1269835).
+ - core: Add remove-* aliases for destroy-* commands (LP: #1261628).
+ - core: Propagate ssl-hostname-verification to cloud-init configuration
+   to support use in private clouds with self-signed certs (LP: #1268913).
+ - azure: Support 307 redirects in Azure API calls (LP: #1269835).

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

Title:
  [SRU] juju-core 1.16.6 point release tracker

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/juju-core/+bug/1277526/+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 1303358] Re: block packages preventing the removal of ruby1.8

2014-04-15 Thread Colin Watson
Since you removed libao-ruby (https://launchpad.net/ubuntu/+source
/libao-ruby/+publishinghistory), there doesn't seem to be a remaining
action for ~ubuntu-archive on this bug, so I've unsubscribed us.  Please
feel free to resubscribe us if there's another action for us to take.

** Changed in: libao-ruby (Ubuntu)
   Status: New = Fix Released

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

Title:
  block packages preventing the removal of ruby1.8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glark/+bug/1303358/+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-curtin] Curtin

2014-04-15 Thread Scott Moser
Blueprint changed by Scott Moser:

Work items changed:
  Work items for ubuntu-13.12:
  kexec support: DONE
  config-archive support: DONE
  change maas template to use config-archive: POSTPONED
  
  Work items for ubuntu-14.01:
  LVM/RAID support: POSTPONED
  non-destructive install: DONE
- UEFI support: POSTPONED
+ UEFI support: DONE
  support for hardware enablement kernels in install: DONE
  
  Work items for ubuntu-14.02:
  documentation improvements: TODO

-- 
Curtin
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-1311-curtin

-- 
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 1303986] Re: [FFe] CloudSigma Datasource doesn't handle vendor-data correctly

2014-04-15 Thread Scott Moser
** Changed in: cloud-init (Ubuntu Trusty)
   Importance: Undecided = Medium

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

Title:
  [FFe] CloudSigma Datasource doesn't handle vendor-data correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1303986/+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 1305418] Re: [SRU] walinuxagent breaks sshd configuration

2014-04-15 Thread Robert C Jennings
debdiff for saucy attached, reassigning to ben

** Changed in: walinuxagent (Ubuntu Saucy)
 Assignee: Robert C Jennings (rcj) = Ben Howard (utlemming)

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

Title:
  [SRU] walinuxagent breaks sshd configuration

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/walinuxagent/+bug/1305418/+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 1306916] Re: cgroup-lite should be added as an explicit dependency

2014-04-15 Thread Serge Hallyn
Could you please show

1. contents of /proc/cgroups and /proc/self/cgroup

2. the contents of debug.out after doing, without cgroup-lite installed,
'lxc-start -n mycontainer -l trace -o debug.out'


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

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

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

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

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

Title:
  cgroup-lite should be added as an explicit dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1306916/+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 1307208] Re: neutron-vpn-agent should wait for neutron-ovs-cleanup to complete

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/neutron

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

Title:
  neutron-vpn-agent should wait for neutron-ovs-cleanup to complete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1307208/+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 1308168] [NEW] /sbin/cgmanager --sigstop -m name=systemd stuck for several hours using 100% CPU

2014-04-15 Thread Philip Muškovac
Public bug reported:

I left my notebook running over night, and when I checked in the morning
I found:

  PID USER  PR  NIVIRTRESSHR   SWAP S  %CPU %MEM TIME+ 
COMMAND 
  
 5902 root  20   0   35.1m  12.0m   1.1m   1.3m R  97.7  0.2 974:53.44 
/sbin/cgmanager --sigstop -m name=systemd

which now (several hours later) still didn't stop

A backtrace from attaching to the process gives:
(gdb) bt full
#0  _dbus_connection_update_dispatch_status_and_unlock 
(connection=0x7f589ecb2ca0, new_status=DBUS_DISPATCH_COMPLETE) at 
../../dbus/dbus-connection.c:4255
changed = optimized out
function = optimized out
data = optimized out
#1  0x7f589c0e0792 in dbus_connection_dispatch (connection=0x7f589ecb2ca0) 
at ../../dbus/dbus-connection.c:4522
message = optimized out
link = optimized out
filter_list_copy = 0x7fffa9045710
message_link = optimized out
result = optimized out
pending = optimized out
reply_serial = optimized out
status = DBUS_DISPATCH_COMPLETE
found_object = 32767
__FUNCTION__ = dbus_connection_dispatch
#2  0x7f589c31a418 in ?? () from /lib/x86_64-linux-gnu/libnih-dbus.so.1
No symbol table info available.
#3  0x7f589c52e2ba in nih_main_loop () from 
/lib/x86_64-linux-gnu/libnih.so.1
No symbol table info available.
#4  0x7f589c962639 in ?? ()
No symbol table info available.
#5  0x7f589bd2dec5 in __libc_start_main (main=0x7f589c962410, argc=4, 
argv=0x7fffa90459e8, init=optimized out, fini=optimized out, 
rtld_fini=optimized out, stack_end=0x7fffa90459d8) at libc-start.c:287
result = optimized out
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {0, 3885596728707560085, 
140018560935990, 140736029022688, 0, 0, -3885696444087618923, 
-3792771927287614827}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 
  0x7fffa9045a10, 0x7f589c95d1c8}, data = {prev = 0x0, cleanup = 
0x0, canceltype = -1459332592}}}
not_first_call = optimized out
#6  0x7f589c96285f in ?? ()
No symbol table info available.

(gdb) bt
#0  0x7f589bdfec13 in __select_nocancel () at 
../sysdeps/unix/syscall-template.S:81
#1  0x7f589c52e239 in nih_main_loop () from 
/lib/x86_64-linux-gnu/libnih.so.1
#2  0x7f589c962639 in ?? ()
#3  0x7f589bd2dec5 in __libc_start_main (main=0x7f589c962410, argc=4, 
argv=0x7fffa90459e8, init=optimized out, fini=optimized out, 
rtld_fini=optimized out, stack_end=0x7fffa90459d8) at libc-start.c:287
#4  0x7f589c96285f in ?? ()

and others, but nih appears in every trace and dbus in most

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: cgmanager 0.24-0ubuntu4
ProcVersionSignature: Ubuntu 3.13.0-21.43-generic 3.13.8
Uname: Linux 3.13.0-21-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu2
Architecture: amd64
Date: Tue Apr 15 19:32:35 2014
EcryptfsInUse: Yes
ExecutablePath: /sbin/cgmanager
InstallationDate: Installed on 2011-10-08 (920 days ago)
InstallationMedia: Kubuntu 11.10 Oneiric Ocelot - Beta amd64 (20111007)
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: cgmanager
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  /sbin/cgmanager --sigstop -m name=systemd stuck for several hours
  using 100% CPU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1308168/+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 1306208] Re: juju scp no longer allows multiple extra arguments to pass throug

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  juju scp no longer allows multiple extra arguments to pass throug

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1306208/+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 1306296] Re: juju cannot downgrade to same major.minor version with earlier patch number

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  juju cannot downgrade to same major.minor version with earlier patch
  number

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1306296/+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 1303735] Re: public-address change to internal bridge post juju-upgrade

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  public-address change to internal bridge post juju-upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1303735/+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 1303880] Re: Juju 1.18.0, can not deploy local charms without series

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  Juju 1.18.0, can not deploy local charms without series

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1303880/+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 1304135] Re: panic: runtime error: index out of range

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  panic: runtime error: index out of range

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1304135/+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 1303697] Re: peer relation disappears during upgrade of juju

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  peer relation disappears during upgrade of juju

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1303697/+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 1299802] Re: upgrade-juju 1.16.6 - 1.18 (tip) fails

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  upgrade-juju 1.16.6 - 1.18 (tip) fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1299802/+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 1299588] Re: LXC permission denied issue with 1.17.7

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core
   Status: Fix Committed = Fix Released

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

Title:
  LXC permission denied issue with 1.17.7

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1299588/+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 1306241] Re: missing breaks/replaces on trusty swift packages

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package swift - 1.13.1~rc2-0ubuntu1

---
swift (1.13.1~rc2-0ubuntu1) trusty; urgency=medium

  [ Chuck Short ]
  * New upstream release candidate (LP: #1299055).

  [ James Page ]
  * d/control: Add appropriate Breaks/Replaces to support move of man pages
between binary packages in 1.13.1~rc1-0ubuntu1 (LP: #1306241).
 -- James Page james.p...@ubuntu.com   Mon, 14 Apr 2014 11:03:23 +0100

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

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

Title:
  missing breaks/replaces on trusty swift packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/swift/+bug/1306241/+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 1307415] Re: IntegrityError: duplicate key value violates unique constraint maasserver_componenterror_component_key

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  IntegrityError: duplicate key value violates unique constraint
  maasserver_componenterror_component_key

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307415/+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 1307780] Re: no armhf commissioning template

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  no armhf commissioning template

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307780/+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 1306335] Re: maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306335/+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 1305839] Re: FFe: Support for Third Party Driver Installation

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  FFe: Support for Third Party Driver Installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1305839/+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 1284652] Re: maas/installation-note could (should?) be echoed to the CLI, not a debconf note

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  maas/installation-note could (should?) be echoed to the CLI, not a
  debconf note

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1284652/+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 1306701] Re: bootresources.yaml references daily builds for trusty

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/maas

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

Title:
  bootresources.yaml references daily builds for trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306701/+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 1307780] Re: no armhf commissioning template

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  no armhf commissioning template

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307780/+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 1306335] Re: maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306335/+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 1305839] Re: FFe: Support for Third Party Driver Installation

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  FFe: Support for Third Party Driver Installation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1305839/+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 1307415] Re: IntegrityError: duplicate key value violates unique constraint maasserver_componenterror_component_key

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  IntegrityError: duplicate key value violates unique constraint
  maasserver_componenterror_component_key

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307415/+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 1306701] Re: bootresources.yaml references daily builds for trusty

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  bootresources.yaml references daily builds for trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306701/+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 1284652] Re: maas/installation-note could (should?) be echoed to the CLI, not a debconf note

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package maas - 1.5+bzr2252-0ubuntu1

---
maas (1.5+bzr2252-0ubuntu1) trusty; urgency=medium

  * New upstream release
- Add support to install Third Party Drivers. In order for this to be
  used the user will have to go to the Settings page to enable the
  installation of these drivers. (LP: #1305839)
- Use release images instead of daily. (LP: #1306701)
- Quote interface name in dhcpd.template, otherwise DHCP server fails
  to start. (LP: #1306335)
- Fix IntegrityError, when multiple processes are trying to register
  the same component. (LP: #1307415)
- Add missing armhf commissioning template (LP: #1307780)
  * debian/maas-region-controller-min.install: Install drivers.yaml.
  * debian/maas-region-controller.postinst: No longer show the
installation note by default. (LP: #1284652)
 -- Andres Rodriguez andres...@ubuntu.com   Wed, 09 Apr 2014 19:02:00 -0400

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

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

Title:
  maas/installation-note could (should?) be echoed to the CLI, not a
  debconf note

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1284652/+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 1307208] Re: neutron-vpn-agent should wait for neutron-ovs-cleanup to complete

2014-04-15 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 1:2014.1~rc2-0ubuntu4

---
neutron (1:2014.1~rc2-0ubuntu4) trusty; urgency=medium

  * d/neutron-vpn-agent.upstart: Wait for neutron-ovs-cleanup service to
start if installed to ensure that Open vSwitch state is cleaned up
on reboot (LP: #1307208).
 -- James Page james.p...@ubuntu.com   Mon, 14 Apr 2014 11:07:44 +0100

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

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

Title:
  neutron-vpn-agent should wait for neutron-ovs-cleanup to complete

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1307208/+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 1287964] Re: MAAS incorrectly detects / sets-up BMC information on Dell PowerEdge servers

2014-04-15 Thread Jason Hobbs
** 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/1287964

Title:
  MAAS incorrectly detects / sets-up BMC information on Dell PowerEdge
  servers

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1287964/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Serge Hallyn
Great, thanks for the test case!

Tried this with current git.qemu.org git HEAD on a trusty
kernel, was not able to reproduce.  Trying on another host.

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1307473/+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 1307780] Re: no armhf commissioning template

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/release_bzr2252

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

Title:
  no armhf commissioning template

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307780/+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 1307415] Re: IntegrityError: duplicate key value violates unique constraint maasserver_componenterror_component_key

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/release_bzr2252

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

Title:
  IntegrityError: duplicate key value violates unique constraint
  maasserver_componenterror_component_key

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1307415/+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 1306701] Re: bootresources.yaml references daily builds for trusty

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/release_bzr2252

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

Title:
  bootresources.yaml references daily builds for trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306701/+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 1306335] Re: maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

2014-04-15 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/release_bzr2252

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

Title:
  maas-dhcp needs to quote interface name in /etc/maas/dhcpd.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1306335/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Serge Hallyn
I tried using 2.0.0~rc1+dfsg-0ubuntu3, using a trusty livecd iso, using
the command

kvm -hda x.img -cdrom ubuntu-13.10-desktop-amd64.iso -m 1024 -realtime
mlock=off -smp 4,sockets=1,cores=4,threads=1 -rtc base=localtime

but still have not seen this.

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1307473/+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 1304407] Re: juju bootstrap defaults to i386

2014-04-15 Thread Curtis Hovey
I just saw this happen testing 1.19.0 deployment on aws fom my amd64
machine.

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

Title:
  juju bootstrap defaults to i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1304407/+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 982218] Re: package libnl-genl-3-200 3.2.3-2ubuntu2 failed to install/upgrade: libnl-genl-3-200:i386 3.2.3-2ubuntu2 (Multi-Arch

2014-04-15 Thread Chris
** Also affects: libnl (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  package libnl-genl-3-200 3.2.3-2ubuntu2 failed to install/upgrade:
  libnl-genl-3-200:i386 3.2.3-2ubuntu2 (Multi-Arch

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnl/+bug/982218/+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 982218] Re: package libnl-genl-3-200 3.2.3-2ubuntu2 failed to install/upgrade: libnl-genl-3-200:i386 3.2.3-2ubuntu2 (Multi-Arch

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

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

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

Title:
  package libnl-genl-3-200 3.2.3-2ubuntu2 failed to install/upgrade:
  libnl-genl-3-200:i386 3.2.3-2ubuntu2 (Multi-Arch

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnl/+bug/982218/+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 1304135] Re: panic: runtime error: index out of range

2014-04-15 Thread Curtis Hovey
** Changed in: juju-core/1.18
   Status: Fix Committed = Fix Released

** Changed in: juju-core/1.18
Milestone: None = 1.18.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/1304135

Title:
  panic: runtime error: index out of range

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1304135/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Serge Hallyn
However, you mention that you have your VM pinned to CPU 1, while the
command line is doing '-cpu 4'.  When I run a VM with -cpu 4 locked to a
single physical cpu, it definately does not do well.  I'm not sure
whether to call that a bug or mis-use.

Example:

cgm create cpuset qemu
cgm setvalue cpuset qemu cpuset.cpus 0
cgm movepid cpuset qemu $$
kvm -hda x.img -cdrom ubuntu-13.10-desktop-amd64.iso -m 1024 -realtime 
mlock=off -smp 4,sockets=1,cores=4,threads=1 -rtc base=localtime

(resulting VM hangs;  without the -smp 4,sockets=1,cores=4,threads=1' it
runs fine.)

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1307473/+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 1300507] Re: Rabbit password is reset on every upgrade which forces lockstep cluster restarts

2014-04-15 Thread Andres Rodriguez
@Julian,

As we previously discussed, the region needs to be able to tell the
cluster about the updated password so the cluster keeps making the
requests to rabbitmq without having to manually restart the cluster.
This needs to be fixed in MAAS core regardless of maas packaging changes
the password on every upgrade.

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

Title:
  Rabbit password is reset on every upgrade which forces lockstep
  cluster restarts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1300507/+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 1299989] Re: maas-dns fails to install without python-seamicroclient

2014-04-15 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  maas-dns fails to install without python-seamicroclient

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1299989/+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 1172583] Re: maas-region-controller.config fails to preconfigure: dbc_go: not found

2014-04-15 Thread Andres Rodriguez
** Changed in: maas (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  maas-region-controller.config fails to preconfigure: dbc_go: not found

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1172583/+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 1300507] Re: Rabbit password is reset on every upgrade which forces lockstep cluster restarts

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

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

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

Title:
  Rabbit password is reset on every upgrade which forces lockstep
  cluster restarts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1300507/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Serge Hallyn
Reproduced just as easily with qemu.org git HEAD.

Again, this appears to only be a case when using -smp 4 while locking to
1 cpu with cpuset.

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

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1307473/+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 1307473] Re: guest hang due to missing clock interrupt

2014-04-15 Thread Damjan Marion
just to clarify, i was pinning my test code inside the guest with
taskset -c 1. There was no pinning on the host side.

Also, i see the same issue with -smp 2.

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

Title:
  guest hang due to missing clock interrupt

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1307473/+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 1307230] Re: 3.1.0 daemon infinite loop when no matched user in secrets

2014-04-15 Thread Brian Murray
** Changed in: rsync (Ubuntu Trusty)
   Status: New = Triaged

** Changed in: rsync (Ubuntu Trusty)
   Importance: Undecided = High

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

Title:
  3.1.0 daemon infinite loop when no matched user in secrets

To manage notifications about this bug go to:
https://bugs.launchpad.net/rsync/+bug/1307230/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
Thanks for reporting this bug.  You say this is only with namespaces
pre-created by openstack.  I'm confused on that - why is openstack
creating new network namespaces inside the container?

I've just tested under precise, and 'ip netns add' does the right thing
there, so contrary to what I said before it looks like there is no bug
in iproute.  I'm going to mark this against nova, but really have no
idea what part of nova is involved here.

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

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
When you say

  root@osctrl3dc02:~# ip netns exec vips ip a


Is  osctrl3dc02 the host or a container?  Are you saying that you start a 
container on the host, and then /var/run/netns/ contents change on the host?

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
D'oh, never mind, I see it now.

** No longer affects: nova (Ubuntu)

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

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

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

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1263738] Re: login console 0 in user namespace container is not configured right

2014-04-15 Thread Brian Murray
This seems to be fixed the in the trusty version of upstart, although no
debian/changelog entry was created for this bug.

** Changed in: upstart
   Status: Fix Committed = Fix Released

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

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

Title:
  login console 0 in user namespace container is not configured right

To manage notifications about this bug go to:
https://bugs.launchpad.net/upstart/+bug/1263738/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
So the particular files /var/run/netns/whatzit are bind-mounted
/proc/self/ns/net files from a task which no longer exists, which are
pinning the netns.

Interestingly, if I reproduce this by hand by doing

term 1: lxc-unshare -s NETWORK -- /bin/bash
term 2: mkdir /var/run/netns/z;  mount --bind /proc/$pid/net/ns /var/run/netns/z
lxc-start -n t1 -d;  sleep 3; lxc-stop -n t1 -k

then /var/run/netns/z permissions are not changed.

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

Title:
  network namespace error

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

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

apport-collect 1307829

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

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

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

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

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
Ok I see the problem but am not sure what to do about it.

iproute makes /var/run/netns MS_SHARED.  When a container starts up, it
umounts everything.  So the netns bind mounts are being umounted on the
host.

Ideally it woudl be as simple as marking /var/run/netns MS_SLAVE before
spawnign the container.  However, 'mount --make-rslave /var/run/netns'
fails because /var/run/netns doesn't appear to be in my mounts table.
Rather /netns is.

** No longer affects: linux (Ubuntu)

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
(Please disregard the notice about required logs)

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
** Changed in: iproute (Ubuntu)
   Importance: Undecided = Medium

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

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
The reason iproute is doing this is:

/* Make it possible for network namespace mounts to propogate between
 * mount namespaces.  This makes it likely that a unmounting a network
 * namespace file in one namespace will unmount the network namespace
 * file in all namespaces allowing the network namespace to be freed
 * sooner.
 */

The command 'ip netns delete x1' simply unmounts /run/netns/x1.  If you
have 300 'ip netns exec x$i' commands running, then having /run/netns
MS_SHARED will propagate the unmounte to all 300 namespaces causing the
network namespace to be freed earlier.

Unfortunately that makes it so that any task which unmounts
/run/netns/x1, which all can do, unmounts it everywhere.

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
One way iproute could be helpful here by creating a /run/netns/mnt, onto
which one 'iproute' mounts namespace was bind-mounted.  Then 'ip netns
exec' could setns into that mount namespace, *then* unshare mntns.  The
/run/netns could be a slave to the host but peer with all its child
namepace.  (I guess it would have to be /run/netns_mnt for that to be
sane)

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

Title:
  network namespace error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1308284] [NEW] catalina.properties points to wrong location for shared libraries and classes

2014-04-15 Thread Lucas Madar
Public bug reported:

By default, catalina.home points to /usr/share/tomcat7 and catalina.base
points to /var/lib/tomcat7.

catalina.properties sets classloader paths:
common.loader=${catalina.base}/lib,${catalina.base}/lib/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar,${catalina.home}/common/classes,${catalina.home}/common/*.jar
server.loader=${catalina.home}/server/classes,${catalina.home}/server/*.jar
shared.loader=${catalina.home}/shared/classes,${catalina.home}/shared/*.jar

However, the directory structure of shared/, shared/classes/, server/,
server/classes/, common/ and common/classes/ all exist under
/var/lib/tomcat7 (catalina.base), not /usr/share/tomcat7
(catalina.home).

Thus, any files placed into these directories are ignored.

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

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

Title:
  catalina.properties points to wrong location for shared libraries and
  classes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat7/+bug/1308284/+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 1308314] [NEW] incorrect balancing in weight value 256

2014-04-15 Thread Tom Zhou
Public bug reported:

Haproxy can work correctly with wight 256,  the node with weight 256
either takes all the traffic or takes none traffic:

1-1 weight: web1:256, web2:1, web3:1 (incorrect case.)
(1024 accesses * 3 times to vip)
result 1
web1: 1024
web2: 0
web3: 0
result 2
web1: 1024
web2: 0
web3: 0
result 3
web1 counted: 1024
web2 counted: 0
web3 counted: 0

1-2 weight: web1:255, web2:1, web3:1 (correct case.)
(1024 accesses * 3 times to vip)
result 1
web1 counted: 1017
web2 counted: 4
web3 counted: 3
result 2
web1 counted: 1016
web2 counted: 4
web3 counted: 4
result 3
web1 counted: 1016
web2 counted: 4
web3 counted: 4

2-1 web1:256, web2:128, web3:128 (incorrect case.)
(256 accesses * 3 times to vip)
result 1
web1 counted: 1
web2 counted: 128
web3 counted: 127
result 2
web1 counted: 0
web2 counted: 128
web3 counted: 128
result 3
web1 counted: 0
web2 counted: 128
web3 counted: 128

2-2 web1:255, web2:128, web3:128(correct case.)
(256 accesses * 3 times to vip)
result 1
web1 counted: 128
web2 counted: 64
web3 counted: 64
result 2
web1 counted: 128
web2 counted: 64
web3 counted: 64
result 3
web1 counted: 128
web2 counted: 64
web3 counted: 64

From the haproxy aspect, they have fixed a bug of Roundrobin can not
work well when a server's weight is 256 , make sure that below patch
has been used on above environment.

  Mail of Roundrobin can not work well when a server's weight is 256
  https://www.mail-archive.com/haproxy@formilux.org/msg10613.html
  Patch:
  
https://dev.openwrt.org/browser/packages/net/haproxy/patches/0005-BUG-MEDIUM-server-set-the-macro-for-server-s-max-wei.patch

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

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

Title:
  incorrect balancing in weight value 256

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/haproxy/+bug/1308314/+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 1307829] Re: network namespace error

2014-04-15 Thread Serge Hallyn
Ah the problem was that /etc/mtab was a file, and /run/netns did not
show up in it so mount refused to act on it.  Changing /etc/mtab to a
symlink to /proc/mounts allows me to make those rslave.

So it should suffice for lxc to always turn all of / into MS_SLAVE.  It
currently does so only when / is MS_SHARED.

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

** Summary changed:

- network namespace error
+ /run/netns/* gets umounted on the host when a container starts

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

Title:
  /run/netns/* gets umounted on the host when a container starts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iproute/+bug/1307829/+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 1308324] [NEW] package mysql-server-5.5 (not installed) failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2014-04-15 Thread Colin Church
Public bug reported:

This is the same type of failure but I am running Ubuntu 14.04.
I also get notification of broken packages which cannot be fixed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: mysql-server-5.5 (not installed)
ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
Uname: Linux 3.13.0-20-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3
AptOrdering:
 mysql-server: Purge
 mysql-client: Purge
 mysql-server-5.5: Install
 mysql-server-5.5: Configure
Architecture: i386
Date: Wed Apr 16 13:21:31 2014
DuplicateSignature: package:mysql-server-5.5:(not installed):subprocess new 
pre-installation script returned error exit status 1
ErrorMessage: subprocess new pre-installation script returned error exit status 
1
SourcePackage: mysql-5.5
Title: package mysql-server-5.5 (not installed) failed to install/upgrade: 
subprocess new pre-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-5.5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 need-duplicate-check trusty

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

Title:
  package mysql-server-5.5 (not installed) failed to install/upgrade:
  subprocess new pre-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1308324/+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 1257352] Re: kvm hangs occasionally when switching out of the qemu console

2014-04-15 Thread Serge Hallyn
I've been trying to reproduce with current trusty, but on amd64, with no
success.

Which guest were you using?  Can you reproduce it just booting a desktop
iso with SDL graphics, i.e.

kvm -cdrom ubuntu-13.10-desktop-$arch.iso -m 512

?

(Will test on i386.  If that succeeds then I can bisect.)

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

Title:
  kvm hangs occasionally when switching out of the qemu console

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1257352/+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 1300640] Re: Xorg crashed with SIGABRT

2014-04-15 Thread Chris Wilson
I've pushed some more assertions to catch the most obvious suspects. Is
it possible for you to compile xf86-video-intel.git with --enable-debug?

** 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/1300640

Title:
  Xorg crashed with SIGABRT

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

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


[Bug 1298255] Re: Xorg crashed with SIGSEGV after logging in to VMware VCenter in rdesktop session

2014-04-15 Thread Chris Wilson
*** This bug is a duplicate of bug 1292961 ***
https://bugs.launchpad.net/bugs/1292961

** This bug has been marked a duplicate of bug 1292961
   Xorg crashed with SIGABRT

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

Title:
  Xorg crashed with SIGSEGV after logging in to VMware VCenter in
  rdesktop session

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

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


[Bug 1303863] Re: Xorg crashed with SIGSEGV in BlockHandler()

2014-04-15 Thread Chris Wilson
*** This bug is a duplicate of bug 1292961 ***
https://bugs.launchpad.net/bugs/1292961

** This bug has been marked a duplicate of bug 1292961
   Xorg crashed with SIGABRT

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

Title:
  Xorg crashed with SIGSEGV in BlockHandler()

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

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


[Bug 1307832] Re: Fail to display the changelog packages

2014-04-15 Thread Michael Vogt
Thanks for your bugreport.

I just tried to reproduce this on my 14.04 system but the changelog fetching 
works for me. What output do you have if you run:
$ apt-get changelog gedit
in a terminal?

** Changed in: synaptic (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/1307832

Title:
  Fail to display the changelog packages

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

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


[Bug 1292961] Re: Xorg crashed with SIGABRT

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

** Changed in: xserver-xorg-video-intel (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/1292961

Title:
  Xorg crashed with SIGABRT

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

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


[Bug 1298656] Re: hud-service crashed with g-assert-if-reached in GMenu call from qtgmenu::QtGMenuModel::CreateChild()

2014-04-15 Thread Marcus Tomlinson
** Branch unlinked: lp:~unity-api-team/hud/lp-1298656

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

Title:
  hud-service crashed with g-assert-if-reached in GMenu call from
  qtgmenu::QtGMenuModel::CreateChild()

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

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


Re: [Bug 994921] Re: 'ubuntu-bug /var/crash/app.crash' (and even more so, 'apport-cli -c /var/crash/app.crash') should still allow manual bug filing in stable releases

2014-04-15 Thread Martin Pitt
Bob Bib [2014-04-14 19:37 -]:
 More to say, AFAIK,
 a vast majority of packages stored in Ubuntu repos are NOT really maintained 
 by dedicated persons,
 but are actually just auto-synced from Debian repositories
 (sometimes with minimal changes to make them buildable on Ubuntu),
 so, unfortunately, there's NO much help from reporting problems with such 
 packages here on Launchpad.
 
 So it looks like the advanced Ubuntu users should better look at Debian
  actual upstream projects for non-essential Ubuntu packages bug
 reporting.

Yes, that's right indeed.

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

Title:
  'ubuntu-bug /var/crash/app.crash' (and even more so, 'apport-cli -c
  /var/crash/app.crash') should still allow manual bug filing in stable
  releases

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

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


[Bug 1089070] Re: Could not open file /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_quantal_main_binary-amd64_Packages - open (24: Too many open files)

2014-04-15 Thread Michael Vogt
Thanks for your bugreport.

If you can still reproduce this issue, could you please attach your
/etc/apt/sources.list and /etc/apt/sources.list.d/* files?

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

Title:
  Could not open file /var/lib/apt/lists/archive.ubuntu
  .com_ubuntu_dists_quantal_main_binary-amd64_Packages - open (24: Too
  many open files)

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

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


[Bug 1295085] Re: powerd just listens to one ofono modem (no dual SIM support)

2014-04-15 Thread Alfonso Sanchez-Beato
** Changed in: powerd (Ubuntu)
 Assignee: (unassigned) = Alfonso Sanchez-Beato (alfonsosanchezbeato)

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

Title:
  powerd just listens to one ofono modem (no dual SIM support)

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

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


[Bug 1307856] [NEW] Kubuntu 14.04 installer crashesh during creation of an ext4 partition

2014-04-15 Thread Paweł Ciechomski
Public bug reported:

When I'm trying to install Kubuntu 14.04 14-Apr-2014 20:49 build I have
an error during partitioning (I chose manual partitioning). I wanted to
create four partitions - EFI, ext4 for /, swap and ext4 for home. When I
created EFI partition and started creating ext4 for / I saw that I can't
choose mount point for it, but I changed this partition to ext2, chose
mount point and made it ext4 again and applied changes. At this moment
installer crashed and I got an error:

Traceback (most recent call last):
  File /usr/lib/ubiquity/ubiquity/frontend/kde_components/PartMan.py, line 
421, in on_partition_list_treeview_activated
self.partman_create_dialog(devpart, partition)
  File /usr/lib/ubiquity/ubiquity/frontend/kde_components/PartMan.py, line 
220, in partman_create_dialog
method = self.create_use_method_names[method_description]
KeyError: 'System plików ext4 z ksi\x19gowaniem'

I must add that I use polish version of installer (I want Kubuntu in Polish), 
and this problem doesn't occur when I choose English on the start of 
installation.
Looking at the KeyError line I must admit that in my opinion problem is in 
translation.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubiquity 2.18.4
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu2
Architecture: amd64
CasperVersion: 1.340
CurrentDesktop: KDE
Date: Tue Apr 15 06:04:33 2014
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/kubuntu.seed 
boot=casper maybe-ubiquity quiet splash --
LiveMediaBuild: Kubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140414.1)
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug kubuntu trusty ubiquity-2.18.4

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

Title:
  Kubuntu 14.04 installer crashesh during creation of an ext4 partition

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

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

[Bug 1307857] [NEW] New lock screen doesn't work with On Screen Keyboard activated

2014-04-15 Thread Oscar Tiderman
Public bug reported:

To reproduce:
1. Activate On Screen Keyboard under System Settings - Universal Access
2. Lock screen, either by Ctrl + Alt + L or let it time out
3. Log in, you will see the old (is it gnome-screensaver-something?) pre 14.04 
lock screen login and not the cool new one


If you disable On Screen Keyboard and do the procedure again, it will show the 
new lock screen. Sorry if I files this bug against the wrong package.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: unity-greeter 14.04.9-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Apr 15 08:12:44 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2014-03-30 (15 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
SourcePackage: unity-greeter
UpgradeStatus: Upgraded to trusty on 2014-03-30 (15 days ago)

** Affects: unity-greeter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  New lock screen doesn't work with On Screen Keyboard activated

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

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


Re: [Bug 1307335] [NEW] Mixxx doesn't produce any sounds

2014-04-15 Thread Max Linke
what sound device did you set in the preferences? It might be that mixxx
picked a sound device where you don't have any speakers connected. I'm
not sure if ubuntu also uses pulse-audio these days but I assume it
does. Then you can check with pavu-control if pulse notices that mixxx
wants to play some sounds

On Mon, 2014-04-14 at 07:34 +, Linux Lover wrote:
 Public bug reported:
 
 Mixxx doesn't produce any sounds when playing music.
 
 Step to reproduce:
 
 1) Install Mixxx
 2) Scan music directory
 3) Play a song
 4) No sound output
 
 ProblemType: Bug
 DistroRelease: Ubuntu 14.04
 Package: mixxx 1.10.1~dfsg0-1
 ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
 Uname: Linux 3.13.0-24-generic x86_64
 ApportVersion: 2.14.1-0ubuntu2
 Architecture: amd64
 CurrentDesktop: GNOME
 Date: Mon Apr 14 00:26:33 2014
 EcryptfsInUse: Yes
 InstallationDate: Installed on 2014-04-03 (11 days ago)
 InstallationMedia: It
 ProcEnviron:
  PATH=(custom, no user)
  XDG_RUNTIME_DIR=set
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 SourcePackage: mixxx
 UpgradeStatus: No upgrade log present (probably fresh install)
 
 ** Affects: mixxx (Ubuntu)
  Importance: Undecided
  Status: New
 
 
 ** Tags: amd64 apport-bug trusty


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

Title:
  Mixxx doesn't produce any sounds

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

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


[Bug 1307193] Re: Failure on upgrade to 14.04

2014-04-15 Thread Jean-Baptiste Lallement
As Brian, instructions to revert to official Ubuntu packages are
documented on https://launchpad.net/~xorg-edgers/+archive/ppa . From
these instructions:


To revert to official packages, install the ppa-purge package and run sudo 
ppa-purge xorg-edgers. Note: This currently has issues in oneiric because 
ppa-purge there does not work with multiarch. ppa-purge packages from this PPA 
do purge correctly on precise and newer.


The packages that are causing this problem on your system are:
libdrm-dev 2.4.52+git20140121.46d451c9-0ubuntu0sarvatt~saucy
libdrm-intel1 2.4.52+git20140121.46d451c9-0ubuntu0sarvatt~saucy
libdrm-nouveau2 2.4.52+git20140121.46d451c9-0ubuntu0sarvatt~saucy
libdrm-radeon1 2.4.52+git20140121.46d451c9-0ubuntu0sarvatt~saucy
libdrm2 2.4.52+git20140121.46d451c9-0ubuntu0sarvatt~saucy
libegl1-mesa 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libegl1-mesa-drivers 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libgbm1 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libgl1-mesa-dev 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libgl1-mesa-dri 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libgl1-mesa-glx 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libglamor0 0.6.0+git20140313.a4fbc773-0ubuntu0sarvatt~saucy
libglapi-mesa 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libgles2-mesa 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libllvm3.4 1:3.4-1ubuntu2~xedgers~saucy1
libopenvg1-mesa 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libosmesa6 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libxatracker2 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
libxcb-composite0 1.10-2ubuntu1~xedgers~saucy1
libxcb-dri2-0 1.10-2ubuntu1~xedgers~saucy1
libxcb-dri2-0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-dri3-0 1.10-2ubuntu1~xedgers~saucy1
libxcb-dri3-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-glx0 1.10-2ubuntu1~xedgers~saucy1
libxcb-glx0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-present-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-present0 1.10-2ubuntu1~xedgers~saucy1
libxcb-randr0 1.10-2ubuntu1~xedgers~saucy1
libxcb-randr0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-render0 1.10-2ubuntu1~xedgers~saucy1
libxcb-render0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-shape0 1.10-2ubuntu1~xedgers~saucy1
libxcb-shape0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-shm0 1.10-2ubuntu1~xedgers~saucy1
libxcb-shm0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-sync-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-sync1 1.10-2ubuntu1~xedgers~saucy1
libxcb-xfixes0 1.10-2ubuntu1~xedgers~saucy1
libxcb-xfixes0-dev 1.10-2ubuntu1~xedgers~saucy1
libxcb-xv0 1.10-2ubuntu1~xedgers~saucy1
libxcb1 1.10-2ubuntu1~xedgers~saucy1
libxcb1-dev 1.10-2ubuntu1~xedgers~saucy1
libxshmfence-dev 1.1-2~xedgers~saucy1
libxshmfence1 1.1-2~xedgers~saucy1
mesa-common-dev 10.2.0~git20140331.ec4b8d16-0ubuntu0ricotz~saucy
xserver-xorg-video-ati 1:7.3.99+git20140317.bdc41204-0ubuntu0sarvatt~saucy
xserver-xorg-video-glamoregl 0.6.0+git20140313.a4fbc773-0ubuntu0sarvatt~saucy
xserver-xorg-video-intel 2:2.99.911+git20140331.5c0623b5-0ubuntu0ricotz~saucy
xserver-xorg-video-nouveau 1:1.0.10+git20140220.480f0998-0ubuntu0sarvatt~saucy
xserver-xorg-video-radeon 1:7.3.99+git20140317.bdc41204-0ubuntu0sarvatt~saucy
xserver-xorg-video-vmware 1:13.0.1+git20140227.51cdfa6f-0ubuntu0sarvatt~saucy

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

Title:
  Failure on upgrade to 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+bug/1307193/+subscriptions

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


[Bug 1292961] Re: Xorg crashed with SIGABRT

2014-04-15 Thread Chris Wilson
Is it possible for you to compile xf86-video-intel.git with --enable-
debug?

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

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

Title:
  Xorg crashed with SIGABRT

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

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


[Bug 1307773] Re: apt-get assert failure: *** buffer overflow detected ***: apt-get terminated

2014-04-15 Thread Michael Vogt
Hello Kai, is this problem reproducable? If so, could you please send me
your /etc/apt/* directory so that I can try to debug the bug?

** Changed in: apt (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/1307773

Title:
  apt-get assert failure: *** buffer overflow detected ***: apt-get
  terminated

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

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


[Bug 1307684] Re: the python apport hook slows down startup time of the python interpreter by 50%

2014-04-15 Thread Martin Pitt
** Changed in: apport (Ubuntu)
   Status: New = Fix Committed

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

Title:
  the python apport hook slows down startup time of the python
  interpreter by 50%

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

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


[Bug 1077634] Re: packages should use xz compression

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

** Changed in: openjdk-7 (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/1077634

Title:
  packages should use xz compression

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1077634/+subscriptions

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


[Bug 1077634] Re: packages should use xz compression

2014-04-15 Thread Rolf Leggewie
** Changed in: openjdk-7 (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  packages should use xz compression

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