[Bug 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Ubuntu Foundations Team Bug Bot
The attachment 0001-stress-ng-support-sequential-range.patch seems to
be a patch.  If it isn't, please remove the patch flag from the
attachment, remove the patch tag, and if you are a member of the
~ubuntu-reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1471713] Re: package nginx-light 1.6.2-5ubuntu3 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2015-07-07 Thread Thomas Ward
This is not something we can fix, nor is it really a bug in the nginx
package.

When Apache is running, it's bound to port 80.  In order to run nginx's
default-installed configuration, you need to either stop or remove
Apache so that port 80 is not bound to, such that nginx can then bind to
it.  There's

** Changed in: nginx (Ubuntu)
   Status: New = Won't Fix

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

Title:
  package nginx-light 1.6.2-5ubuntu3 failed to install/upgrade: le sous-
  processus script post-installation installé a retourné une erreur de
  sortie d'état 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1471713/+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 1470687] Re: Not working properly with compile options -symbolic-functions

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package autofs - 5.1.1-1ubuntu2

---
autofs (5.1.1-1ubuntu2) wily; urgency=low

  * Add LDFLAGS to avoid issues with accessing global variables in
shared libraries (LP: #1470687, LP: #1472115).

 -- Stefan Bader stefan.ba...@canonical.com  Tue, 07 Jul 2015 16:28:53
+0200

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

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

Title:
  Not working properly with compile options -symbolic-functions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1470687/+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 1402042] Re: console= parameters need to be added before -- on kernel cmdline

2015-07-07 Thread Scott Moser
** Description changed:

+ === Begin SRU Information ===
+ [Description]
+ In kernel version 3.15, the linux kernel began ignoring command line options 
that come after a '--' on the kernel command line.
+ 
  Kernel documentation at 
https://www.kernel.org/doc/Documentation/kernel-parameters.txt says:
-  |  The kernel parses parameters from the kernel command line up to --;
-  |  if it doesn't recognize a parameter and it doesn't contain a '.', the
-  |  parameter gets passed to init: parameters with '=' go into init's
-  |  environment, others are passed as command line arguments to init.
-  |  Everything after -- is passed as an argument to init.
+  | The kernel parses parameters from the kernel command line up to --;
+  | if it doesn't recognize a parameter and it doesn't contain a '.', the
+  | parameter gets passed to init: parameters with '=' go into init's
+  | environment, others are passed as command line arguments to init.
+  | Everything after -- is passed as an argument to init.
+ 
+ This change of behavior collided with Ubuntu installer's usage (both d-i
+ and curtin).  The installers would copy arguments after '--' to the
+ installed system.
+ 
+ For example, booting an installer with:
+  kernelarg1 arg2 arg3=bar -- console=ttyS1,115200
+ would result in the installed system having 'console=ttyS1,115200' on the 
command line.
+ 
+ The problem is then that if you're booting a kernel  3.15 for your
+ installer (which is the case for trusty-hwe-u or utopic onward) the
+ 'console=' flag will not be paid attention to in the install
+ environment.
+ 
+ The solution used by d-i was to modify its token to be '---' or '--'.
+ This solution has been implmented in curtin also.
+ 
+ MAAS has used '--' in the past, but will now need to use '---'.
+ However, maas can't simply use '---' as that would result in un-patched
+ installers not copying the parameters over to the installed system.  The
+ install environment would get them, but not the installed environment.
+ 
+ [Impact]
+ The impact is that when booting an installer with a command line like:
+  kernelarg1 arg2 arg3=bar -- console=ttyS1,115200
+ 
+ the output does not go to the console.  Other kernel command line
+ parameters are also ignored, console= is just the most immediately
+ obvious.
+ 
+ [Regression Potential]
+ The fix in curtin and in d-i honor both '--' or '---', so chance of 
regression is low.
+ 
+ The fix in MAAS is relatively ignorant as it does not make its decision
+ to use '---' or '--' based on what it is installing.  The decision would
+ be hard to make as it would require knowing the version of debian-
+ installer-utils was to be used.
+ 
+ With the change in place in MAAS, the failure case would show itself as
+ arguments not being copied to the installed system.
+ 
+ [Other Info]
+ To do this properly, we really need to hold the change in MAAS until all 
expected installers have the fix.
+ 
+ Since MAAS uses curtin as the default installer in current trunk and 1.8 
branches, we've made curtin expose the information of which token to use to 
MAAS.  That does mean that d-i would broken until all SRUs are done.
+ === End SRU Information ===
+ 
+ === Original Bug Report ===
+ Kernel documentation at 
https://www.kernel.org/doc/Documentation/kernel-parameters.txt says:
+  |  The kernel parses parameters from the kernel command line up to --;
+  |  if it doesn't recognize a parameter and it doesn't contain a '.', the
+  |  parameter gets passed to init: parameters with '=' go into init's
+  |  environment, others are passed as command line arguments to init.
+  |  Everything after -- is passed as an argument to init.
  
  In my experience that was never true, and I can reproduce the kernel paying
  attention to a command line like:
-   -- root=LABEL=cloudimg-rootfs ro console=ttyS0
+   -- root=LABEL=cloudimg-rootfs ro console=ttyS0
  
  and the system booting fine, and with data ton ttyS0 on a 3.13 (trusty)
  kernel.
  
  The fun begins a 3.16 (utopic/hwe-u) where the kernel documentation
  quoted above seems to be valid.
  
  Currently maas is takes global command line parameters (as set via 'maas
  admin set-config name=kernel_opts value=console=ttyS0') and places
  them after a '--' in during commissioning and curtin install (and i
  believe d-i install).
  
  The end result is that setting console=ttyS0 as kernel parameters does
  not work with 3.16 in the commissioning and install environment.
  
  Curtin (in following with convention I believe to be true in 'd-i' )
  will copy parameters after a '--' to the installed system.  So, the
  installed system works fine, but the install and commissioning is
  'blind'.
  
  There are 2 solutions here:
-  a.) put kernel flags twice (both before and after a '--')
- this could in the future make systemd unhappy as those would then turn 
into flags to systemd.
-  b.) put kernel flags only before and find another way to pass to curtin or 
d-i
+  a.) put kernel flags twice (both 

[Bug 1447834] Re: curtin doesn't support arm64-efi targets

2015-07-07 Thread dann frazier
** 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 curtin in Ubuntu.
https://bugs.launchpad.net/bugs/1447834

Title:
  curtin doesn't support arm64-efi targets

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1447834/+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 1470687] Re: Not working properly with compile options -symbolic-functions

2015-07-07 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/autofs

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

Title:
  Not working properly with compile options -symbolic-functions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1470687/+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 1472318] [NEW] iscsitarget-dkms 1.4.20.3+svn499-1ubuntu1: iscsitarget kernel module failed to build Edit

2015-07-07 Thread Paul Ramon
Public bug reported:

make KERNELRELEASE=3.16.0-42-generic -C /lib/modules/3.16.0-43generic
(x86_64)

bad exit status 2

Make Log File : -

DKMS make.log for iscsitarget-1.4.20.3+svn499 for kernel 3.16.0-43-generic 
(x86_64)
Tue Jul  7 16:36:45 BST 2015
make: Entering directory `/usr/src/linux-headers-3.16.0-43-generic'
  LD  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/built-in.o
  LD  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/built-in.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/tio.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/iscsi.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.o
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c: In function 
‘close_conn’:
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c:669:32: 
warning: assignment from incompatible pointer type [enabled by default]
  conn-sock-sk-sk_data_ready = target-nthread_info.old_data_ready;
^
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c: In function 
‘do_recv’:
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c:147:1: 
warning: the frame size of 1096 bytes is larger than 1024 bytes 
[-Wframe-larger-than=]
 }
 ^
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/wthread.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/config.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/digest.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/conn.o
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/conn.c: In function 
‘iet_socket_bind’:
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/conn.c:137:38: warning: 
assignment from incompatible pointer type [enabled by default]
  target-nthread_info.old_data_ready = conn-sock-sk-sk_data_ready;
  ^
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/conn.c:138:32: warning: 
assignment from incompatible pointer type [enabled by default]
  conn-sock-sk-sk_data_ready = iet_data_ready;
^
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/session.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/target.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/volume.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/iotype.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/file-io.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/null-io.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/target_disk.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/event.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/param.o
  CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/block-io.o
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/block-io.c: In function 
‘blockio_make_request’:
/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/block-io.c:90:6: error: 
‘struct bio’ has no member named ‘bi_sector’
   bio-bi_sector = ppos  9;
  ^
make[2]: *** 
[/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/block-io.o] Error 1
make[1]: *** [/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel] Error 2
make: *** [_module_/var/lib/dkms/iscsitarget/1.4.20.3+svn499/build] Error 2
make: Leaving directory `/usr/src/linux-headers-3.16.0-43-generic'

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

** Description changed:

  make KERNELRELEASE=3.16.0-42-generic -C /lib/modules/3.16.0-43generic
  (x86_64)
  
  bad exit status 2
  
