[Bug 1349986] Re: Ubuntu fails to boot with multipath

2014-08-22 Thread Anton Blanchard
** Tags removed: architecture-ppc64
** Tags added: architecture-ppc64le

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

Title:
  Ubuntu fails to boot with multipath

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

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


[Bug 1349860] Re: [MIR] python-keystonemiddleware (b-d) of nova

2014-08-22 Thread Matthias Klose
approved

Override component to main
python-keystonemiddleware 1.0.0-1 in utopic: universe/misc - main
python-keystonemiddleware 1.0.0-1 in utopic amd64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic arm64: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic armhf: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic i386: universe/python/optional/100% 
- main
python-keystonemiddleware 1.0.0-1 in utopic powerpc: 
universe/python/optional/100% - main
python-keystonemiddleware 1.0.0-1 in utopic ppc64el: 
universe/python/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic amd64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic arm64: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic armhf: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic i386: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic powerpc: 
universe/doc/optional/100% - main
python-keystonemiddleware-doc 1.0.0-1 in utopic ppc64el: 
universe/doc/optional/100% - main
13 publications overridden.


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

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

Title:
  [MIR] python-keystonemiddleware (b-d) of nova

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

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


[Bug 1315888] Re: Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

2014-08-22 Thread Thomas P
This bug also affects phpmyadmin as it disables GZipped files export or
import.

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

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

Title:
  Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

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

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


[Bug 1270193] Re: /etc/init.d/munin-node not systemd compliant

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

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

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

Title:
  /etc/init.d/munin-node not systemd compliant

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

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


[Bug 1270193] Re: /etc/init.d/munin-node not systemd compliant

2014-08-22 Thread Markus Wörle
I'm also affected by this issue I think. I don't know for now whether it
has something to do with systemd or startup, but if the munin-node
service gets started with start munin-node, it can't be stopped with
/etc/init.d/munin-node stop although it went [OK]. Also /etc/init.d
/munin-node restart won't work anymore, it the service has been brought
up via start munin-node.

The same effect occurs vice versa: if you start the node with
/etc/init.d/munin-node start, you can't control it by upstart
controls.

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

Title:
  /etc/init.d/munin-node not systemd compliant

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

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


[Bug 1328556] Re: init/irqbalance should support $OPTIONS

2014-08-22 Thread Louis Bouchard
** Description changed:

+ [SRU justification]
+ Without this modification, adding an $OPTIONS variable in 
/etc/default/irqbalance is useless.
+ 
+ [Impact]
+ Impossibility to add startup options using $OPTIONS
+ 
+ [Fix]
+ Add $OPTIONS to the upstart script similar to what is used in the SysV script
+ 
+ [Test Case]
+ Run the following script :
+ 
+ #!/bin/bash
+ 
+ 
+ apt-get update  apt-get -y install irqbalance
+ 
+ cat  EOF  /etc/default/irqbalance
+ OPTIONS=--hintpolicy=ignore
+ EOF
+ 
+ restart irqbalance
+ 
+ Return=$(ps aux | grep irqbalance | grep -v grep | grep hintpolicy)
+ 
+ if [[ -z $Return ]];then
+# Test fails : $OPTIONS not taken into account
+echo Test Failed
+exit -1
+ else
+echo Test Succeeded
+exit 0
+ fi
+ 
+ [Regression]
+ Risk of irqbalance not starting if invalid option were present in 
/etc/default/irqbalance previously
+ 
+ [Original description of the problem]
+ 
  /etc/init.d/irqbalance supports setting an $OPTIONS variable to pass
  parameters to the irqbalance daemon
  
  /etc/init/irqbalance should also support an $OPTIONS variable.
  
  Usage example to workaround #1321425
  /etc/default/irqbalance
  OPTIONS=--hintpolicy=ignore

** Patch removed: lp1328556_add_options_support.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+attachment/4183583/+files/lp1328556_add_options_support.debdiff

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

Title:
  init/irqbalance should support $OPTIONS

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

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


[Bug 1328556] Re: init/irqbalance should support $OPTIONS

2014-08-22 Thread Louis Bouchard
debdiff for Trusty's SRU

** Patch added: lp1328556_add_options_support.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1328556/+attachment/418/+files/lp1328556_add_options_support.debdiff

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

Title:
  init/irqbalance should support $OPTIONS

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

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


[Bug 1360287] [NEW] python-simplestreams contains openstack bits

2014-08-22 Thread Scott Moser
Public bug reported:

the python-simplestreams package contains the openstack dependent bits 
(mirros/glance and such).
there is python-simplestreams-openstack explicitly for this purpose, but as it 
is, that package is mostly empty other than dependencies.

The fix would be to not collect the openstack files into python-
simplestreams, but instead collect them into python-simplestreams-
openstack.

Additionally, i'd like to get tools/sstream-mirror-glance into the
distro.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: python-simplestreams 0.1.0~bzr351-0ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-6.11-generic 3.16.0-rc7
Uname: Linux 3.16.0-6-generic x86_64
ApportVersion: 2.14.6-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Aug 22 10:04:46 2014
EcryptfsInUse: Yes
InstallationDate: Installed on 2011-10-19 (1038 days ago)
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
PackageArchitecture: all
SourcePackage: simplestreams
UpgradeStatus: Upgraded to utopic on 2013-05-20 (459 days ago)

** Affects: simplestreams (Ubuntu)
 Importance: Medium
 Status: Confirmed


** Tags: amd64 apport-bug utopic

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

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

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

Title:
  python-simplestreams contains openstack bits

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

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


[Bug 1357252] Re: Upstart jobs specifying cgroup fail to start occasionally