- Unable to load iscsi_trgt module
+ Make Log File : -
+ 
+ DKMS make.log for iscsitarget-1.4.20.3+svn499 for kernel 3.16.0-43-generic 
(x86_64)
+ Tue Jul  7 16:36:45 BST 2015
+ make: Entering directory `/usr/src/linux-headers-3.16.0-43-generic'
+   LD  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/built-in.o
+   LD  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/built-in.o
+   CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/tio.o
+   CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/iscsi.o
+   CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.o
+ /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c: In function 
‘close_conn’:
+ /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c:669:32: 
warning: assignment from incompatible pointer type [enabled by default]
+   conn-sock-sk-sk_data_ready = target-nthread_info.old_data_ready;
+ ^
+ /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c: In function 
‘do_recv’:
+ /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/nthread.c:147:1: 
warning: the frame size of 1096 bytes is larger than 1024 bytes 
[-Wframe-larger-than=]
+  }
+  ^
+   CC [M]  /var/lib/dkms/iscsitarget/1.4.20.3+svn499/build/kernel/wthread.o

[Bug 1402042] Re: console= parameters need to be added before -- on kernel cmdline

2015-07-07 Thread Launchpad Bug Tracker
** Branch linked: lp:~smoser/maas/lp1402042

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

Title:
  console= parameters need to be added before -- on kernel cmdline

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1402042/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Andrew Cloke
** Also affects: irqbalance (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1458042] Re: [SRU] xgene-enet: add SGMII based 1GbE support for the second port

2015-07-07 Thread Ike Panhc
** No longer affects: irqbalance (Ubuntu)

** No longer affects: irqbalance (Ubuntu Wily)

** No longer affects: irqbalance (Ubuntu Vivid)

** No longer affects: irqbalance (Ubuntu Utopic)

** No longer affects: irqbalance (Ubuntu Trusty)

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

Title:
  [SRU] xgene-enet: add SGMII based 1GbE support for the second port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1458042/+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 1472142] [NEW] /var/cache/lxc not world readable

2015-07-07 Thread Stuart Bishop
Public bug reported:

I am interested in priming the lxc cache on new hosts, but this is
problematic because /var/cache/lxc is not world readable.

Could it become world readable?

This bug should be WONTFIX if the cache can contain secrets or 'private'
images. But ideally these would be declared private and protected at the
next level down.

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

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

Title:
  /var/cache/lxc not world readable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1472142/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
#0  0x7fab78969e10 in conf_lookup_key ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#1  0x7fab78969ece in conf_lookup ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#2  0x7fab7896b246 in conf_get_yesno ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#3  0x7fab7896bc95 in defaults_get_browse_mode ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#4  0x7fab78963660 in local_init_vars ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#5  0x7fab78963a43 in master_parse_entry ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#6  0x7fab7895b7b5 in lookup_read_master ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#7  0x7fab7bfb6371 in do_read_master ()
#8  0x7fab7bfb6861 in lookup_nss_read_master ()
#9  0x7fab780afa63 in include_file ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_dir.so
#10 0x7fab780afc92 in lookup_read_master ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_dir.so
#11 0x7fab7bfb6371 in do_read_master ()
#12 0x7fab7bfb6b99 in lookup_nss_read_master ()
#13 0x7fab7895b61e in lookup_read_master ()
   from /usr/lib/x86_64-linux-gnu/autofs/lookup_file.so
#14 0x7fab7bfb6371 in do_read_master ()
#15 0x7fab7bfb6861 in lookup_nss_read_master ()
#16 0x7fab7bfcf797 in master_read_master ()
#17 0x7fab7bfaa579 in main ()

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1458042] Re: [SRU] xgene-enet: add SGMII based 1GbE support for the second port

2015-07-07 Thread Ike Panhc
** Also affects: irqbalance (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  [SRU] xgene-enet: add SGMII based 1GbE support for the second port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1458042/+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 1472115] [NEW] autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
Public bug reported:

Wily server 64bit installation, after dist-upgrade, restart of
autofs.service fails and dmesg shows those errors:

[ 1030.673473] automount[3276]: segfault at 0 ip 7f738cb881bb sp
7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: autofs 5.1.1-1ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-22.22-generic 3.19.8-ckt1
Uname: Linux 3.19.0-22-generic x86_64
ApportVersion: 2.17.3-0ubuntu4
Architecture: amd64
Date: Tue Jul  7 07:11:13 2015
SourcePackage: autofs
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug wily

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
Segfault persists after reboot into latest kernel: Ubuntu
4.0.0-4.6-generic 4.0.7.

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
/etc/autofs.conf:
master_map_name = /etc/auto.master

/etc/auto.master:
+dir:/etc/auto.master.d
+auto.master

/etc/auto.master.d/import.autofs:
/import file:/etc/auto.import

/etc/auto.import:
isos-ro,soft,intr,nfsvers=3 nano:/srv/images/iso
cloud-images-ro,soft,intr,nfsvers=3 nano:/srv/images/cloudimg
tests   -rw,soft,intr,nfsvers=3 nano:/home/tests

The /import directory exists.

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1472129] [NEW] irqbalance triggers Upstart bug when started with --policyscript

2015-07-07 Thread Tore Anderson
Public bug reported:

If irqbalance is started with the --policyscript option, Upstart is
unable to manage it properly (bug #406397 is being triggered), and
stopping/restarting it fails. Noticed this when the
1.0.6-2ubuntu0.14.04.2 update hit Trusty yesterday. See below:

$ /sbin/stop irqbalance
irqbalance stop/waiting
$ echo 'OPTIONS=--policyscript=/bin/true'  /etc/default/irqbalance
$ /sbin/start irqbalance
irqbalance start/running, process 23862
$ /sbin/status irqbalance
irqbalance start/running, process 23862
$ pgrep -a irqbalance
23859 /usr/sbin/irqbalance --policyscript=/bin/true
23871 /usr/sbin/irqbalance --policyscript=/bin/true
[note how the PIDs don't match what Upstart believes them to be]
$ /sbin/stop irqbalance
[hangs]
^C
$ /sbin/status irqbalance
irqbalance stop/killed, process 23862
$ pgrep -a irqbalance
23859 /usr/sbin/irqbalance --policyscript=/bin/true
23871 /usr/sbin/irqbalance --policyscript=/bin/true
$ /sbin/start irqbalance
[hangs]

I successfully recovered from this situation by running the hack at
https://raw.githubusercontent.com/ion1/workaround-upstart-snafu/master
/workaround-upstart-snafu on all the servers that had attempted to
upgraded the irqbalance package.

One easy way to fix this issue is to remove expect fork and instead
start irqbalance with the --foreground option. Patch attached.

On a related note, I see that the irqbalance package ships both a SysV
init script in /etc/init.d/irqbalance as well as an Upstart job
definition. That's rather confusing to a sysadmin, and could possibly
lead to collisions? As I understand it, the SysV init script for an
Upstart-managed service is supposed be replaced by a symlink to
/lib/init/upstart-job. Maybe you'll want to look into that as well.

Tore

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

** Patch added: Patch (apply to /etc/init/irqbalance.conf)
   
https://bugs.launchpad.net/bugs/1472129/+attachment/4425604/+files/irqbalance.conf.patch

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

Title:
  irqbalance triggers Upstart bug when started with --policyscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1472129/+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 1472129] Re: irqbalance triggers Upstart bug when started with --policyscript

2015-07-07 Thread Ubuntu Foundations Team Bug Bot
The attachment Patch (apply to /etc/init/irqbalance.conf) seems to be
a patch.  If it isn't, please remove the patch flag from the
attachment, remove the patch tag, and if you are a member of the
~ubuntu-reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

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

Title:
  irqbalance triggers Upstart bug when started with --policyscript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1472129/+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 1472162] [NEW] package autofs 5.1.1-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-07-07 Thread Andy Whitcroft
*** This bug is a duplicate of bug 1472115 ***
https://bugs.launchpad.net/bugs/1472115

Public bug reported:

When upgrading autofs4 I get a package install failure from the
following:

[50044.886916] automount[4815]: segfault at 0 ip 7f89dbbac1bb sp
7ffc8f84a1a0 error 4 in lookup_file.so[7f89dbb9a000+2b000]

ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: autofs 5.1.1-1ubuntu1
ProcVersionSignature: Ubuntu 3.19.0-20.20-generic 3.19.8
Uname: Linux 3.19.0-20-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.17.3-0ubuntu4
AptOrdering:
 autofs: Install
 autofs: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Tue Jul  7 09:39:20 2015
DuplicateSignature: package:autofs:5.1.1-1ubuntu1:subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2013-06-20 (746 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130618)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.10ubuntu1
SourcePackage: autofs
Title: package autofs 5.1.1-1ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to wily on 2013-11-10 (603 days ago)

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


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

** This bug has been marked a duplicate of bug 1472115
   autofs start fails: segfault at 0 ip 7f738cb881bb sp 7ffeff888f70 
error 4 in lookup_file.so[7f738cb76000+2b000]

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

Title:
  package autofs 5.1.1-1ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472162/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 406397] Re: init: job stuck with expect fork/daemon when parent reaps child

2015-07-07 Thread Tore Anderson
** Also affects: irqbalance (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  init: job stuck with expect fork/daemon when parent reaps child

To manage notifications about this bug go to:
https://bugs.launchpad.net/upstart/+bug/406397/+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 1455482] Re: Multipath: upgrade multipath-tools to upstream

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package multipath-tools - 0.5.0-7ubuntu1

---
multipath-tools (0.5.0-7ubuntu1) wily; urgency=medium

  * Merge from debian unstable, remaining changes: (LP: #1455482)
- control:
  * Bump debhelper dependency to install udev rules to
/lib/udev/rules.d, bump udev dependencies as well.
- initramfs/hooks: use 95 not 60 for multipath rules priority
- multipath-tools-boot.init: remove in favor of kpartx.udev rules (at top)
- multipath-tools.preinst: modprobe dm-multipath.
  This will make sure that multipathd will be able to start.
- patches/1000--set-umask-in-multipathd.patch: Set umask in multipathd.
- rules: Move udev rules to priority 95, because rules that load
  modules should be 90.
- debian/initramfs/local-top: wait for udev to settle before running
  'multipath' in order to avoid race condition on device-mapper calls.
- debian/initramfs/local-top: remove '--timeout 10' which causes my
  test system to not boot roughly 3 out of 4 times.
- Split kpartx initramfs bits into kpartx-boot for dmraid (LP: #941874)
- Added debian/patches/0015-shared-lock-for-udev.patch (LP: #1431650)
  * debian/patches/0015-libmultipath-property-whitelist-SCSI_IDENT.patch: add
SCSI_IDENT_* properties to blacklist exceptions, so that we can have QEMU
multipathed devices as well as others (IBM IPR) detected properly as
multipathed devices.
  * debian/patches/handle_spaces_in_rev_attr.patch: support IBM IPR devices
and others which may have only spaces for the rev attribute.
  * debian/patches/path_selector.patch: switch the default path selector
back to round-robin while service-time isn't available to the installer
multipath-modules.
  * debian/control: add sg3-udeb to multipath-udeb Depends.

 -- Mathieu Trudel-Lapierre mathieu...@ubuntu.com  Mon, 06 Jul 2015
13:15:22 -0400

** Changed in: multipath-tools (Ubuntu)
   Status: In Progress = Fix Released

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

Title:
  Multipath: upgrade multipath-tools to upstream

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1455482/+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 1459046] Re: [SRU] nova-* services do not start if rsyslog is not yet started

2015-07-07 Thread Edward Hope-Morley
** Patch added: utopic-juno.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1459046/+attachment/4425933/+files/utopic-juno.debdiff

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

Title:
  [SRU] nova-* services do not start if rsyslog is not yet started

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1459046/+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 1459046] Re: nova-* services do not start if rsyslog is not yet started

2015-07-07 Thread Edward Hope-Morley
** Patch added: trusty-icehouse.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1459046/+attachment/4425932/+files/trusty-icehouse.debdiff

** Summary changed:

- nova-* services do not start if rsyslog is not yet started
+ [SRU] nova-* services do not start if rsyslog is not yet started

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

Title:
  [SRU] nova-* services do not start if rsyslog is not yet started

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1459046/+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 1472369] [NEW] lxcbr0 missing after starting lxc-net.service

2015-07-07 Thread Ryan Harper
Public bug reported:

1. % lsb_release -rd 
Description:Ubuntu Wily Werewolf (development branch)
Release:15.10

2. % apt-cache policy lxc
lxc:
  Installed: 1.1.2-0ubuntu3
  Candidate: 1.1.2-0ubuntu3
  Version table:
 *** 1.1.2-0ubuntu3 0
500 http://us.archive.ubuntu.com/ubuntu/ wily/main amd64 Packages
100 /var/lib/dpkg/status

3.  sudo systemctl restart lxc-net.service should bring up lxcbr0 bridge
device

4. lxcbr0 device is not present after starting/restarting lxc-
net.service

(kriek) ~ % sudo systemctl restart lxc-net.service
(kriek) ~ % sudo systemctl status -l lxc-net.service
● lxc-net.service - LXC network bridge setup
   Loaded: loaded (/lib/systemd/system/lxc-net.service; enabled; vendor preset: 
enabled)
   Active: active (exited) since Tue 2015-07-07 13:33:15 CDT; 3s ago
  Process: 1764 ExecStop=/usr/lib/x86_64-linux-gnu/lxc/lxc-net stop 
(code=exited, status=0/SUCCESS)
  Process: 1769 ExecStart=/usr/lib/x86_64-linux-gnu/lxc/lxc-net start 
(code=exited, status=0/SUCCESS)
 Main PID: 1769 (code=exited, status=0/SUCCESS)

Jul 07 13:33:15 kriek systemd[1]: Starting LXC network bridge setup...
Jul 07 13:33:15 kriek lxc-net[1769]: dnsmasq: cannot read /etc/dnsmasq.conf: No 
such file or directory
Jul 07 13:33:15 kriek systemd[1]: Started LXC network bridge setup.
(kriek) ~ % brctl show
bridge name bridge id   STP enabled interfaces
virbr0  8000.5254005821b0   yes virbr0-nic
(kriek) ~ % ifconfig lxcbr0
lxcbr0: error fetching interface information: Device not found

My wily system does not have a dnsmasq.conf  and without one which includes the 
conf-dir = /etc/dnsmasq.d
directive, then lxc-net does not come up.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: lxc 1.1.2-0ubuntu3
ProcVersionSignature: Ubuntu 4.0.0-4.6-generic 4.0.7
Uname: Linux 4.0.0-4-generic x86_64
ApportVersion: 2.17.3-0ubuntu4
Architecture: amd64
Date: Tue Jul  7 13:35:41 2015
InstallationDate: Installed on 2015-05-10 (57 days ago)
InstallationMedia: Ubuntu-Server 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.3)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: lxc
UpgradeStatus: No upgrade log present (probably fresh install)
defaults.conf:
 lxc.network.type = veth
 lxc.network.link = lxcbr0
 lxc.network.flags = up
 lxc.network.hwaddr = 00:16:3e:xx:xx:xx

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


** Tags: amd64 apport-bug wily

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

Title:
  lxcbr0 missing after starting lxc-net.service

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1472369/+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 1470687] Re: Not working properly with compile options -symbolic-functions

2015-07-07 Thread Chris J Arges
Sponsored for T/U/V.

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

Title:
  Not working properly with compile options -symbolic-functions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1470687/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package autofs - 5.1.1-1ubuntu2

---
autofs (5.1.1-1ubuntu2) wily; urgency=low

  * Add LDFLAGS to avoid issues with accessing global variables in
shared libraries (LP: #1470687, LP: #1472115).

 -- Stefan Bader stefan.ba...@canonical.com  Tue, 07 Jul 2015 16:28:53
+0200

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

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1471561] Re: Typo in python-oslo packages: transtional

2015-07-07 Thread James Page
Urgh - a copy/paste error if I've ever seen one :)

Will get this commited in Debian and will sync over with the next round
of updates.

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

Title:
  Typo in python-oslo packages: transtional

To manage notifications about this bug go to:
https://bugs.launchpad.net/ddtp-ubuntu/+bug/1471561/+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 1466978] Update Released

2015-07-07 Thread Chris J Arges
The verification of the Stable Release Update for openvswitch has
completed successfully and the package has now been released to
-updates.  Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  Openstack + ovs 1.4.6-0ubuntu1.12.04.4 + kernel 3.2.0-70 and newer
  crash on first gre traffic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1466978/+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 1466978] Re: Openstack + ovs 1.4.6-0ubuntu1.12.04.4 + kernel 3.2.0-70 and newer crash on first gre traffic

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package openvswitch - 1.4.6-0ubuntu1.12.04.5

---
openvswitch (1.4.6-0ubuntu1.12.04.5) precise; urgency=medium

  * Openstack + ovs 1.4.6-0ubuntu1.12.04.4 + kernels 3.2.0-70 and newer crash
on first gre traffic. (LP: #1466978)

 -- Dave Chiluk chi...@canonical.com  Fri, 19 Jun 2015 16:22:09 -0500

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

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

Title:
  Openstack + ovs 1.4.6-0ubuntu1.12.04.4 + kernel 3.2.0-70 and newer
  crash on first gre traffic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1466978/+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 1454725] Re: openvpn fails after upgrade from 14.10 to 15.04

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  openvpn fails after upgrade from 14.10 to 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/1454725/+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 1472407] [NEW] Segmentation fault uploading a csv using ZF1.12.1

2015-07-07 Thread armandfp
Public bug reported:

Hello, I have a problem with an app, is a form to upload a csv file
using fopen and fgetcsv, but looks like the error is before this two
functions, is when the code is on
Zend_File_Transfer_Adapter_HttpisValid().

I have the same app on a server with 12.04 with no problem. I read similar 
problems and solutions like:
set opcache.enable_cli=0
increase output_buffering
set export USE_ZEND_ALLOC=0
set export ZEND_MM_SEG_SIZE=255k
didnt work, some more info:
xdebug is installed and disabled
apc is not installed
opcache is disabled

php:
PHP 5.5.9-1ubuntu4.11 (cli) (built: Jul  2 2015 15:23:08)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies

apache:
2.4.7-1ubuntu4.4
Server version: Apache/2.4.7 (Ubuntu)
Server built:   Mar 10 2015 13:05:59

ubuntu:
Description:Ubuntu 14.04.1 LTS
Release:14.04

bt:
#0  zend_mm_remove_from_free_list (heap=0x7f519cb4fb80, 
mm_block=0x7f518c44b118) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_alloc.c:837
#1  0x7f5194614c4c in _zend_mm_free_int (heap=0x7f519cb4fb80, 
p=0x7f518c44b128) at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_alloc.c:2105
#2  0x7f5194428a03 in apprentice_unmap (map=0x7f518c8d0248) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/ext/fileinfo/libmagic/apprentice.c:499
#3  0x7f5194428a75 in mlist_free (mlist=0x7f519ced7540) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/ext/fileinfo/libmagic/apprentice.c:530
#4  0x7f5194429861 in file_ms_free (ms=0x7f519cee8bf0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/ext/fileinfo/libmagic/apprentice.c:444
#5  0x7f519443203a in magic_close (ms=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/ext/fileinfo/libmagic/magic.c:256
#6  0x7f5194427b75 in finfo_resource_destructor (rsrc=0x7f519cee6bd0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/ext/fileinfo/fileinfo.c:194
#7  0x7f519464bcc0 in list_entry_destructor (ptr=0x7f519cee6bd0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_list.c:183
#8  0x7f5194649b01 in zend_hash_del_key_or_index 
(ht=ht@entry=0x7f5194e007b0 executor_globals+624, arKey=arKey@entry=0x0,
nKeyLength=nKeyLength@entry=0, h=h@entry=193, flag=flag@entry=1) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_hash.c:532
#9  0x7f519464bea1 in _zend_list_delete (id=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_list.c:57
#10 0x7f519462c150 in _zval_dtor (zvalue=0x7f519ce64eb8) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_variables.h:35
#11 i_zval_ptr_dtor (zval_ptr=0x7f519ce64eb8) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute.h:81
#12 _zval_ptr_dtor (zval_ptr=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute_API.c:426
#13 0x7f519465e207 in zend_object_std_dtor (object=0x7f519ce669f0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects.c:54
#14 0x7f519465e239 in zend_objects_free_object_storage 
(object=0x7f519ce669f0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects.c:137
#15 0x7f51946640cc in zend_objects_store_del_ref_by_handle_ex (handle=296, 
handlers=optimized out)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects_API.c:226
#16 0x7f51946640f3 in zend_objects_store_del_ref (zobject=0x7f519ce669c0) 
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects_API.c:178
#17 0x7f519462c150 in _zval_dtor (zvalue=0x7f519ce669c0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_variables.h:35
#18 i_zval_ptr_dtor (zval_ptr=0x7f519ce669c0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute.h:81
#19 _zval_ptr_dtor (zval_ptr=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute_API.c:426
#20 0x7f5194649c08 in zend_hash_destroy (ht=0x7f518c6dd3e0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_hash.c:560
#21 0x7f519463b07b in _zval_dtor_func (zvalue=0x7f518c95eb00) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_variables.c:45
#22 0x7f519462c150 in _zval_dtor (zvalue=0x7f518c95eb00) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_variables.h:35
#23 i_zval_ptr_dtor (zval_ptr=0x7f518c95eb00) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute.h:81
#24 _zval_ptr_dtor (zval_ptr=optimized out) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute_API.c:426
#25 0x7f519465e207 in zend_object_std_dtor (object=0x7f518c9faad0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects.c:54
#26 0x7f519465e239 in zend_objects_free_object_storage 
(object=0x7f518c9faad0) at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects.c:137
#27 0x7f5194663c37 in zend_objects_store_free_object_storage 
(objects=objects@entry=0x7f5194e008e0 executor_globals+928)
at /build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_objects_API.c:97
#28 0x7f519462c863 in shutdown_executor () at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend_execute_API.c:293
#29 0x7f519463c032 in zend_deactivate () at 
/build/php5-RpYHCf/php5-5.5.9+dfsg/Zend/zend.c:935
#30 0x7f51945dc3ad in php_request_shutdown 

[Bug 1472369] Re: lxcbr0 missing after starting lxc-net.service

2015-07-07 Thread Serge Hallyn
*** This bug is a duplicate of bug 1468611 ***
https://bugs.launchpad.net/bugs/1468611

** This bug has been marked a duplicate of bug 1468611
   dnsmasq fails to start in lxc-net

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

Title:
  lxcbr0 missing after starting lxc-net.service

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1472369/+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 1472389] [NEW] package mysql-server-5.5 5.5.43-0ubuntu0.14.04.1 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2015-07-07 Thread noismemo
Public bug reported:

Hi,
Please help with this problem.

Thx

Noismemo

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: mysql-server-5.5 5.5.43-0ubuntu0.14.04.1
ProcVersionSignature: Ubuntu 3.13.0-53.89-generic 3.13.11-ckt19
Uname: Linux 3.13.0-53-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
AptOrdering:
 mysql-server-5.5: Configure
 mysql-server: Configure
 mythtv: Configure
Architecture: amd64
Date: Sun Jul  5 14:19:55 2015
DpkgHistoryLog:
 Start-Date: 2015-07-05  14:19:49
 Commandline: apt-get install -f
DuplicateSignature: 
package:mysql-server-5.5:5.5.43-0ubuntu0.14.04.1:sub-processo script 
post-installation instalado retornou estado de saída de erro 1
ErrorMessage: sub-processo script post-installation instalado retornou estado 
de saída de erro 1
InstallationDate: Installed on 2014-05-06 (427 days ago)
InstallationMedia: Lubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140416.2)
Logs.var.log.daemon.log:
 
MySQLConf.etc.mysql.conf.d..keepme: 
MySQLConf.etc.mysql.conf.d.mysqld.safe.syslog.cnf:
 [mysqld_safe]
 syslog
MySQLConf.etc.mysql.conf.d.mythtv.cnf:
 [mysqld]
 #bind-address=0.0.0.0
 max_connections=100
MySQLVarLibDirListing: ['debian-5.5.flag', 'mysql', 'ibdata1', 
'performance_schema']
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.13.0-53-generic 
root=UUID=ac7b293f-0e52-4e66-b509-751d3e71df35 ro locale=pt_BR quiet splash 
vt.handoff=7
SourcePackage: mysql-5.5
SystemImageInfo: Error: [Errno 2] Arquivo ou diretório não encontrado: 
'system-image-cli'
Title: package mysql-server-5.5 5.5.43-0ubuntu0.14.04.1 failed to 
install/upgrade: sub-processo script post-installation instalado retornou 
estado de saída de erro 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package 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/1472389

Title:
  package mysql-server-5.5 5.5.43-0ubuntu0.14.04.1 failed to
  install/upgrade: sub-processo script post-installation instalado
  retornou estado de saída de erro 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.5/+bug/1472389/+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 1470687] Re: Not working properly with compile options -symbolic-functions

2015-07-07 Thread Chris J Arges
Well bug 1472115 was caused by the wily 5.1.1-1ubuntu1 upload. Dropping
-Bsymbolic-functions from LDFLAGS fixes the issues.

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

Title:
  Not working properly with compile options -symbolic-functions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1470687/+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 1470580] Re: unprivileged lxc containers fails with custom bridge

2015-07-07 Thread Serge Hallyn
Quoting god (1470...@bugs.launchpad.net):
 Thanks for clarification! Would be kinda helpful if lxc-start could
 print actual numbers (X quota configured for bridge123, Y is in use).

Agreed, this would be a huge improvement.  Would you like to re-title
this bug to turn it into a feature request for that?  An 'issue' on the
github tracker at github.com/lxc/lxc may be more likely to yield fruit.

If you're able to submit your own patch that would be even better.

 What's the upper limit on those quota numbers? Can I have 100 bridges
 with 400 interfaces in each?

The limits would be the practical ones, for instance if you are using
a /24 you can only have 254 addresses on the bridge.

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

Title:
  unprivileged lxc containers fails with custom bridge

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1470580/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/autofs

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1015154] Re: virt-aa-helper refuses to create unix socket for a serial port

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.16-2ubuntu2

---
libvirt (1.2.16-2ubuntu2) wily; urgency=low

  [ Chris J Arges ]
  * Merge from Debian unstable.  Remaining changes:
- debian/apparmor/{libvirt-lxc,libvirt-qemu,local-usr.sbin.libvirtd,
  TEMPLATE.lxc,TEMPLATE.qemu,usr.lib.libvirt.virt-aa-helper,
  usr.sbin.libvirtd} Add apparmor profiles.
- debian/bug-presubj: removed
- debian/control:
  - add cdbs, dh-autoreconf, libcurl4-gnutls-dev
  - add libxml-libxml-perl, libhal-dev
  - swap open-iscsi to open-iscsi-utils
  - Enable numa support on ppc64 and ppc64el.
  - remove libsanlock-dev, libselinux1-dev, libsystemd-daemon-dev
  - remove systemtap-sdt-dev, python, sheepdog, librados-dev, libfuse-dev
  - remove libssh2-1, augeas-tools
  - add libcgmanager-dev, xsltproc
  - remove Vcs-Git
  - adjust X-Python-Version  2.7
  - don't build libvirt-clients, libvirt-daemon, libvirt-sanlock packages
* keep debian/{libvirt-bin.apport,libvirt-bin.cron.daily}
* debian/libvirt-daemon.* has been mostly renamed to debian/libvirt-bin.*
* add upstart script for libvirt-bin
* debian/*.links files not added
* debian/libvirt-sanlock* not merged
* debian/libvirt-clients* not merged
* debian smoke tests not merged
* keep debian/{libvirt-migrate-qemu-disks.*,
  libvirt-migrate-qemu-machinetype.*,
  libvirt-migrate-xend-managed-domains.*}
* keep debian/libvirt-suspendonreboot
* keep debian/libvirt-uri.sh
* Don't apply the following patches:
  - d/p/Debianize-libvirt-guests.patch
  - d/p/Debianize-systemd-service-files.patch
  - d/p/debian/Debianize-virtlockd.patch
  - d/p/fix-Debian-specific-path-to-hvm-loader.patch
  - d/p/Disable-gnulib-s-test-nonplocking-pipe.sh.patch
  - d/p/patch-qemuMonitorTextGetMigrationStatus-to-intercept.patch
* debian/polkit/* not added
* debian/README.Debian:
  - add 'Apparmor Profile' section
  - add 'Disk migration' section
* debian/rules:
  - add cdbs and autoconf stuff
  - don't build WITH_SANLOCK, WITH_INIT_SCRIPT, WITH_SYSTEMD, WITH_FIREWALLD
WITH_SELINUX
  - use qemu-group kvm instead of libvirt-qemu
  - set DEB_DH_INSTALLINIT_ARGS to '--upstart-only'
  - remove auto_test section
  - add build/libvirt-bin:: section to install
- apparmor files
- apport hooks
- libvirt-migrate-qemu-disks
  - use clean:: instead of dh_*clean

  [ Chuck Short ]
+ Rediffed:
 - debian/patches/storage-default-permission-mode-to-0711
 - debian/patches/ubuntu_machine_type.patch
  * debian/libvirt-bin.init: Adjust avahi to avahi-daemon (LP: #1453572)

  [ Serge Hallyn ]
  * 9040-virt-aa-helper-add-unix-channels.patch: add support for unix
sockets for serials.  (LP: #1015154)

 -- Chris J Arges chris.j.ar...@canonical.com  Wed, 01 Jul 2015
13:33:40 -0500

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

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

Title:
  virt-aa-helper refuses to create unix socket for a serial port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1015154/+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 1453572] Re: libvirt-bin's sysv init script references avahi, which no longer exists

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.16-2ubuntu2

---
libvirt (1.2.16-2ubuntu2) wily; urgency=low

  [ Chris J Arges ]
  * Merge from Debian unstable.  Remaining changes:
- debian/apparmor/{libvirt-lxc,libvirt-qemu,local-usr.sbin.libvirtd,
  TEMPLATE.lxc,TEMPLATE.qemu,usr.lib.libvirt.virt-aa-helper,
  usr.sbin.libvirtd} Add apparmor profiles.
- debian/bug-presubj: removed
- debian/control:
  - add cdbs, dh-autoreconf, libcurl4-gnutls-dev
  - add libxml-libxml-perl, libhal-dev
  - swap open-iscsi to open-iscsi-utils
  - Enable numa support on ppc64 and ppc64el.
  - remove libsanlock-dev, libselinux1-dev, libsystemd-daemon-dev
  - remove systemtap-sdt-dev, python, sheepdog, librados-dev, libfuse-dev
  - remove libssh2-1, augeas-tools
  - add libcgmanager-dev, xsltproc
  - remove Vcs-Git
  - adjust X-Python-Version  2.7
  - don't build libvirt-clients, libvirt-daemon, libvirt-sanlock packages
* keep debian/{libvirt-bin.apport,libvirt-bin.cron.daily}
* debian/libvirt-daemon.* has been mostly renamed to debian/libvirt-bin.*
* add upstart script for libvirt-bin
* debian/*.links files not added
* debian/libvirt-sanlock* not merged
* debian/libvirt-clients* not merged
* debian smoke tests not merged
* keep debian/{libvirt-migrate-qemu-disks.*,
  libvirt-migrate-qemu-machinetype.*,
  libvirt-migrate-xend-managed-domains.*}
* keep debian/libvirt-suspendonreboot
* keep debian/libvirt-uri.sh
* Don't apply the following patches:
  - d/p/Debianize-libvirt-guests.patch
  - d/p/Debianize-systemd-service-files.patch
  - d/p/debian/Debianize-virtlockd.patch
  - d/p/fix-Debian-specific-path-to-hvm-loader.patch
  - d/p/Disable-gnulib-s-test-nonplocking-pipe.sh.patch
  - d/p/patch-qemuMonitorTextGetMigrationStatus-to-intercept.patch
* debian/polkit/* not added
* debian/README.Debian:
  - add 'Apparmor Profile' section
  - add 'Disk migration' section
* debian/rules:
  - add cdbs and autoconf stuff
  - don't build WITH_SANLOCK, WITH_INIT_SCRIPT, WITH_SYSTEMD, WITH_FIREWALLD
WITH_SELINUX
  - use qemu-group kvm instead of libvirt-qemu
  - set DEB_DH_INSTALLINIT_ARGS to '--upstart-only'
  - remove auto_test section
  - add build/libvirt-bin:: section to install
- apparmor files
- apport hooks
- libvirt-migrate-qemu-disks
  - use clean:: instead of dh_*clean

  [ Chuck Short ]
+ Rediffed:
 - debian/patches/storage-default-permission-mode-to-0711
 - debian/patches/ubuntu_machine_type.patch
  * debian/libvirt-bin.init: Adjust avahi to avahi-daemon (LP: #1453572)

  [ Serge Hallyn ]
  * 9040-virt-aa-helper-add-unix-channels.patch: add support for unix
sockets for serials.  (LP: #1015154)

 -- Chris J Arges chris.j.ar...@canonical.com  Wed, 01 Jul 2015
13:33:40 -0500

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

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

Title:
  libvirt-bin's sysv init script references avahi, which no longer
  exists

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1453572/+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 1342083] Re: Failed to create chardev due to apparmor DENIED execute of /usr/lib/pt_chown

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.16-2ubuntu3

---
libvirt (1.2.16-2ubuntu3) wily; urgency=medium

  * debian/apparmor/libvirt-qemu:
allow serial console backed by pts chardev (LP: #1342083)

 -- Chris J Arges chris.j.ar...@canonical.com  Tue, 07 Jul 2015
16:38:17 -0500

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

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

Title:
  Failed to create chardev due to apparmor DENIED execute of
  /usr/lib/pt_chown

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1342083/+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 1472202] [NEW] ovs 2.3.2, unit test failure, powerpc - test 717

2015-07-07 Thread James Page
Public bug reported:

Only impacts powerpc; skipping test for now until we can dig in further.

Full log: https://launchpadlibrarian.net/210894394/buildlog_ubuntu-wily-
powerpc.openvswitch_2.3.2-0ubuntu1_BUILDING.txt.gz

## - ##
## openvswitch 2.3.2 test suite. ##
## - ##
717: ofproto-dpif, balance-tcp bonding, different recirc flow  FAILED 
(ofproto-dpif.at:253)

## - ##
## Test results. ##
## - ##

ERROR: 1 test was run,
1 failed unexpectedly.
## -- ##
## testsuite.log was created. ##
## -- ##

Please send `tests/testsuite.log' and all information you think might
help:

   To: b...@openvswitch.org
   Subject: [openvswitch 2.3.2] testsuite: 717 failed

You may investigate any problem if you feel able to do so, in which
case the test suite provides a good starting point.  Its output may
be found below `tests/testsuite.dir'.

make[5]: *** [check-local] Error 1
Makefile:4471: recipe for target 'check-local' failed
make[5]: Leaving directory '/«PKGBUILDDIR»'
make[4]: *** [check-am] Error 2
Makefile:3798: recipe for target 'check-am' failed
make[4]: Leaving directory '/«PKGBUILDDIR»'
make[3]: *** [check-recursive] Error 1
Makefile:3507: recipe for target 'check-recursive' failed
make[3]: Leaving directory '/«PKGBUILDDIR»'
make[2]: *** [check] Error 2
Makefile:3801: recipe for target 'check' failed
make[2]: Leaving directory '/«PKGBUILDDIR»'
## - ##
## openvswitch 2.3.2 test suite. ##
## - ##

testsuite: command line was:
  $ ./tests/testsuite -C tests 
AUTOTEST_PATH=utilities:vswitchd:ovsdb:vtep:tests --recheck

## - ##
## Platform. ##
## - ##

hostname = sagari
uname -m = ppc
uname -r = 3.2.0-68-powerpc64-smp
uname -s = Linux
uname -v = #102-Ubuntu SMP Tue Aug 12 22:09:42 UTC 2014

/usr/bin/uname -p = unknown
/bin/uname -X = unknown

/bin/arch  = unknown
/usr/bin/arch -k   = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo  = unknown
/bin/machine   = unknown
/usr/bin/oslevel   = unknown
/bin/universe  = unknown

PATH: /«PKGBUILDDIR»/utilities
PATH: /«PKGBUILDDIR»/vswitchd
PATH: /«PKGBUILDDIR»/ovsdb
PATH: /«PKGBUILDDIR»/vtep
PATH: /«PKGBUILDDIR»/tests
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/games

testsuite: atconfig:
| # Configurable variable values for building test suites.
| # Generated by ./config.status.
| # Copyright (C) 2012 Free Software Foundation, Inc.
|
| # The test suite will define top_srcdir=/../.. etc.
| at_testdir='tests'
| abs_builddir='/«PKGBUILDDIR»/tests'
| at_srcdir='.'
| abs_srcdir='/«PKGBUILDDIR»/tests'
| at_top_srcdir='..'
| abs_top_srcdir='/«PKGBUILDDIR»'
| at_top_build_prefix='../'
| abs_top_builddir='/«PKGBUILDDIR»'
|
| # Backward compatibility with Autotest = 2.59b:
| at_top_builddir=$at_top_build_prefix
|
| AUTOTEST_PATH='tests'
|
| SHELL=${CONFIG_SHELL-'/bin/bash'}

testsuite: atlocal:
| # -*- shell-script -*-
| HAVE_OPENSSL='yes'
| HAVE_PYTHON='yes'
| EGREP='/bin/grep -E'
| PERL='/usr/bin/perl'
|
| if test x$PYTHON = x; then
| PYTHON='/usr/bin/python'
| fi
|
| PYTHONPATH=$abs_top_srcdir/python:$abs_top_builddir/tests:$PYTHONPATH
| export PYTHONPATH
|
| PYTHONIOENCODING=utf_8
| export PYTHONIOENCODING
|
| # PYTHONDONTWRITEBYTECODE=yes keeps Python 2.6+ from creating .pyc and .pyo
| # files.  Creating .py[co] works OK for any given version of Open
| # vSwitch, but it causes trouble if you switch from a version with
| # foo/__init__.py into an (older) version with plain foo.py, since
| # foo/__init__.pyc will cause Python to ignore foo.py.
| #
| # Python before version 2.6 always creates .pyc files, so if you develop
| # with such an older version then you're out of luck.
| PYTHONDONTWRITEBYTECODE=yes
| export PYTHONDONTWRITEBYTECODE
|
| # Test whether the current working directory name is all ASCII
| # characters.  Some Python code doesn't tolerate non-ASCII characters
| # in filenames very well, so if the current working directory is
| # non-ASCII then we skip the tests that run those programs.
| #
| # This would be just papering over a real problem, except that the
| # tests that we skip are launched from initscripts and thus normally
| # run in system directories with ASCII names.  (This problem only came
| # up at all because the Debian autobuilders do build in a top-level
| # directory named /«BUILDDIR».)
| case `pwd | tr -d ' -~'` in
| '') non_ascii_cwd=false ;;
| *) non_ascii_cwd=true
| esac
|
| if test $HAVE_PYTHON = yes; then
| if python -m argparse 2/dev/null; then
| :
| else
| PYTHONPATH=$PYTHONPATH:$abs_top_srcdir/python/compat
| export PYTHONPATH
| fi
| fi
|
| # Enable malloc debugging features.
| case `uname` in
| Linux)
| MALLOC_PERTURB_=165; export MALLOC_PERTURB_
|
| # 

[Bug 1472224] [NEW] package libapache2-mod-php5 (not installed) failed to install/upgrade: subprocess installed post-removal script returned error exit status 2

2015-07-07 Thread Darryl Penrice
Public bug reported:

I used the recommended uninstall method at
https://help.ubuntu.com/community/ApacheMySQLPHP#php.ini_development_vs._production

and this bug appeared...

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libapache2-mod-php5 (not installed)
ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
Uname: Linux 3.13.0-55-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
Date: Tue Jul  7 18:31:38 2015
DuplicateSignature: package:libapache2-mod-php5:(not installed):subprocess 
installed post-removal script returned error exit status 2
ErrorMessage: subprocess installed post-removal script returned error exit 
status 2
InstallationDate: Installed on 2015-06-30 (7 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
SourcePackage: php5
Title: package libapache2-mod-php5 (not installed) failed to install/upgrade: 
subprocess installed post-removal script returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  package libapache2-mod-php5 (not installed) failed to install/upgrade:
  subprocess installed post-removal script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1472224/+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 1472224] Re: package libapache2-mod-php5 (not installed) failed to install/upgrade: subprocess installed post-removal script returned error exit status 2

2015-07-07 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package libapache2-mod-php5 (not installed) failed to install/upgrade:
  subprocess installed post-removal script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1472224/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
Seems that defaults_read_config(),  defaults_get_searchdns() or at least
conf_init() needs to be called before trying conf_get_yesno() in
defaults_get_browse_mode(). Otherwise the config pointer is still NULL
when accessing the hash table indirectly.

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1296665] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1296665/+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 1229434] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1229434/+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 1183374] Re: irqbalance crashed with SIGSEGV in place_irq_in_node()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in place_irq_in_node()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1183374/+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 1188490] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1188490/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1303067] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1303067/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: irqbalance (Ubuntu Trusty)
   Status: New = Confirmed

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1207261] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1207261/+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 1378329] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1378329/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: irqbalance (Ubuntu Utopic)
   Status: New = Confirmed

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1194043] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1194043/+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 1297365] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1297365/+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 1291948] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1291948/+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 1296830] Re: irqbalance crashed with SIGSEGV in __libc_start_main()

2015-07-07 Thread Ming Lei
*** This bug is a duplicate of bug 1469214 ***
https://bugs.launchpad.net/bugs/1469214

** This bug is no longer a duplicate of bug 1183374
   irqbalance crashed with SIGSEGV in place_irq_in_node()
** This bug has been marked a duplicate of bug 1469214
   HP ProLiant m400 Server crashes with unhandled level 3 translation fault

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

Title:
  irqbalance crashed with SIGSEGV in __libc_start_main()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1296830/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Alberto Salvia Novella
** Changed in: irqbalance (Ubuntu Trusty)
   Status: Confirmed = Triaged

** Changed in: irqbalance (Ubuntu Utopic)
   Status: Confirmed = Triaged

** Changed in: irqbalance (Ubuntu Vivid)
   Status: Confirmed = Triaged

** Changed in: irqbalance (Ubuntu Wily)
   Status: Confirmed = Triaged

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Ming Lei
** Changed in: irqbalance (Ubuntu Vivid)
   Status: In Progress = Confirmed

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Alberto Salvia Novella
** Changed in: irqbalance (Ubuntu Trusty)
 Assignee: (unassigned) = dann frazier (dannf)

** Changed in: irqbalance (Ubuntu Utopic)
 Assignee: (unassigned) = dann frazier (dannf)

** Changed in: irqbalance (Ubuntu Vivid)
 Assignee: (unassigned) = dann frazier (dannf)

** Changed in: irqbalance (Ubuntu Wily)
 Assignee: (unassigned) = dann frazier (dannf)

** Changed in: irqbalance (Ubuntu Trusty)
   Importance: Undecided = Medium

** Changed in: irqbalance (Ubuntu Utopic)
   Importance: Undecided = Medium

** Changed in: irqbalance (Ubuntu Vivid)
   Importance: Undecided = Medium

** Changed in: irqbalance (Ubuntu Wily)
   Importance: Undecided = Medium

** No longer affects: linux (Ubuntu)

** No longer affects: linux (Ubuntu Trusty)

** No longer affects: linux (Ubuntu Utopic)

** No longer affects: linux (Ubuntu Vivid)

** No longer affects: linux (Ubuntu Wily)

** Tags added: trusty utopic vivid wily

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread Andrew Cloke
Following Ming's identification of an irqbalance patch that fixes this
issue, I'm marking the Affected status on linux (Ubuntu) as being
invalid.

** Changed in: linux (Ubuntu Trusty)
   Status: New = Invalid

** Changed in: linux (Ubuntu Utopic)
   Status: New = Invalid

** Changed in: linux (Ubuntu Vivid)
   Status: New = Invalid

** Changed in: linux (Ubuntu Wily)
   Status: Triaged = Invalid

** Changed in: irqbalance (Ubuntu Vivid)
   Status: New = In Progress

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1472269] [NEW] Backing file chains crash guest

2015-07-07 Thread karaluh
Public bug reported:

1. Shut down guest,
2. Create snapshot using current image as a backing file using qemu-img,
3. Update the guest definition to point to the new snapshot file,
4. Start guest - everything works,
5. Shut down guest again,
6. create new snapshot using the last snapshot as a backing file,
7. Update the guest definition to point to the snapshot of a snapshot,
8. Start guest - it crashes almost immediately.

Error msg:
błąd: Uruchomienie domeny cctvserver nie powiodło się
błąd: Unable to read from monitor: Connection reset by peer

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: libvirt-bin 0.9.8-2ubuntu17.22
ProcVersionSignature: Ubuntu 3.2.0-86.124-generic 3.2.69
Uname: Linux 3.2.0-86-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.9
Architecture: amd64
Date: Tue Jul  7 15:26:36 2015
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=pl_PL.UTF-8
 SHELL=/bin/bash
SourcePackage: libvirt
UpgradeStatus: Upgraded to precise on 2015-01-27 (161 days ago)

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


** Tags: amd64 apparmor apport-bug precise

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

Title:
  Backing file chains crash guest

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1472269/+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 1469994] Re: [MIR] python-designateclient, python-manilaclient, python-zaqarclient

2015-07-07 Thread James Page
zaqarclient is currently limited to unit tests, as zaqar itself is
required for functional tests, and its not yet packaged.

** Changed in: python-zaqarclient (Ubuntu)
   Status: Incomplete = New

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

Title:
  [MIR] python-designateclient, python-manilaclient, python-zaqarclient

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-designateclient/+bug/1469994/+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 1472115] Re: autofs start fails: segfault at 0 ip 00007f738cb881bb sp 00007ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

2015-07-07 Thread Stefan Bader
Its not only that call site. I get the feeling that the daemon does not
inherit the dynamically allocated structures across fork(). At least it
does do a defaults_read_config() before the fork which does not seem to
survive.

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

Title:
  autofs start fails: segfault at 0 ip 7f738cb881bb sp
  7ffeff888f70 error 4 in lookup_file.so[7f738cb76000+2b000]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1472115/+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 1469214] Re: HP ProLiant m400 Server crashes with unhandled level 3 translation fault

2015-07-07 Thread dann frazier
** Also affects: irqbalance (Ubuntu Trusty)
   Importance: Undecided
   Status: New

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

** Also affects: irqbalance (Ubuntu Utopic)
   Importance: Undecided
   Status: New

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

** Also affects: irqbalance (Ubuntu Wily)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Wily)
   Importance: Medium
 Assignee: dann frazier (dannf)
   Status: Triaged

** Also affects: irqbalance (Ubuntu Vivid)
   Importance: Undecided
   Status: New

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

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

Title:
  HP ProLiant m400 Server crashes with unhandled level 3 translation
  fault

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1469214/+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 1342080] Re: glance api is tracebacking with error: [Errno 32] Broken pipe

2015-07-07 Thread James Page
Fixed in 0.16.0 - marking fix released for Wily (has 0.19.0).

** Also affects: python-glanceclient (Ubuntu Vivid)
   Importance: Undecided
   Status: New

** Also affects: python-glanceclient (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: python-glanceclient (Ubuntu Wily)
   Importance: Undecided
   Status: Confirmed

** Also affects: python-glanceclient (Ubuntu Utopic)
   Importance: Undecided
   Status: New

** Changed in: python-glanceclient (Ubuntu Wily)
   Status: Confirmed = Fix Released

** Changed in: python-glanceclient (Ubuntu Vivid)
   Importance: Undecided = Medium

** Changed in: python-glanceclient (Ubuntu Utopic)
   Importance: Undecided = Medium

** Changed in: python-glanceclient (Ubuntu Trusty)
   Importance: Undecided = Medium

** Changed in: python-glanceclient (Ubuntu Trusty)
   Status: New = Triaged

** Changed in: python-glanceclient (Ubuntu Utopic)
   Status: New = Triaged

** Changed in: python-glanceclient (Ubuntu Vivid)
   Status: New = Triaged

** Changed in: python-glanceclient (Ubuntu Wily)
   Importance: Undecided = Medium

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

Title:
  glance api is tracebacking with error: [Errno 32] Broken pipe

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-glanceclient/+bug/1342080/+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 1470580] Re: unprivileged lxc containers fails with custom bridge

2015-07-07 Thread god
Thanks for clarification! Would be kinda helpful if lxc-start could
print actual numbers (X quota configured for bridge123, Y is in use).
What's the upper limit on those quota numbers? Can I have 100 bridges
with 400 interfaces in each?

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

Title:
  unprivileged lxc containers fails with custom bridge

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1470580/+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 1466099] Re: tools/maas2roottar doesn't exit non-zero if mount-image-callback is not installed

2015-07-07 Thread Scott Moser
** Also affects: curtin
   Importance: Undecided
   Status: New

** No longer affects: curtin (Ubuntu)

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

Title:
  tools/maas2roottar doesn't exit non-zero if mount-image-callback is
  not installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1466099/+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 1443735] Re: recordfail false positive causes headless servers to hang on boot by default

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package grub2 - 2.02~beta2-9ubuntu1.3

---
grub2 (2.02~beta2-9ubuntu1.3) trusty; urgency=medium

  * Do not hang headless servers indefinitely on boot after edge case power
failure timing (LP: #1443735). Instead, time out after 30 seconds and boot
anyway, including on non-headless systems.

 -- Robie Basak robie.ba...@ubuntu.com  Tue, 19 May 2015 13:31:03
+0100

** Changed in: grub2 (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 the bug report.
https://bugs.launchpad.net/bugs/1443735

Title:
  recordfail false positive causes headless servers to hang on boot by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1443735/+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 1452879] Re: clamav-daemon fails after update

2015-07-07 Thread Launchpad Bug Tracker
[Expired for clamav (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  clamav-daemon fails after update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/clamav/+bug/1452879/+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 1443735] Update Released

2015-07-07 Thread Scott Kitterman
The verification of the Stable Release Update for grub2 has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  recordfail false positive causes headless servers to hang on boot by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1443735/+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 1443735] Re: recordfail false positive causes headless servers to hang on boot by default

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package grub2 - 2.02~beta2-22ubuntu1.1

---
grub2 (2.02~beta2-22ubuntu1.1) vivid; urgency=medium

  * Do not hang headless servers indefinitely on boot after edge case power
failure timing (LP: #1443735). Instead, time out after 30 seconds and boot
anyway, including on non-headless systems.

 -- Robie Basak robie.ba...@ubuntu.com  Tue, 19 May 2015 13:47:00
+0100

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

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

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

Title:
  recordfail false positive causes headless servers to hang on boot by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1443735/+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 1443735] Re: recordfail false positive causes headless servers to hang on boot by default

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package grub2 - 1.99-21ubuntu3.18

---
grub2 (1.99-21ubuntu3.18) precise; urgency=medium

  * Do not hang headless servers indefinitely on boot after edge case power
failure timing (LP: #1443735). Instead, time out after 30 seconds and boot
anyway, including on non-headless systems.

 -- Robie Basak robie.ba...@ubuntu.com  Tue, 19 May 2015 12:22:34
+0100

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

Title:
  recordfail false positive causes headless servers to hang on boot by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1443735/+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 1443735] Re: recordfail false positive causes headless servers to hang on boot by default

2015-07-07 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/precise-updates/grub2

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

Title:
  recordfail false positive causes headless servers to hang on boot by
  default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1443735/+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 1448650] Re: rpc.server do not consume messages after message acknowledge failure

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package oslo.messaging - 1.3.0-0ubuntu1.2

---
oslo.messaging (1.3.0-0ubuntu1.2) trusty; urgency=medium

  * Detect when underlying kombu connection to rabbitmq server has been
disconnected and allow oslo.messaging to go through the reconnect
logic (LP: #1448650):
- d/p/redeclare-consumers-when-ack-requeue-fails.patch: redeclare
  consumers when ack/requeue fails.

 -- Billy Olsen billy.ol...@canonical.com  Thu, 25 Jun 2015 09:59:42
+0100

** Changed in: oslo.messaging (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 oslo.messaging in Ubuntu.
https://bugs.launchpad.net/bugs/1448650

Title:
  rpc.server do not consume messages after message acknowledge failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/oslo.messaging/+bug/1448650/+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 1384279] Re: Enhancement Request Version and program data About

2015-07-07 Thread Launchpad Bug Tracker
[Expired for maas (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Enhancement Request Version and program data About

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maas/+bug/1384279/+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 1472465] [NEW] package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-07-07 Thread Girish M Ramarao
Public bug reported:

package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade:
subprocess installed post-installation script returned error exit status
1

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: bind9 1:9.9.5.dfsg-3ubuntu0.3
ProcVersionSignature: Ubuntu 3.13.0-57.95-generic 3.13.11-ckt21
Uname: Linux 3.13.0-57-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
Date: Wed Jul  8 08:39:21 2015
DuplicateSignature: package:bind9:1:9.9.5.dfsg-3ubuntu0.3:subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2013-12-27 (557 days ago)
InstallationMedia: Ubuntu-Server 12.04.3 LTS Precise Pangolin - Release amd64 
(20130820.2)
ProcCmdline: BOOT_IMAGE=/boot/vmlinuz-3.13.0-57-generic 
root=UUID=9bebe590-ec79-4970-bd8e-998b8307bf98 ro find_preseed=/preseed.cfg 
noprompt quiet
RelatedPackageVersions:
 bind9utils 1:9.9.5.dfsg-3ubuntu0.3
 apparmor   2.8.95~2430-0ubuntu5.2
SourcePackage: bind9
Title: package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
UpgradeStatus: Upgraded to trusty on 2014-05-24 (409 days ago)
modified.conffile..etc.bind.named.conf: [modified]
modified.conffile..etc.bind.named.conf.local: [modified]
mtime.conffile..etc.bind.named.conf: 2015-05-30T08:47:40.466563
mtime.conffile..etc.bind.named.conf.local: 2015-05-04T11:51:03.946434

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


** Tags: amd64 apparmor apport-package trusty

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

Title:
  package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1472465/+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 1472465] Re: package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-07-07 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1472465/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package horizon - 1:2014.1.5-0ubuntu1

---
horizon (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (4ff165c) (LP: #1467533):
- [78b6f5e] Fix exponentially growing AJAX updates for table rows
- [86a6628] Handle RequestURITooLong error in large instance table
- [2a6fe4a] Fix host listing in live migration
- [9109812] Exclude security group related quotas when the extension 
disabled
- [4ff165c] horizon ignores region for identity service
  * d/p/fix-host-listing-live-migration.patch: Dropped; Fixed upstream.
  * d/p/fix-requirements.patch: Rebased

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:14:26
-0400

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

** Changed in: nova (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package glance - 1:2014.1.5-0ubuntu1

---
glance (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (f66170d) (LP: #1467533):
- [f66170d] Fix Icehouse RBD delete image on creation failure
  * d/p/fix-requirements.patch: Rebased

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:12:40
-0400

** Changed in: ceilometer (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1463844] Re: Missing logrotate configuration for vpn_agent and metering_agent

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 1:2014.1.5-0ubuntu1

---
neutron (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (877df58) (LP: #1467533):
- [cae7108] Fix enable_snat column migration for Postgres + SQLite
- [61571b4] Persist DHCP leases to a local database
- [fba8d9b] Process port IP requests before subnet requests
- [43fe809] Don't resync on DHCP agent setup failure
- [91cc867] Deal with PEP-0476 certificate chaining checking
- [877df58] Ignore http_proxy while connecting to test WSGI server

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:14:52
-0400

** Changed in: neutron (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 neutron in Ubuntu.
https://bugs.launchpad.net/bugs/1463844

Title:
  Missing logrotate configuration for vpn_agent and metering_agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1463844/+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 1467533] Update Released

2015-07-07 Thread Scott Kitterman
The verification of the Stable Release Update for keystone has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 1:2014.1.5-0ubuntu1

---
neutron (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (877df58) (LP: #1467533):
- [cae7108] Fix enable_snat column migration for Postgres + SQLite
- [61571b4] Persist DHCP leases to a local database
- [fba8d9b] Process port IP requests before subnet requests
- [43fe809] Don't resync on DHCP agent setup failure
- [91cc867] Deal with PEP-0476 certificate chaining checking
- [877df58] Ignore http_proxy while connecting to test WSGI server

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:14:52
-0400

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

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package heat - 2014.1.5-0ubuntu1

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

  * Resynchronize with stable/icehouse (314437f) (LP: #1467533):
- [eb22b01] Fix cloud-init Python syntax for Python  2.6
- [314437f] Patch 033 migration to work w/ MySQL 5.6
  * d/p/fix-requirements.patch: Rebased

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:14:10
-0400

** Changed in: glance (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package nova - 1:2014.1.5-0ubuntu1

---
nova (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (08b5d48) (LP: #1467533):
- [74295ed] Use ebtables to isolate dhcp traffic
- [a83eb5f] VMware: fix AttributeError: TaskInfo instance has no attribute 
'name'
- [8876294] libvirt: partial fix for live-migration with config drive
- [b77c188] Type conflict in trusted_filter.py using attestation_port 
default value
- [378a8d4] Use instance.uuid instead of instance
- [c12f21d] Make test_version_string_with_package_is_good work with pbr 0.11
- [1668178] Moves trusted filter unit tests into own file
- [4812617] Use hypervisor hostname for compute trust level
- [d8853ee] Recover from POWERING-* state on compute manager start-up
- [0784b0c] Avoid referring to juno-era exception type
- [f513a28] libvirt: Make sure volumes are well detected during block 
migration
- [68ec684] libvirt: avoid changing UUID when redefining nwfilters
- [cc86ef5] delete python bytecode before every test run
- [3501ec2] Drop use of oslo.utils in nova
- [392dc22] Eventlet green threads not released back to pool
- [1e03160] Sync strutils from oslo-incubator for mask_password fix
- [7292c02] Allow instances to attach to shared external nets
- [dbc348d] Fix libvirt watchdog support
- [08b5d48] HyperV Driver - Fix to implement hypervisor-uptime
  * d/p/drop-oslo-utils-usage.patch: Dropped; Fixed upstream.
  * d/p/recover-from-power-state-on-compute.patch: Dropped; Fixed upstream.
  * d/p/fix-requirements.patch: Rebased.

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:15:07
-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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package ceilometer - 2014.1.5-0ubuntu1

---
ceilometer (2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (04b66db) (LP: #1467533):
- [737e899] Fixes ceilometer-compute service start failure
- [04b66db] fix the value of query_spec.maxSample to advoid to be zero
  * d/p/fix-requirements.patch: Rebased.

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:11:03
-0400

** Changed in: cinder (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package cinder - 1:2014.1.5-0ubuntu1

---
cinder (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (d03ca5d) (LP: #1467533):
- [bc0549e] Disallow backing files when uploading volumes to image
- [15901c4] Deal with PEP-0476 certificate chaining checking
- [d03ca5d] Ignore HTTP_PROXY during test requests
  * d/p/fix-requirements.patch: Rebased

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:12:20
-0400

** Changed in: neutron (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1467533] Re: [SRU] icehouse 2014.1.5 point release

2015-07-07 Thread Launchpad Bug Tracker
This bug was fixed in the package keystone - 1:2014.1.5-0ubuntu1

---
keystone (1:2014.1.5-0ubuntu1) trusty; urgency=medium

  * Resynchronize with stable/icehouse (91255f1) (LP: #1467533):
- [a1548eb] backend_argument should be marked secret
- [e6eba4b] Remove oslo.serialization from requirements.txt
- [0e0efdb] Work with pymongo 3.0
- [91255f1] Deal with PEP-0476 certificate chaining checking
  * d/p/drop-oslo-serialization.patch: Dropped; Fixed upstream.
  * d/p/fix-requirements.patch: Rebased

 -- Corey Bryant corey.bry...@canonical.com  Mon, 22 Jun 2015 10:14:38
-0400

** Changed in: keystone (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/1467533

Title:
  [SRU] icehouse 2014.1.5 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1467533/+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 1472465] Re: package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-07-07 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  package bind9 1:9.9.5.dfsg-3ubuntu0.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1472465/+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 1472392] [NEW] [MIR] zzzeeksphinx

2015-07-07 Thread James Page
Public bug reported:

[Availability]
In universe

[Rationale]
BD for sqlalchemy - used for generation of documentation.

[Security]
No security history.

[Quality assurance]
Package builds OK; no unit testing - just a documentation theme.

[Dependencies]
All in main.

[Standards compliance]
OK

[Maintenance]
ubuntu-server/ubuntu-openstack teams.  Should be minimal.

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

** Description changed:

  [Availability]
+ In universe
  
  [Rationale]
+ BD for sqlalchemy - used for generation of documentation.
  
  [Security]
+ No security history.
  
  [Quality assurance]
+ Package build OK; no unit testing - just a documentation theme.
  
  [Dependencies]
+ All in main.
  
  [Standards compliance]
+ OK
  
  [Maintenance]
- 
- [Background information]
+ ubuntu-server/ubuntu-openstack teams.

** Description changed:

  [Availability]
  In universe
  
  [Rationale]
  BD for sqlalchemy - used for generation of documentation.
  
  [Security]
  No security history.
  
  [Quality assurance]
- Package build OK; no unit testing - just a documentation theme.
+ Package builds OK; no unit testing - just a documentation theme.
  
  [Dependencies]
  All in main.
  
  [Standards compliance]
  OK
  
  [Maintenance]
  ubuntu-server/ubuntu-openstack teams.

** Description changed:

  [Availability]
  In universe
  
  [Rationale]
  BD for sqlalchemy - used for generation of documentation.
  
  [Security]
  No security history.
  
  [Quality assurance]
  Package builds OK; no unit testing - just a documentation theme.
  
  [Dependencies]
  All in main.
  
  [Standards compliance]
  OK
  
  [Maintenance]
- ubuntu-server/ubuntu-openstack teams.
+ ubuntu-server/ubuntu-openstack teams.  Should be minimal.

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

Title:
  [MIR] zzzeeksphinx

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