2014-08-22 Thread James Hunt
** Also affects: systemd-shim (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Upstart jobs specifying cgroup fail to start occasionally

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-app-launch/+bug/1357252/+subscriptions

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


[Bug 1340983] Re: GlanceMirror class does not expose progress update callbacks

2014-08-22 Thread Launchpad Bug Tracker
This bug was fixed in the package simplestreams - 0.1.0~bzr354-0ubuntu1

---
simplestreams (0.1.0~bzr354-0ubuntu1) utopic; urgency=medium

  * New upstream snapshot.
- support progress output in the glance mirror (LP: #1340983)
- upstream uses pyflakes instead of pylint
 -- Scott Moser smo...@ubuntu.com   Fri, 22 Aug 2014 10:06:19 -0400

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

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

Title:
  GlanceMirror class does not expose progress update callbacks

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

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


[Bug 1357471] Re: Samba4 AD DC randomly dies, error: Did not manage to negotiate mandetory feature SIGN for dcerpc auth_level 6.

2014-08-22 Thread Thiago Martins
Hey guys!

This problem still persist on Samba 4.1.11 from my PPA.

Seems to be a upstream problem.

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

Title:
  Samba4 AD DC randomly dies, error: Did not manage to negotiate
  mandetory feature SIGN for dcerpc auth_level 6.

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

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


[Bug 1359946] Re: smbd spawns hundreds/thousands of processes

2014-08-22 Thread Scott Alfter
...and it turns out the router is not to blame, as when I logged into my
server this morning to check on it, top looked something like this:

top - 08:38:30 up 1 day, 14:40,  1 user,  load average: 874.41, 870.45, 860.30
Tasks: 1050 total, 877 running, 173 sleeping,   0 stopped,   0 zombie
%Cpu(s): 13.9 us, 85.6 sy,  0.3 ni,  0.0 id,  0.0 wa,  0.2 hi,  0.0 si,  0.0 st
KiB Mem:   3491160 total,  3340508 used,   150652 free,   382332 buffers
KiB Swap:  2097148 total,40056 used,  2057092 free.   206400 cached Mem

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND
8 root  20   0   0  0  0 S   4.6  0.0  93:24.75 rcuos/0
9 root  20   0   0  0  0 S   4.6  0.0 107:11.97 rcuos/1
 5900 salfter   20   0   25740   2464   1132 R   1.3  0.1   0:00.27 top
 2716 salfter   20   0 1400368  85772   2872 S   1.0  2.5  10:05.09 sabnzbdplus
 1057 salfter   20   0  280604   5936   3928 R   0.7  0.2   0:50.99 smbd
 1940 salfter   20   0  280604   5960   3952 R   0.7  0.2   0:50.51 smbd
 2615 salfter   20   0  280004   5852   3868 R   0.7  0.2   2:07.74 smbd
 3422 salfter   20   0  280012   5856   3872 R   0.7  0.2   2:06.06 smbd
 4002 salfter   20   0  280012   5860   3876 R   0.7  0.2   2:03.86 smbd
 4219 salfter   20   0  280012   5864   3880 R   0.7  0.2   2:02.97 smbd
 4330 salfter   20   0  279652   5824   3840 R   0.7  0.2  10:41.66 smbd
 4553 salfter   20   0  281156   6000   3992 R   0.7  0.2   0:01.40 smbd
 4896 salfter   20   0  280012   5860   3876 R   0.7  0.2   2:00.07 smbd
 5229 salfter   20   0  280136   5864   3880 R   0.7  0.2   1:58.06 smbd
 5351 salfter   20   0  281156   5988   3980 R   0.7  0.2   0:00.46 smbd
 5449 salfter   20   0  279696   5844   3860 R   0.7  0.2   7:19.14 smbd
 5748 salfter   20   0  280604   5940   3932 R   0.7  0.2   0:43.70 smbd
 6203 salfter   20   0  280604   5964   3956 R   0.7  0.2   0:43.20 smbd
 6410 salfter   20   0  279652   5824   3840 R   0.7  0.2   6:35.06 smbd
 7511 salfter   20   0  279660   5828   3844 R   0.7  0.2   6:01.25 smbd
 8540 salfter   20   0  280180   5860   3876 R   0.7  0.2   1:50.95 smbd
 9098 salfter   20   0  280180   5892   3908 R   0.7  0.2   1:46.50 smbd
 9157 salfter   20   0  280604   5924   3916 R   0.7  0.2   0:38.41 smbd
10018 salfter   20   0  280180   5876   3892 R   0.7  0.2   1:43.70 smbd
10233 salfter   20   0  280180   5888   3904 R   0.7  0.2   1:42.71 smbd
10382 salfter   20   0  279660   5828   3844 R   0.7  0.2   4:54.70 smbd
12170 salfter   20   0  279676   5836   3852 R   0.7  0.2   4:35.70 smbd
12363 salfter   20   0  280180   5868   3884 R   0.7  0.2   1:38.48 smbd
13355 salfter   20   0  280180   5880   3896 R   0.7  0.2   1:33.46 smbd
13907 salfter   20   0  280180   5896   3912 R   0.7  0.2   1:32.28 smbd
15617 salfter   20   0  280708   5956   3952 R   0.7  0.2   0:27.87 smbd
16100 salfter   20   0  280708   5928   3924 R   0.7  0.2   0:27.61 smbd
16320 salfter   20   0  280736   5924   3920 R   0.7  0.2   0:27.66 smbd

smbd has spawned 902 processes.

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

Title:
  smbd spawns hundreds/thousands of processes

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

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


[Bug 1357252] Re: Upstart jobs specifying cgroup fail to start occasionally

2014-08-22 Thread James Hunt
** Changed in: upstart
   Status: In Progress = Invalid

** Changed in: upstart
   Importance: Critical = Undecided

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

Title:
  Upstart jobs specifying cgroup fail to start occasionally

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-app-launch/+bug/1357252/+subscriptions

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


[Bug 1311463] Re: disk-setup unable to partition disks

2014-08-22 Thread Scott Moser
** Changed in: cloud-init
   Status: New = Confirmed

** Changed in: cloud-init
   Importance: Undecided = Medium

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

** Changed in: cloud-init (Ubuntu)
   Status: New = Confirmed

** Changed in: cloud-init (Ubuntu)
   Importance: Undecided = Medium

** Also affects: cloud-init (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: cloud-init (Ubuntu Utopic)
   Importance: Medium
   Status: Confirmed

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

Title:
  disk-setup unable to partition disks

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1311463/+subscriptions

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


[Bug 995332] Re: Please enhance NetworkManager such that DNSSEC validation is done whenever possible

2014-08-22 Thread Renne
Dnsmasq supports validating DNSSEC since version 2.69, Bugs have been
fixed since version 2.71.

Please update Ubuntu packages to 2.71 and compile with DNSSEC support
(see http://www.thekelleys.org.uk/dnsmasq/CHANGELOG)!

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

Title:
  Please enhance NetworkManager such that DNSSEC validation is done
  whenever possible

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

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


[Bug 1264717] Re: the node can't get the user-data file from server..

2014-08-22 Thread Scott Moser
*** This bug is a duplicate of bug 1172742 ***
https://bugs.launchpad.net/bugs/1172742

Hi, i see two possible explanations for this:
a.) this is a bug in maas either in configuration or in maas proper.  
cloud-init only tries to get urls that maas told it to get.
b.) this is a dupe of bug 1172742.

I believe it to be 'b', which woudl indicate it is fixed in trusty.

a full cloud-init.log would also indicate if 'b'.

for now, i'm duping this to that. if you find otherwise, please un-dupe
or comment.


** This bug has been marked a duplicate of bug 1172742
   maas datasource fails if no user-data

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

Title:
  the node can't get the user-data file from server..

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1264717/+subscriptions

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


[Bug 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-22 Thread Launchpad Bug Tracker
This bug was fixed in the package heat - 2014.1.2-0ubuntu1

---
heat (2014.1.2-0ubuntu1) trusty; urgency=medium

  [ Corey Bryant ]
  * Resynchronize with stable/icehouse (6facf30) (LP: #1354159):
- [48ed483] Stop periodic watcher tasks before deleting stack
- [a855f5d] Sync threadgroup module from the oslo stable branch
- [bd4ed52] Move novaclient exceptions to heat.tests.v1_1.fakes
- [2db68e5] Pass the parent's registry into child stacks
- [57f8eaa] Fix String Parameter Receive a unicode
- [2aee296] Allow metadata updates to provider resources
- [a39ee7c] Do no re-validate parameters for existing stacks
- [aa7c030] Do not validate constraints in schema constructor
- [6facf30] Ensure routing key is specified in the address for a direct 
producer

  [ James Page ]
  * d/watch: Use tarballs.openstack.org for release artifacts.
 -- Corey Bryant corey.bry...@canonical.com   Fri, 08 Aug 2014 08:12:40 -0400

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

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

Title:
  [SRU] icehouse 2014.1.2 point release

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

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


[Bug 1359285] Re: bug #43027, ipmi-locate only works on ia64

2014-08-22 Thread Andres Rodriguez
** Also affects: freeipmi (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

Title:
  bug #43027, ipmi-locate only works on ia64

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

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


[Bug 1359285] Re: [SRU] bug #43027, ipmi-locate only works on ia64

2014-08-22 Thread Andres Rodriguez
** Summary changed:

- bug #43027, ipmi-locate only works on ia64
+ [SRU] bug #43027, ipmi-locate only works on ia64

** Description changed:

- USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems. 
+ [Impact]
+ ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
+ 
+ [Test Case]
+ 1. Install freeipmi tools in a UEFI enabled system
+ 2. ipmi-locate, it will fail
+ 3. Install freeipmi-tools with fix.
+ 4. ipmi-locate, it will succeed.
+ 
+ [Regression Potential]
+ Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
+ 
+ 
+ USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
- 
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
  1. Install freeipmi tools in a UEFI enabled system
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
- 
+ [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
- 1. Install freeipmi tools in a UEFI enabled system
+ 1. Install freeipmi tools in a UEFI enabled system (D380 Gen9)
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
  [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, it'll be in the next release.

** Description changed:

  [Impact]
  ipmi-locate only work on ia64, and it does not work on UEFI enabled systems. 
This causes ipmi-locate to not be able to discover attached BMC's, causing the 
Ubuntu Certification to Fail.
  
  [Test Case]
- 1. Install freeipmi tools in a UEFI enabled system (D380 Gen9)
+ 1. Install freeipmi tools in a UEFI enabled system (DL380 Gen9)
  2. ipmi-locate, it will fail
  3. Install freeipmi-tools with fix.
  4. ipmi-locate, it will succeed.
  
  [Regression Potential]
  Minimal, this only enables UEFI, and does nto affect ia64 architectures. This 
has been tested and systems will be re-tests (both UEFI/onon-UEFI) before it 
cane be successfully verified.
  
  [Original Description]
  USE_EFI is only defined in ipmi-locate if the ARCH is ia64. A distro (RHEL7 
for example) delivered version of freeipmi will need to run on UEFI and legacy 
systems.
  I've attached a patch that fixes this issue and another issue where the 
SMBIOS= line in /sys/firmware/efi/systab is terminated with a linefeed (0x0a) 
and not a NULL(ox00)
  
  patch link https://savannah.gnu.org/bugs/download.php?file_id=31919
  
  Tue 19 Aug 2014 08:52:19 PM UTC, comment #1:
  Thanks, 

[Bug 1312507] Re: rabbitmq-server fails to start on a IPv6-Only environment/epmd is not IPv6 enabled

2014-08-22 Thread Thiago Martins
Hey guys! Awesome job!

Problem fixed, packages: erlang-* 1:16.b.3-dfsg-1ubuntu2.1.

No more IPv4 at my OpenStack Controller Node, YAY! :-)

Have a nice weekend!

Thanks!

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  rabbitmq-server fails to start on a IPv6-Only environment/epmd is not
  IPv6 enabled

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

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


[Bug 1360471] [NEW] update walinuxagent to 2.0.7

2014-08-22 Thread Ben Howard
Public bug reported:

We have tagged a new release for WALinuxAgent (2.0.7):
https://github.com/Azure/WALinuxAgent/releases/tag/WALinuxAgent-2.0.7.
Ubuntu's walinuxagent package is currently based on 2.0.5, so there are
several fixes in 2.0.6 and 2.0.7 that are important to pick up.

Specifically, there are a number of fixes for extension handling,
provisioning and the new feature for adding a readme warning to the
resource disk. For 12.04, here are the relevant fixes to look at.

Fixes to extension handling
https://github.com/Azure/WALinuxAgent/commit/fd0aa07e0a08eaf285c4d4ce2b2aaf7698d3fd9d
https://github.com/Azure/WALinuxAgent/commit/f445aff063aa8aa59c1dca7e065e68f64904ae43
https://github.com/Azure/WALinuxAgent/commit/3f93680589116d28acdfdd594fe6942b52c139e4

Add README warning to resource disk
https://github.com/Azure/WALinuxAgent/commit/78f97d9885725d6ca5fc749d3f9708f496920e97#diff-d41d8cd98f00b204e9800998ecf8427e
https://github.com/Azure/WALinuxAgent/commit/2321b9cd92988843ebea4f031d99b09c0054ee13
https://github.com/Azure/WALinuxAgent/commit/f574932748ec66eccca74e643e369b61eab81bf8

Fixes for SSH server and host key handling (report host key to fabric)
https://github.com/Azure/WALinuxAgent/commit/62252f3f9162235aabc82f896efbab756935e141
https://github.com/Azure/WALinuxAgent/commit/71020f9913629bbe20fb76d424fb88e14a673dd3

Please let us know if you have questions/concerns about any of these
patches.

** Affects: walinuxagent (Ubuntu)
 Importance: Medium
 Assignee: Ben Howard (utlemming)
 Status: Confirmed

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

** Affects: walinuxagent (Ubuntu Utopic)
 Importance: Medium
 Assignee: Ben Howard (utlemming)
 Status: Confirmed

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

** Also affects: walinuxagent (Ubuntu Utopic)
   Importance: Medium
 Assignee: Ben Howard (utlemming)
   Status: Confirmed

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

Title:
  update walinuxagent to 2.0.7

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

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


[Bug 1332893] Re: systemd-logind[976]: cgmanager: cgm_remove failed: cpu:user/115.user did not exist

2014-08-22 Thread Launchpad Bug Tracker
[Expired for cgmanager (Ubuntu) because there has been no activity for
60 days.]

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

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

Title:
  systemd-logind[976]: cgmanager: cgm_remove failed: cpu:user/115.user
  did not exist

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

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


[Bug 1277466] Re: unprivileged containers fail to start with 1.0.0~beta4-0ubuntu1

2014-08-22 Thread ivank
I was seeing the Permission denied - failed to get real path for [...]
error on Ubuntu 14.04 with LXC 1.0.5-0ubuntu0.1 and linux-
image-3.13.0-32-generic, and after some fruitless debugging, figured out
I just needed to add +x permission on the container directory itself:

setfacl -m u:10:x ~/ ~/.local ~/.local/share ~/.local/share/lxc
~/.local/share/lxc/CONTAINER

(It lacked +x because my umask was 007 instead of 002.)

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

Title:
  unprivileged containers fail to start with 1.0.0~beta4-0ubuntu1

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

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