[Bug 1356113] Re: PHP5 session clean cron job causes OOM

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

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

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

Title:
  PHP5 session clean cron job causes OOM

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

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


[Bug 1368815] Re: qemu-img convert intermittently corrupts output images

2014-10-30 Thread Launchpad Bug Tracker
This bug was fixed in the package qemu - 2.1+dfsg-4ubuntu7

---
qemu (2.1+dfsg-4ubuntu7) vivid; urgency=medium

  * Apply two patches to fix intermittent qemu-img corruption
(LP: #1368815)
- 501-block-raw-posix-fix-disk-corruption-in-try-fiemap
- 502-block-raw-posic-use-seek-hole-ahead-of-fiemap
 -- Serge Hallyn serge.hal...@ubuntu.com   Wed, 29 Oct 2014 22:31:43 -0500

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

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

Title:
  qemu-img convert intermittently corrupts output images

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

-- 
Ubuntu-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 1386869] Re: -host in auto.master not mounting nfs exports

2014-10-30 Thread dsijbesma
Changing the entry

/net-hosts

to

/net  /etc/auto.net


in /etc/auto.master does work for me now as well. In the time of 
initiating this bug report it wasn't.

David

On 10/29/2014 11:49 PM, Todd Kaehler wrote:
 In /etc/auto.master if I change:

 /net-hosts

 to

 /net  /etc/auto.net

 it works...


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

Title:
  -host in auto.master not mounting nfs exports

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

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


[Bug 1387594] [NEW] init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
Public bug reported:

This bug is specific to the PPC64EL architecture. More details in the
analysis.

Many commands that require the use of libnss-ldap will fail with
Segmentation Fault. The boot procedure itself can be blocked with the
following message.

One potential workaround is to remove the use of ldap from the
/etc/nsswitch.conf file to at least provide a bootable system.

** Affects: libnss-ldap (Ubuntu)
 Importance: Critical
 Status: Confirmed

** Affects: libnss-ldap (Ubuntu Trusty)
 Importance: Undecided
 Status: New

** Affects: libnss-ldap (Ubuntu Utopic)
 Importance: Critical
 Status: Confirmed

** Changed in: libnss-ldap (Ubuntu)
   Status: New = Confirmed

** Changed in: libnss-ldap (Ubuntu)
   Importance: Undecided = Critical

** Also affects: libnss-ldap (Ubuntu Utopic)
   Importance: Undecided
   Status: New

** Also affects: libnss-ldap (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: libnss-ldap (Ubuntu Utopic)
   Status: New = Confirmed

** Changed in: libnss-ldap (Ubuntu Utopic)
   Importance: Undecided = Critical

** Description changed:

+ This bug is specific to the PPC64EL architecture. More details in the
+ analysis.
+ 
  Many commands that require the use of libnss-ldap will fail with
  Segmentation Fault. The boot procedure itself can be blocked with the
  following message.
  
  One potential workaround is to remove the use of ldap from the
  /etc/nsswitch.conf file to at least provide a bootable system.

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1387594] Re: init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
Analysis


Upon boot of a ppc64el system configured to authenticate as an LDAP
client, the boot process is interrupted with :

 /sbin/init: symbol lookup error: /lib/powerpc64le-linux-
gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

Apparently __libc_lock_lock is missing from the libnss_ldap.so library.

Looking at the symbols exported by the library on PPC64el we see :

 - For libnss_ldap : 
$ nm -D /lib/powerpc64le-linux-gnu/libnss_ldap.so.2 | grep _lock
 U __libc_lock_lock
 U __libc_lock_unlock

• For libc :
$ nm -D /lib/powerpc64le-linux-gnu/libc-2.19.so | grep _lock
0008f4a0 T _IO_list_lock
00088a70 T _IO_peekc_locked
001313b0 T pthread_mutex_lock

The same command on AMD64 returns :
 - For libnss_ldap:
# nm -D /lib/x86_64-linux-gnu/libnss_ldap.so.2 | grep lock
 w __pthread_mutex_lock
 w __pthread_mutex_unlock
• For libc : 
# nm -D /lib/x86_64-linux-gnu/libc-2.19.so | grep _lock
...
00108270 T pthread_mutex_lock

So the symbol is _not_ exported by the libc on ppc64el even though
libnss_ldap is expecting to find it.

This lock is only used once in libnss_ldap :

static int
ltf_mutex_lock (void *mutexp)
{
#if defined(HAVE_LIBC_LOCK_H) || defined(HAVE_BITS_LIBC_LOCK_H)
  return __libc_lock_lock (*(pthread_mutex_t *) mutexp);
#elif defined(HPUX)
  return __thread_mutex_lock ((pthread_mutex_t *) mutexp);
#else
# ifdef _AIX
  if (__multi_threaded == 0)
return 0;
# endif
  return pthread_mutex_lock ((pthread_mutex_t *) mutexp);
#endif /* HAVE_LIBC_LOCK_H || HAVE_BITS_LIBC_LOCK_H */
}


So apparently, the HAVE_LIBC_LOCK_H symbol is defined on ppc64el, or at least 
appear to be even if the libc does not export that libc_lock_lock symbol.

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1387594] Re: init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
** Changed in: libnss-ldap (Ubuntu)
 Assignee: (unassigned) = Louis Bouchard (louis-bouchard)

** Changed in: libnss-ldap (Ubuntu Utopic)
 Assignee: (unassigned) = Louis Bouchard (louis-bouchard)

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:~gmb/maas/backport-restrict-to-slash-16-1.7

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

Title:
  LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

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

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


[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Graham Binns
** Changed in: maas
   Status: Triaged = In Progress

** Changed in: maas (Ubuntu)
 Assignee: Gavin Panella (allenap) = (unassigned)

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

Title:
  pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

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

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


[Bug 1387201] Re: screen focus key binding

2014-10-30 Thread Thaddäus Tintenfisch
Please forward this bug to the upstream bug tracker. Thanks in advance.

http://savannah.gnu.org/bugs/?group=screen

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

Title:
  screen focus key binding

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

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


[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Graham Binns
I can't reproduce this locally; it seems to work fine with properly
formatted — and even improperly formatted — IPv6 addresses. We really
need to see the problem you're seeing Jeroen.

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

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

Title:
  pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

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

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


[Bug 16669] Re: Squid: Compile with --enable-ssl

2014-10-30 Thread god
So the only thing needed to fix this bug is to update squid to 3.5 and
rebuild with --enable-ssl while having libnettle and gnutls installed?
Or there are some changes to package build-depends required?

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

Title:
  Squid: Compile with --enable-ssl

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

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


[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Christian Reis
** Changed in: maas
Milestone: 1.7.0 = next

** Changed in: maas
 Assignee: Graham Binns (gmb) = Jeroen T. Vermeulen (jtv)

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

Title:
  pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

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

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


[Bug 1381058] Re: Upgrading introduces a spurious cluster controller

2014-10-30 Thread Christian Reis
** Changed in: maas
Milestone: 1.7.0 = 1.7.1

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

Title:
  Upgrading introduces a spurious cluster controller

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

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


[Bug 1382266] Re: maas-proxy fails to start on freshly installed MAAS

2014-10-30 Thread Christian Reis
** Changed in: maas
   Status: Invalid = Fix Committed

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

Title:
  maas-proxy fails to start on freshly installed MAAS

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

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


[Bug 1384108] Re: Exception during message handling: QueuePool limit of size 10 overflow 20 reached, connection timed out, timeout 10

2014-10-30 Thread Eugene Nikanorov
** Changed in: neutron
   Status: New = Confirmed

** Changed in: neutron
   Importance: Undecided = High

** Changed in: neutron
 Assignee: (unassigned) = Eugene Nikanorov (enikanorov)

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

Title:
  Exception during message handling: QueuePool limit of size 10 overflow
  20 reached, connection timed out, timeout 10

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

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


[Bug 1373261] Re: pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

2014-10-30 Thread Christian Reis
** Changed in: maas
Milestone: next = 1.7.1

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

Title:
  pserv.yaml rewrite breaks when MAAS URL uses IPv6 address

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

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


[Bug 1287943] Re: vm-builder needs trusty suite

2014-10-30 Thread Bartosz Kosiorek
It is working perfectly for me (Precise)

** Tags removed: verification-failed-precise
** Tags added: verification-done-precise

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

Title:
  vm-builder needs trusty suite

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

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


[Bug 1384555] Re: SQL error during alembic.migration when populating Neutron database on MariaDB 10.0

2014-10-30 Thread Jakub Libosvar
We're seeing this issue on Fedora 21 with mariadb-10.0.14-7.fc21.x86_64,
it doesn't reproduce on Fedora 20

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

Title:
  SQL error during alembic.migration when populating Neutron database on
  MariaDB 10.0

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

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


[Bug 1387251] Re: apparmor conflict with precise cloud archive

2014-10-30 Thread James Page
** Changed in: libvirt (Ubuntu)
 Assignee: (unassigned) = Chuck Short (zulcss)

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

** Also affects: cloud-archive
   Importance: Undecided
   Status: New

** Changed in: cloud-archive
 Assignee: (unassigned) = Chuck Short (zulcss)

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

** Changed in: cloud-archive
   Status: New = In Progress

** Changed in: cloud-archive
   Importance: Undecided = Critical

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

Title:
  apparmor conflict with precise cloud archive

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

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


[Bug 1358835] Re: numa_node_of_cpu() returns warning when cpu_index 79

2014-10-30 Thread bugproxy
** Tags removed: severity-medium
** Tags added: severity-high

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

Title:
  numa_node_of_cpu() returns warning  when cpu_index  79

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

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


[Bug 1315562] Re: libnss-winbind should allow installation of the 32 bit libarary in trusty

2014-10-30 Thread Bart Staal
I've got the same problem. We are using several closed source tools (for
FPGA building, code analysis, etc) which are 32-bit and e.g. call
getpwuid(). A few segfault because of the returned NULL pointer return
value caused by the missing libnss_winbind library.

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

Title:
  libnss-winbind should allow installation of the 32 bit libarary in
  trusty

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

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


[Bug 1384555] Re: SQL error during alembic.migration when populating Neutron database on MariaDB 10.0

2014-10-30 Thread Jakub Libosvar
The problem since MySQL 5.6 forbids to alter column with FK constraint.
I tested solution we drop both FKs (router_id, l3_agent_id), set new
primary key for l3_agent_id and then re-create FKs and it works. I'll
send patch soon.

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

Title:
  SQL error during alembic.migration when populating Neutron database on
  MariaDB 10.0

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

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


[Bug 1387594] Re: init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
Ok, here are some more puzzling things :

The libnss-ldap from the archive does not use __libc_lock_lock :
$ pwd
./archive
$ wget 
http://fr.archive.ubuntu.com/ubuntu/pool/main/libn/libnss-ldap/libnss-ldap_264-2.2ubuntu4_amd64.deb
--2014-10-30 16:20:59--  
http://fr.archive.ubuntu.com/ubuntu/pool/main/libn/libnss-ldap/libnss-ldap_264-2.2ubuntu4_amd64.deb
...
2014-10-30 16:21:01 (72,7 KB/s) - «libnss-ldap_264-2.2ubuntu4_amd64.deb» 
enregistré [64718/64718]
$ dpkg -x libnss-ldap_264-2.2ubuntu4_amd64.deb .
$ nm -D lib/x86_64-linux-gnu/libnss_ldap.so.2 | grep _lock
 w __pthread_mutex_lock

The same source build in a PPA DOES have the symbol __libc_lock_lock :
$ cd ../ppa
$ pwd
./ppa
$ wget 
https://launchpad.net/~louis-bouchard/+archive/ubuntu/nssldap-buildtest/+files/libnss-ldap_264-2.2ubuntu4_amd64.deb
...
2014-10-30 16:23:56 (56,7 KB/s) - «libnss-ldap_264-2.2ubuntu4_amd64.deb» 
enregistré [83234/83234]

$ dpkg -x libnss-ldap_264-2.2ubuntu4_amd64.deb .
$ nm -D lib/x86_64-linux-gnu/libnss_ldap.so.2 | grep _lock
 U __libc_lock_lock
 U __libc_lock_unlock

I see the same behavior (i.e. fresh build created with __libc_lock_lock
in use) when using sbuild or building manually using debian/rules

This needs more investigation

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1387594] Re: init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
After a discussion with slangasek, the only reason why it no longer
builds locally is that the uploads in the archives have not been rebuilt
since 2012 which explains why the new build on ppc64el fails : it is the
only fresh rebuild.

** Changed in: libnss-ldap (Ubuntu Trusty)
   Status: New = Confirmed

** Also affects: libnss-ldap (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Changed in: libnss-ldap (Ubuntu Precise)
   Importance: Undecided = Critical

** Changed in: libnss-ldap (Ubuntu Trusty)
   Importance: Undecided = Critical

** Changed in: libnss-ldap (Ubuntu Precise)
 Assignee: (unassigned) = Louis Bouchard (louis-bouchard)

** Changed in: libnss-ldap (Ubuntu Trusty)
 Assignee: (unassigned) = Louis Bouchard (louis-bouchard)

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1366174] Re: apache2 SEGV with multiple SSL sites

2014-10-30 Thread Alex Bligh
This has now been merged into 2.4. See
https://issues.apache.org/bugzilla/show_bug.cgi?id=54357

Any chance this can now be backported to Trusty? The impact is pretty
severe.

** Bug watch added: Apache Software Foundation Bugzilla #54357
   http://issues.apache.org/bugzilla/show_bug.cgi?id=54357

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

Title:
  apache2 SEGV with multiple SSL sites

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

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


[Bug 1381258] Re: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel module failed to build [error: too many arguments to function ‘ip_select_ident’]

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

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

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel
  module failed to build [error: too many arguments to function
  ‘ip_select_ident’]

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

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


[Bug 1379201] Re: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel module failed to build [error: too many arguments to function ‘ip_select_ident’]

2014-10-30 Thread James Page
This issue also impacts the 2.0.2 ovs release provided in the icehouse
cloud-archive for 12.04.

** Also affects: cloud-archive
   Importance: Undecided
   Status: New

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel
  module failed to build [error: too many arguments to function
  ‘ip_select_ident’]

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

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


[Bug 1379201] Re: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel module failed to build [error: too many arguments to function ‘ip_select_ident’]

2014-10-30 Thread James Page
make -C /lib/modules/3.2.0-70-virtual/build 
M=/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux modules
make[1]: Entering directory `/usr/src/linux-headers-3.2.0-70-virtual'
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/actions.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/datapath.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/dp_notify.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/flow.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-gre.o
  CC [M]  
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-internal_dev.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.o
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c: In function 
�~@~Xovs_tnl_send�~@~Y:
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c:586:3: 
warning: passing argument 2 of �~@~X__ip_select_ident�~@~Y makes integer from 
pointer without a cast [enabled by default]
include/net/ip.h:268:6: note: expected �~@~Xint�~@~Y but argument is of type 
�~@~Xstruct dst_entry *�~@~Y
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c:586:3: error: 
too many arguments to function �~@~X__ip_select_ident�~@~Y
include/net/ip.h:268:6: note: declared here
make[2]: *** 
[/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.o] Error 1
make[1]: *** [_module_/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux] 
Error 2
make[1]: Leaving directory `/usr/src/linux-headers-3.2.0-70-virtual'
make: *** [default] Error 2
make: Leaving directory `/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux'

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel
  module failed to build [error: too many arguments to function
  ‘ip_select_ident’]

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

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


[Bug 1381258] Re: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel module failed to build [error: too many arguments to function ‘ip_select_ident’]

2014-10-30 Thread Ronan Lanore
I'm affected by this on precise today :

dpkg -l| grep openvswit
ii  neutron-plugin-openvswitch   1:2014.1.3-0ubuntu1~cloud0Neutron 
is a virtual network service for Openstack - Open vSwitch plugin
ii  neutron-plugin-openvswitch-agent 1:2014.1.3-0ubuntu1~cloud0Neutron 
is a virtual network service for Openstack - Open vSwitch plugin agent
ii  openvswitch-common   2.0.2-0ubuntu0.14.04.1~cloud0 Open 
vSwitch common components
ii  openvswitch-datapath-dkms2.0.2-0ubuntu0.14.04.1~cloud0 Open 
vSwitch datapath module source - DKMS version
ii  openvswitch-switch   2.0.2-0ubuntu0.14.04.1~cloud0 Open 
vSwitch switch implementations

/var/lib/dkms/openvswitch/2.0.2/build# vi make.log

... ...
make[1]: Entering directory `/usr/src/linux-headers-3.2.0-70-generic'
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/actions.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/datapath.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/dp_notify.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/flow.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-gre.o
  CC [M]  
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-internal_dev.o
  CC [M]  /var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.o
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c: In function 
‘ovs_tnl_send’:
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c:586:3: 
warning: passing argument 2 of ‘__ip_select_ident’ makes integer from pointer 
without a cast [enabled by default]
include/net/ip.h:268:6: note: expected ‘int’ but argument is of type ‘struct 
dst_entry *’
/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.c:586:3: error: 
too many arguments to function ‘__ip_select_ident’
include/net/ip.h:268:6: note: declared here
make[2]: *** 
[/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux/vport-lisp.o] Error 1
make[1]: *** [_module_/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux] 
Error 2
make[1]: Leaving directory `/usr/src/linux-headers-3.2.0-70-generic'
make: *** [default] Error 2
make: Leaving directory `/var/lib/dkms/openvswitch/2.0.2/build/datapath/linux'

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel
  module failed to build [error: too many arguments to function
  ‘ip_select_ident’]

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

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


[Bug 1366174] Re: apache2 SEGV with multiple SSL sites

2014-10-30 Thread Robie Basak
 Any chance this can now be backported to Trusty? The impact is pretty
severe.

It sounds like a good candidate, though I haven't reviewed the patch
yet. I'm away at the moment, so if somebody else wants to work on this
in the meantime, please feel free. The process is documented at
https://wiki.ubuntu.com/StableReleaseUpdates#Procedure.

Otherwise please do poke me in a couple of weeks if I haven't reported
any progress.

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

** Changed in: apache2 (Ubuntu Trusty)
   Status: New = Triaged

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

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

Title:
  apache2 SEGV with multiple SSL sites

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

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


[Bug 1387594] Re: init: symbol lookup error: /lib/powerpc64le-linux-gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

2014-10-30 Thread Louis Bouchard
More research have highlighted what seems like a potential solution :

 * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=727177
  Upgrade of libnss-ldap to 265-1 causes important binaries to 
segfault

The debian bug description is in line with what is described above.  The
version 265-3 should be merged into Vivid, then the specific patch for
this problem will be SRUed into the impacted releases.

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

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

Title:
  init: symbol lookup error: /lib/powerpc64le-linux-
  gnu/libnss_ldap.so.2: undefined symbol: __libc_lock_lock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-ldap/+bug/1387594/+subscriptions

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


[Bug 1387805] [NEW] docker.io containers cannot use local dnsmasq

2014-10-30 Thread Horst Schirmeier
Public bug reported:

docker.io (1.0.1~dfsg1-0ubuntu1~ubuntu0.14.04.1 from trusty-updates)
containers fail to resolve host names if dnsmasq is used in the host
system:

$ docker build -t some-image
Sending build context to Docker daemon 4.096 kB
Sending build context to Docker daemon 
Step 0 : FROM ubuntu:utopic
Pulling repository ubuntu
277eb4304907: Download complete 
511136ea3c5a: Download complete 
e12c576ad8a1: Download complete 
102eb2a101b8: Download complete 
530dbbae98a0: Download complete 
37dde56c3a42: Download complete 
8f118367086c: Download complete 
 --- 277eb4304907
Step 1 : MAINTAINER [...]
 --- Running in 0d7110f3c6b3
 --- 6ad364dded22
Removing intermediate container 0d7110f3c6b3
Step 2 : RUN apt-get update
 --- Running in 38995d975211
Err http://archive.ubuntu.com utopic InRelease
Err http://archive.ubuntu.com utopic-updates InRelease
Err http://archive.ubuntu.com utopic-security InRelease  
Err http://archive.ubuntu.com utopic Release.gpg
  Could not resolve 'archive.ubuntu.com'
Err http://archive.ubuntu.com utopic-updates Release.gpg
  Could not resolve 'archive.ubuntu.com'
Err http://archive.ubuntu.com utopic-security Release.gpg
  Could not resolve 'archive.ubuntu.com'
[...]

$ grep nameserver /etc/resolv.conf
nameserver 127.0.1.1

Workaround: Disable dnsmasq by commenting it out the dns=dnsmasq line
in /etc/NetworkManager/NetworkManager.conf and restarting the network-
manager and docker.io services (sudo service network-manager restart 
sudo service docker.io restart). Alternatively enable the commented out
DOCKER_OPTS=--dns 8.8.8.8 --dns 8.8.4.4 line in /etc/default/docker.io
(and also restart the docker.io service). The latter workaround of
course requires the 8.8.8.8 / 8.8.4.4 servers to be reachable from your
network.

See also:
https://stackoverflow.com/questions/25130536/dockerfile-docker-build-cant-download-packages-centos-yum-debian-ubuntu-ap
https://github.com/docker/docker/issues/541
https://stackoverflow.com/questions/24991136/docker-build-could-not-resolve-archive-ubuntu-com-apt-get-fails-to-install-a

** Affects: docker.io (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  docker.io containers cannot use local dnsmasq

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1387805/+subscriptions

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


[Bug 825825] Re: have DNS based verification occur by default

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

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

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

Title:
  have DNS based verification occur by default

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

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


[Bug 1387817] [NEW] New Upstream Version 7.4.1

2014-10-30 Thread Jared Fernandez
Public bug reported:

There is a new upstream version of this package available both on
SourceForge as well as Debian Sid.  It would be nice if it could make it
into Vivid.

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


** Tags: vivid

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

Title:
  New Upstream Version 7.4.1

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

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


[Bug 1287943] Re: vm-builder needs trusty suite

2014-10-30 Thread Mathew Hodson
** Tags removed: verification-needed
** Tags added: verification-needed-saucy

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

Title:
  vm-builder needs trusty suite

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

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


[Bug 1387856] [NEW] package libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2014-10-30 Thread Fernando Hevia
Public bug reported:

Error presented when performing a dist-upgrade from 12.04 LTS to 14.04.1
LTS

# lsb_release -rd
Description:Ubuntu 14.04.1 LTS
Release:14.04


# apt-cache policy libapache2-mod-php5
libapache2-mod-php5:
  Installed: 5.5.9+dfsg-1ubuntu4.5
  Candidate: 5.5.9+dfsg-1ubuntu4.5
  Version table:
 *** 5.5.9+dfsg-1ubuntu4.5 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 
Packages
100 /var/lib/dpkg/status
 5.5.9+dfsg-1ubuntu4 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

Expected the dist-upgrade to complete without issues but it ended with
the following error:

~# do-release-upgrade
Checking for a new Ubuntu release
Get:1 Upgrade tool signature [198 B]
Get:2 Upgrade tool [1,146 kB]
Fetched 1,146 kB in 0s (0 B/s)
authenticate 'trusty.tar.gz' against 'trusty.tar.gz.gpg'
extracting 'trusty.tar.gz'
...
Setting up libapache2-mod-php5 (5.5.9+dfsg-1ubuntu4.5) ...
ucfr: Attempt from package libapache2-mod-php5  to take 
/etc/php5/apache2/php.ini away from package php5-cli
ucfr: Aborting.
dpkg: error processing package libapache2-mod-php5 (--configure):
 subprocess installed post-installation script returned error exit status 4
Errors were encountered while processing:
 libapache2-mod-php5

After the problem report has been sent, please fill out the form in the
automatically opened web browser.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5
ProcVersionSignature: Ubuntu 3.5.0-23.35~precise1-generic 3.5.7.2
Uname: Linux 3.5.0-23-generic x86_64
NonfreeKernelModules: hcpdriver
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
Date: Thu Oct 30 19:27:25 2014
DuplicateSignature: 
package:libapache2-mod-php5:5.5.9+dfsg-1ubuntu4.5:subprocess installed 
post-installation script returned error exit status 4
ErrorMessage: subprocess installed post-installation script returned error exit 
status 4
SourcePackage: php5
Title: package libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 4
UpgradeStatus: Upgraded to trusty on 2014-10-30 (0 days ago)

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


** Tags: amd64 apport-package dist-upgrade 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/1387856

Title:
  package libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 4

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

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


[Bug 1387856] Re: package libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2014-10-30 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/1387856

Title:
  package libapache2-mod-php5 5.5.9+dfsg-1ubuntu4.5 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 4

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

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


[Bug 1370249] Re: 'ascii' codec can't decode byte 0xc3 in position 19027: ordinal not in range(128) (curtin can't handle non-ascii characters in dpkg --list output)

2014-10-30 Thread Brian Murray
Hello Daniel, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: curtin (Ubuntu Trusty)
   Status: New = Fix Committed

** Tags added: verification-needed

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

Title:
  'ascii' codec can't decode byte 0xc3 in position 19027: ordinal not in
  range(128) (curtin can't handle non-ascii characters in dpkg --list
  output)

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

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


[Bug 1378910] Re: Call the install log 'install log' rather than 'curtin log'

2014-10-30 Thread Brian Murray
Hello Jason, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  Call the install log 'install log' rather than 'curtin log'

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

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


[Bug 1313550] Re: ping does not work as a normal user on trusty tarball cloud images.

2014-10-30 Thread Brian Murray
Hello Clint, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags removed: verification-done

** Tags added: verification-needed

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

Title:
  ping does not work as a normal user on trusty tarball cloud images.

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

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


[Bug 1328521] Re: curtin hook does not execute /opt/curtin/finalize

2014-10-30 Thread Brian Murray
Hello Scott, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  curtin hook does not execute /opt/curtin/finalize

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

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


[Bug 1373137] Re: need to run update-grub when grub-install

2014-10-30 Thread Brian Murray
Hello Scott, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  need to run update-grub when grub-install

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

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


[Bug 1382632] Re: Insecure key file permissions

2014-10-30 Thread Brian Murray
Hello Andreas, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  Insecure key file permissions

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

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


[Bug 1386394] Re: SRU: catch 14.04 up with curtin trunk features

2014-10-30 Thread Brian Murray
Hello Scott, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  SRU: catch 14.04 up with curtin trunk features

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

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


[Bug 1386275] Re: failure with utopic level lsblk. should use --output, not --out.

2014-10-30 Thread Brian Murray
Hello Scott, or anyone else affected,

Accepted curtin into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.04.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

** Tags added: verification-needed

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

Title:
  failure with utopic level lsblk. should use --output, not --out.

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

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


[Bug 1386394] Re: SRU: catch 14.04 up with curtin trunk features

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  SRU: catch 14.04 up with curtin trunk features

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

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


[Bug 1382632] Re: Insecure key file permissions

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  Insecure key file permissions

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

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


[Bug 1370249] Re: 'ascii' codec can't decode byte 0xc3 in position 19027: ordinal not in range(128) (curtin can't handle non-ascii characters in dpkg --list output)

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  'ascii' codec can't decode byte 0xc3 in position 19027: ordinal not in
  range(128) (curtin can't handle non-ascii characters in dpkg --list
  output)

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

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


[Bug 1382774] Re: Postgresql installation for MAAS fails on locales missing language packs

2014-10-30 Thread Christian Reis
** Changed in: maas
Milestone: next = 1.7.1

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

Title:
  Postgresql installation for MAAS fails on locales missing language
  packs

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

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


[Bug 1386275] Re: failure with utopic level lsblk. should use --output, not --out.

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  failure with utopic level lsblk. should use --output, not --out.

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

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


[Bug 1378910] Re: Call the install log 'install log' rather than 'curtin log'

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  Call the install log 'install log' rather than 'curtin log'

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

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


[Bug 1313550] Re: ping does not work as a normal user on trusty tarball cloud images.

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  ping does not work as a normal user on trusty tarball cloud images.

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

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


[Bug 1328521] Re: curtin hook does not execute /opt/curtin/finalize

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  curtin hook does not execute /opt/curtin/finalize

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

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


[Bug 1373137] Re: need to run update-grub when grub-install

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/curtin

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

Title:
  need to run update-grub when grub-install

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

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


[Bug 1371362] Re: Update chkrootkit to 0.50

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/vivid/chkrootkit/vivid-
proposed

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

Title:
  Update chkrootkit to 0.50

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

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


[Bug 696318] Re: Starting VMs on qcow2 format with base images in level three fails

2014-10-30 Thread Serge Hallyn
As it turns out, this is actually a user error.

When creating the level2.img and level3.img, you must specify the
backing store type, because libvirt won't automatically detect those for
safety reasons.  So you should do:

qemu-img create -f qcow2 -o backing_fmt=qcow2 -b level1.img level2.img
qemu-img create -f qcow2 -o backing_fmt=qcow2 -b level2.img level3.img

After doing that, boot succeeds on my laptop.

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

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

Title:
  Starting VMs on qcow2 format with base images in level three fails

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

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


[Bug 1387875] [NEW] docker.io host name resolution fails after switching networks

2014-10-30 Thread Horst Schirmeier
Public bug reported:

When switching networks, docker.io (1.0.1~dfsg1-0ubuntu1~ubuntu0.14.04.1
from trusty-updates) does not notice when the contents of
/etc/resolv.conf change. This is a quite common situation when using a
notebook with dnsmasq disabled in
/etc/NetworkManager/NetworkManager.conf. (Using dnsmasq together with
docker.io is out of the question due to bug #1387805.)

In the following example, 99.99.99.99 is a placeholder for the DNS
server address in the network the notebook was connected to previously.
This IP is not mentioned in /etc/resolv.conf anymore. From the current
network, this IP is not reachable.

$ docker build some-image
Sending build context to Docker daemon 4.096 kB
Sending build context to Docker daemon 
Step 0 : FROM ubuntu:utopic
Pulling repository ubuntu
2014/10/30 21:55:00 Get https://index.docker.io/v1/repositories/ubuntu/images: 
dial tcp: lookup index.docker.io on 99.99.99.99:53: no answer from server
make: *** [all] Error 1

Expected behavior: docker should be automatically notified when
/etc/resolv.conf changes, and use the appropriate DNS server for the
network we're currently connected to.

Workaround:

$ sudo service docker.io restart
docker.io stop/waiting
docker.io start/running, process 2369
$ docker build some-image
Sending build context to Docker daemon 4.096 kB
Sending build context to Docker daemon 
Step 0 : FROM ubuntu:utopic
Pulling repository ubuntu
277eb4304907: Download complete 
511136ea3c5a: Download complete 
[...]

** Affects: docker.io (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  docker.io host name resolution fails after switching networks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1387875/+subscriptions

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


[Bug 1386275] Re: failure with utopic level lsblk. should use --output, not --out.

2014-10-30 Thread Brian Murray
Hello Scott, or anyone else affected,

Accepted curtin into utopic-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.10.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

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

Title:
  failure with utopic level lsblk. should use --output, not --out.

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

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


[Bug 1378910] Re: Call the install log 'install log' rather than 'curtin log'

2014-10-30 Thread Brian Murray
Hello Jason, or anyone else affected,

Accepted curtin into utopic-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.10.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

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

Title:
  Call the install log 'install log' rather than 'curtin log'

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

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


[Bug 1382632] Re: Insecure key file permissions

2014-10-30 Thread Brian Murray
Hello Andreas, or anyone else affected,

Accepted curtin into utopic-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/curtin/0.1.0~bzr195-0ubuntu1~14.10.1
in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

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

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

Title:
  Insecure key file permissions

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

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


[Bug 1386275] Re: failure with utopic level lsblk. should use --output, not --out.

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/curtin

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

Title:
  failure with utopic level lsblk. should use --output, not --out.

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

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


[Bug 1371362] Re: Update chkrootkit to 0.50

2014-10-30 Thread Launchpad Bug Tracker
This bug was fixed in the package chkrootkit - 0.50-2ubuntu1

---
chkrootkit (0.50-2ubuntu1) vivid; urgency=medium

  * Resynchronise with Debian. Remaining changes: (LP: #1371362)
- debian/patches/fix-stack-smash.patch: Fix segfault when running
  chkrootkit.

chkrootkit (0.50-2) unstable; urgency=medium

  * [75640f4] Switch to dpkg-source 3.0 (quilt) format and apply patches
(Closes: #754684)

chkrootkit (0.50-1) unstable; urgency=low

  * [08e52cd] Imported Upstream version 0.50
  * [64dfe63] Refreshed patches
  * [c2c3369] Fix FTBFS on kfreebsd-* (Closes: #754684)
  * [2c99320] Fixed the suspect PHP files check (Closes: #705946)
Thanks to Andreas Stempfhuber
  * [6763191] Use hardening flags
 -- Marc Deslauriers marc.deslauri...@ubuntu.com   Thu, 30 Oct 2014 16:26:31 
-0400

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

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

Title:
  Update chkrootkit to 0.50

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

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


[Bug 1382632] Re: Insecure key file permissions

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/curtin

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

Title:
  Insecure key file permissions

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

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


[Bug 1378910] Re: Call the install log 'install log' rather than 'curtin log'

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/curtin

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

Title:
  Call the install log 'install log' rather than 'curtin log'

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

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


[Bug 1387889] [NEW] Sync python-greenlet 0.4.5-1 (main) from Debian unstable (main)

2014-10-30 Thread Artur Rona
Public bug reported:

Please sync python-greenlet 0.4.5-1 (main) from Debian unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
  * d/p/arm32-{always-use-frame-pointer,unoptimize-return-value}: adjust
armhf-specific platform code to fix armhf FTBFS in Utopic rebuild
test; cherry-picked from upstream (LP: #1379297).
  * d/p/arm32-{always-use-frame-pointer,unoptimize-return-value}: adjust
armhf-specific platform code to fix armhf FTBFS in Utopic rebuild
test; cherry-picked from upstream (LP: #1379297).
  * No change rebuild to drop python3.3 compiled extension.

Patch is already fixed upstream.

Changelog entries since current vivid version 0.4.2-1ubuntu1:

python-greenlet (0.4.5-1) unstable; urgency=medium

  * New upstream release, fixes crashes on ARM and MIPS (closes:
751498).

 -- Laszlo Boszormenyi (GCS) g...@debian.org  Sat, 18 Oct 2014 16:43:22
+

python-greenlet (0.4.4-1) unstable; urgency=low

  * New upstream release.
  * Separate documentation in packages (closes: #763361).
  * Make watch more generic.
  * Update Standards-Version to 3.9.6 .

 -- Laszlo Boszormenyi (GCS) g...@debian.org  Wed, 08 Oct 2014 16:34:57
+

** Affects: python-greenlet (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: python-greenlet (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  Sync python-greenlet 0.4.5-1 (main) from Debian unstable (main)

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

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


[Bug 1387881] Re: qemu fails to recognize full virtualization

2014-10-30 Thread Serge Hallyn
Also please show the results of:

dpkg -l | grep qemu

Does a reboot or a 'rmmod kvm_intel kvm;  modprobe kvm kvm_intel' fix
it?

You said earlier (in irc) that 'sudo apt-get install qemu-kvm' fixes it.
Is that still the case?

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

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

Title:
  qemu fails to recognize full virtualization

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

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


[Bug 1387881] Re: qemu fails to recognize full virtualization

2014-10-30 Thread Adam Stokes
So adding qemu-kvm fixed the issue with running nested KVM. I think
though the problem still exists on a non nested environment.

I'll get with the user who encountered this and see if I can get some
more logs.

Thanks

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

Title:
  qemu fails to recognize full virtualization

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

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


[Bug 1387881] Re: qemu fails to recognize full virtualization

2014-10-30 Thread Adam Stokes
David,

Could you attach the collection of:

apport-collect 1387881

Also the output of:

dpkg -l |grep qemu

On the affected NUCs if the problem still persists?

Thanks,
Adam

** Tags added: kernel-unable-to-test-upstream

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

Title:
  qemu fails to recognize full virtualization

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

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


[Bug 1387897] [NEW] Sync python-gevent 1.0.1-1 (main) from Debian unstable (main)

2014-10-30 Thread Artur Rona
Public bug reported:

Please sync python-gevent 1.0.1-1 (main) from Debian unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
  * Fix build failure with python2.7 and PEP 466.
  * Fix build failure with python2.7 and PEP 466.
Debian has merged Ubuntu changes.

Changelog entries since current vivid version 1.0-2ubuntu1:

python-gevent (1.0.1-1) unstable; urgency=low

  * New upstream release, fixes thread switch detection (closes: #694750).
  * Fix sphinx build problem (closes: #700731).
  * Tighten greenlet dependency (closes: #747283).
  * Update Standards-Version to 3.9.6 .
  * Sync with Ubuntu.

  [ Matthias Klose d...@ubuntu.com ]
  * Fix build failure with python2.7 and PEP 466 (closes: #764499).

 -- Laszlo Boszormenyi (GCS) g...@debian.org  Wed, 08 Oct 2014 16:20:29
+

** Affects: python-gevent (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: python-gevent (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  Sync python-gevent 1.0.1-1 (main) from Debian unstable (main)

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

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


[Bug 1387898] [NEW] Sync python-formencode 1.2.6-2 (main) from Debian unstable (main)

2014-10-30 Thread Artur Rona
Public bug reported:

Please sync python-formencode 1.2.6-2 (main) from Debian unstable (main)

Explanation of the Ubuntu delta and why it can be dropped:
  * Remove tests that fail without network connection. See #738722.
  * Remove tests that fail without network connection. See #738722.
  * Remove tests that fail without network connection. See #738722.
  * Rebuild to drop python2.6 dependencies.
  * Rebuild to drop python2.6 dependencies.
  * Rebuild to drop python2.6 dependencies.
  * Rebuild to drop python2.6 dependencies.
  * Rebuild to drop python2.6 dependencies.
  * Merge from debian unstable (LP: #789176).  Remaining changes:
- debian/control: Suggest python-dns.
Debian has merged Ubuntu changes.

Changelog entries since current vivid version 1.2.6-1ubuntu1:

python-formencode (1.2.6-2) unstable; urgency=medium

  * Team upload

  [ Scott Kitterman ]
  * Add debian/patches/dns_test_disable.diff to disable tests that require DNS
access to run (Closes: #738722)
- Thanks to Andrey Rahmatullin for the patch
  * Bump standards version to 3.9.6 without further change

 -- Scott Kitterman sc...@kitterman.com  Sun, 28 Sep 2014 19:01:14
-0400

** Affects: python-formencode (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: python-formencode (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  Sync python-formencode 1.2.6-2 (main) from Debian unstable (main)

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Okay,

Finally I was able to reproduce the problem using:

#!/bin/bash

while true; do

crm node standby clustertrusty01
sleep 7
crm node online clustertrusty01
sleep 7

crm node standby clustertrusty02
sleep 7
crm node online clustertrusty02
sleep 7

crm node standby clustertrusty03
sleep 7
crm node online clustertrusty03
sleep 7

done

And the attached CIB (cib.xml).

 could generate the following crashes:

root@clustertrusty01:/var/crash# ls -lah -1 | grep usr 
-rw-r- 1 root root 257K Oct 30 01:18 _usr_lib_pacemaker_lrmd.0.crash 
-rw-r- 1 root root 434K Oct 30 01:18 _usr_lib_pacemaker_stonithd.0.crash 

root@clustertrusty02:/var/crash# ls -lah -1 | grep usr 
-rw-r- 1 root root 257K Oct 30 01:20 _usr_lib_pacemaker_lrmd.0.crash 
-rw-r- 1 root root 441K Oct 30 01:21 _usr_lib_pacemaker_stonithd.0.crash 

root@clustertrusty03:/var/crash# ls -lah -1 | grep usr 
-rw-r- 1 root root 258K Oct 30 01:21 _usr_lib_pacemaker_lrmd.0.crash 
-rw-r- 1 root root 434K Oct 30 01:18 _usr_lib_pacemaker_stonithd.0.crash 

root@clustertrusty04:/var/crash# ls -lah -1 | grep usr 
-rw-r- 1 root root 443K Oct 30 01:21 _usr_lib_pacemaker_stonithd.0.crash 


** Changed in: pacemaker (Ubuntu)
 Assignee: (unassigned) = Rafael David Tinoco (inaddy)

** Attachment added: cib.xml
   
https://bugs.launchpad.net/ubuntu/+source/pacemaker/+bug/1368737/+attachment/4249543/+files/cib.xml

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Analyzing the stacktrace for stonithd:

(gdb) bt
#0  0x7fed094febb9 in __GI_raise (sig=sig@entry=6) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x7fed09501fc8 in __GI_abort () at abort.c:89
#2  0x7fed0a15a6c9 in crm_abort (file=0x7fed0a17e4bb logging.c,
function=0x7fed0a17f790 __PRETTY_FUNCTION__.22958 crm_glib_handler, 
line=63,
assert_condition=0x7fed0af9f2c0 Source ID 21 was not found when attempting 
to remove it,
do_core=optimized out, do_fork=optimized out) at utils.c:1118
#3  0x7fed0920fae1 in g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7fed0920fd72 in g_log () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7fed09207c5c in g_source_remove () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7fed09d23ef5 in stonith_action_clear_tracking_data 
(action=action@entry=0x7fed0afc6b00)
at st_client.c:536
#7  0x7fed09d23f2d in stonith_action_destroy (action=0x7fed0afc6b00) at 
st_client.c:557
#8  0x7fed0a172cd9 in child_waitpid (child=child@entry=0x7fed0afded70, 
flags=flags@entry=1)
at mainloop.c:948
#9  0x7fed0a172fce in child_death_dispatch (signal=optimized out) at 
mainloop.c:962
#10 0x7fed0a171de7 in crm_signal_dispatch (source=0x7fed0afb0920, 
callback=optimized out,
userdata=optimized out) at mainloop.c:275
#11 0x7fed09208e04 in g_main_context_dispatch () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#12 0x7fed09209048 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#13 0x7fed0920930a in g_main_loop_run () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#14 0x7fed0a5bd2a9 in main (argc=optimized out, argv=optimized out) at 
main.c:1136

Based on this stack trace:

crm_glib_handler -  crm_abort - abort

I could see one upstream fix that is exactly about this problem
(pacemaker mailing list):

http://oss.clusterlabs.org/pipermail/pacemaker/2014-October/022690.html

Explaining that this change (in glib):

https://github.com/GNOME/glib/commit/393503ba5bdc7c09cd46b716aaf3d2c63a6c7f9c
(seen first at version 2.39.91 - Trusty version is 2.40.2-0ubuntu1)

Caused g_source_remove() (frame #5 in the stacktrace, part of libglib) to 
misbehave. 
(glib is using a hash table lookup to find sources, and not an iterator.. and 
it is also 
returning NULL if source was destroyed)

corosync reports the following error on this occasions:


lrmd[1632]:error: crm_abort: crm_glib_handler: Forked child 1840 to 
record non-fatal assert at logging.c:73 : Source ID 51 was not found when 
attempting to remove it
lrmd[1632]:crit: crm_glib_handler: GLib: Source ID 51 was not found 
when attempting to remove it


this is happening because one resource is being removed twice and this
can't be done with newer libglibs.

the following upstream fix handle this problem:

From 568e41db929a34106c8c2ff7c48716ab5c13ef49 Mon Sep 17 00:00:00 2001
From: Andrew Beekhof and...@beekhof.net
Date: Mon, 13 Oct 2014 13:30:58 +1100
Subject: [PATCH] Fix: lrmd: Prevent glib assert triggered by timers being 
removed from mainloop more than once
  
I'll be providing a PPA (soon) with this fix so I can get users/community 
feedback on the resolution. 

Thank you

Rafael Tinoco

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Trusty is affected and Precise is NOT.

 libglib2.0-0 | 2.24.0-0ubuntu4 | lucid| amd64, armel, i386, ia64, 
powerpc, sparc
 libglib2.0-0 | 2.24.1-0ubuntu2 | lucid-updates| amd64, armel, i386, ia64, 
powerpc, sparc
 libglib2.0-0 | 2.32.1-0ubuntu2 | precise  | amd64, armel, armhf, i386, 
powerpc
 libglib2.0-0 | 2.32.4-0ubuntu1 | precise-updates  | amd64, armel, armhf, i386, 
powerpc
 libglib2.0-0 | 2.40.0-2| trusty   | amd64, arm64, armhf, i386, 
powerpc, ppc64el
 libglib2.0-0 | 2.40.2-0ubuntu1 | trusty-updates   | amd64, arm64, armhf, i386, 
powerpc, ppc64el
 libglib2.0-0 | 2.41.5-1| ubuntu-rtm/14.09 | amd64, armhf, i386
 libglib2.0-0 | 2.42.0-2| utopic   | amd64, arm64, armhf, i386, 
powerpc, ppc64el
 libglib2.0-0 | 2.42.0-2| vivid| amd64, arm64, armhf, i386, 
powerpc, ppc64el

since libglib2 started using the hashtable lookup in version 2.39.91 and 
precise is still
using libglib2 2.32.4.

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/pkg_rc1_bzr3285

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

Title:
  LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

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

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


[Bug 1382190] Re: LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

2014-10-30 Thread Launchpad Bug Tracker
** Branch linked: lp:~andreserl/maas/pkg_rc1_bzr3294

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

Title:
  LXCs assigned IPs by MAAS DHCP lack DNS PTR entries

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

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


[Bug 1316579] Re: --upload-tools doesn't work with bootstrap on armhf machine managed by maas

2014-10-30 Thread Andrew Wilkins
I'm pretty sure this is fixed in 1.21-alpha1. Can someone with an ARM
machine please test it?

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

Title:
  --upload-tools doesn't work with bootstrap on armhf machine managed by
  maas

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1316579/+subscriptions

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Trusty Fix.

** Patch added: trusty_pacemaker_1.1.10+git20130802-1ubuntu2.2.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/pacemaker/+bug/1368737/+attachment/4249612/+files/trusty_pacemaker_1.1.10%2Bgit20130802-1ubuntu2.2.debdiff

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Utopic Fix.

** Patch added: utopic_pacemaker_1.1.10+git20130802-4ubuntu4.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/pacemaker/+bug/1368737/+attachment/4249614/+files/utopic_pacemaker_1.1.10%2Bgit20130802-4ubuntu4.debdiff

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Running testcase for some time and couldn't get any core dump...

Services seem stable:

Every 1.0s: crm_mon -1
Fri Oct 31 00:52:57 2014

Last updated: Fri Oct 31 00:52:57 2014
Last change: Fri Oct 31 00:31:22 2014 via crm_attribute on clustertrusty04
Stack: corosync
Current DC: clustertrusty02 (12) - partition with quorum
Version: 1.1.10-42f2063
4 Nodes configured
6 Resources configured


Node clustertrusty02 (12): standby
Online: [ clustertrusty01 clustertrusty03 clustertrusty04 ]

 fenceclustertrusty01   (stonith:fence_virsh):  Started clustertrusty04
 fenceclustertrusty02   (stonith:fence_virsh):  Started clustertrusty03
 fenceclustertrusty03   (stonith:fence_virsh):  Started clustertrusty01
 fenceclustertrusty04   (stonith:fence_virsh):  Started clustertrusty01
 Resource Group: postfix
 vippostfix (ocf::heartbeat:IPaddr2):   Started clustertrusty01
 initpostfix(lsb:postfix):  Started clustertrusty01

At this time...

stonith_action_clear_tracking_data is calling g_source_remove and 
there are no problems, even when trying to remove an already
removed timer.

Judging by the developer comments on that:


The glib behaviour on unbuntu seems reasonable, removing a source multiple 
times IS a valid error.
I need the stack trace to know where/how this situation can occur in pacemaker.


Those error messages from glib (not being able to remove the resource), 
that are still there :


Oct 31 00:30:20 [2054] clustertrusty03 stonith-ng:error: crm_abort: 
crm_glib_handler: Forked child 2197 to record non-fatal assert at 
logging.c:63 : Source ID 15 was not found when attempting to remove it


Can be interpreted as normal and non-fatal.

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
Vivid might also need a fix/update to proper handle this.

** Changed in: pacemaker (Ubuntu)
   Status: Confirmed = In Progress

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1368737] Re: Pacemaker can seg fault on crm node online/standy

2014-10-30 Thread Rafael David Tinoco
I'm asking for sponsorship for this...

Meanwhile I have created one PPA to be used:

https://launchpad.net/~inaddy/+archive/ubuntu/lp1368737

# add-apt-repository ppa:inaddy/lp1368737 
# apt-get update 
# apt-get install pacemaker 

The right package version, for now, will be:

1.1.10+git20130802-1ubuntu2.2~lp1368737~1 (for Trusty) 
1.1.10+git20130802-4ubuntu4~lp1368737~1 (for Utopic) 

And they are going to be replaced by the appropriate version in case the 
stable release update proposal is accepted into -updates repository. 

Please provide me feedback regarding the fix (if it solved the problem 
for you). 

Thank you very much

Rafael Tinoco

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

Title:
  Pacemaker can seg fault on crm node online/standy

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

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


[Bug 1381258] Re: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel module failed to build [error: too many arguments to function ‘ip_select_ident’]

2014-10-30 Thread Brad Cowie
The definition of __ip_select_ident() has changed in newer kernels and
this new definition has just been backported into stable kernels.

There is a patch in openvswitch that fixes this issue
(http://openvswitch.org/pipermail/dev/2014-September/045479.html),
unfortunately the patch hasn't made it into a stable release yet.

Someone might want to pull that patch into the ubuntu package so that it
builds properly, you could always apply it manually or run the latest
git version of openvswitch if you want to just get openvswitch working
on your local machine.

I can confirm rolling your kernel back to 3.2.0-69-generic is a
workaround for now and openvswitch will successfully build against this.

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.3: openvswitch kernel
  module failed to build [error: too many arguments to function
  ‘ip_select_ident’]

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

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


[Bug 1330410] Re: All keyboard types in Keyboard layout are not localized during installation

2014-10-30 Thread Anthony Wong
** Also affects: console-setup (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  All keyboard types in Keyboard layout are not localized during
  installation

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

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


[Bug 1330410] Re: All keyboard types in Keyboard layout are not localized during installation

2014-10-30 Thread Anthony Wong
translation #9 to english:

keyboard layouts shown are related to /var/lib/dpkg/info/keyboard-
configuration.config, and localized strings are stored in this file. In
14.10, everything in the file is English, no strings have been
localized.

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

Title:
  All keyboard types in Keyboard layout are not localized during
  installation

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

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


[Bug 1242112] Re: Shutdown/restart dialogue is not working if Cairo-Dock and its Launcher-API-Deamon are running or if another app is registered to LauncherEntry interface of Unity DBus

2014-10-30 Thread william fischer
I ran into this same problem with 14.04 and 14.10. In 14.10, instead of
the usual symptom of no shutdown/restart pop up, it restarts the session
leaving me at the log in screen. I have to kill the cairo-dock-launcher-
API-daemon process in order to get the shutdown/restart dialog.

I made the same edits noted in post #17 with the sleep value of 15,
rebooted and it seems to be working again.

Linux UBLNX415DK 3.16.0-24-generic #32-Ubuntu SMP Tue Oct 28 13:07:32 UTC 2014 
x86_64 x86_64 x86_64 GNU/Linux
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic


Thanks

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

Title:
  Shutdown/restart dialogue is not working if Cairo-Dock and its
  Launcher-API-Deamon are running or if another app is registered to
  LauncherEntry interface of Unity DBus

To manage notifications about this bug go to:
https://bugs.launchpad.net/cairo-dock-core/+bug/1242112/+subscriptions

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


[Bug 1383909] Re: Bumblebee should recommend libgl1-mesa-glx:i386

2014-10-30 Thread Vincent Cheng
Done in https://github.com/Bumblebee-Project/bumblebee-
ppa/commit/319e29fa6418b368ed93eb51d5c5d0590e11eda4

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

** Changed in: primus (Ubuntu)
 Assignee: (unassigned) = Vincent Cheng (vincent-c)

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

Title:
  Bumblebee should recommend libgl1-mesa-glx:i386

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

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


[Bug 1323255] Re: Usability: cryptsetup is missing from default install

2014-10-30 Thread Dylan Alan
I couldn't agree more I thought I lost 3/4 full TB, my heart fell to
the floor. Luckily this isn't my first rodeo and I noticed Failed to
execute child process cryptsetup (No such file or directory) leading
me to believe that it was not installed. I just made the whole family
take the plunge into Ubuntu after multi systems (windows) started to
fail. This can not happen to them, and should be an no brainer. Please
fix!

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

Title:
  Usability: cryptsetup is missing from default install

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

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


[Bug 1323255] Re: Usability: cryptsetup is missing from default install

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

** Changed in: unity-settings-daemon (Ubuntu)
   Status: New = Confirmed

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

Title:
  Usability: cryptsetup is missing from default install

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-10-30 Thread Howy
It can be reproduce on HP NB.

The log file collected by this command : 
nvidia-bug-report.sh

VGA: GeForce 830M
VGA Version: 340.32
VBIOS Version: 82.08.14.00.69
Ubuntu : 14.04 (3.13.0-37-generic)


** Attachment added: nvidia-bug-report.log.gz
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1220426/+attachment/4248944/+files/nvidia-bug-report.log.gz

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-10-30 Thread Howy
** Attachment added: nvidia-bug-report.log.gz
   
https://bugs.launchpad.net/ubuntu/+source/nvidia-prime/+bug/1220426/+attachment/4248945/+files/nvidia-bug-report.log.gz

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

Title:
  [nvidia-prime]Freeze while using touchpad

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

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


[Bug 1363877] Re: mencoder package not available in 14.10

2014-10-30 Thread Andrew Fossey
This fault needs to be fixed ASAP.

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

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

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

Title:
  mencoder package not available in 14.10

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

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


[Bug 1387528] [NEW] package icedtea-netx:amd64 1.5.1-1ubuntu1 failed to install/upgrade: aliprosessi komentotiedosto post-installation asennettu palautti virhetilakoodin 2

2014-10-30 Thread Heikki Moisander
Public bug reported:

Sorry, not able to add much comment - this report is originated
automatically

I tried to install java support when I needed it in the middle of
session in certain www site. As I was  logged in to service requiring
relatively demanding authentication using keys provided by a bank (not
the bank site though). I tried to install java without logging out and
without shutting down the browser (google chrome). I failed in every way
and have not used the site ever since though... so right now I don't
know my browser's current java support status .

ProblemType: Package
DistroRelease: Ubuntu 14.10
Package: icedtea-netx:amd64 1.5.1-1ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
Uname: Linux 3.16.0-24-generic x86_64
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
Date: Wed Oct 29 11:52:51 2014
DuplicateSignature: package:icedtea-netx:amd64:1.5.1-1ubuntu1:aliprosessi 
komentotiedosto post-installation asennettu palautti virhetilakoodin 2
ErrorMessage: aliprosessi komentotiedosto post-installation asennettu palautti 
virhetilakoodin 2
InstallationDate: Installed on 2014-10-25 (4 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
SourcePackage: icedtea-web
Title: package icedtea-netx:amd64 1.5.1-1ubuntu1 failed to install/upgrade: 
aliprosessi komentotiedosto post-installation asennettu palautti 
virhetilakoodin 2
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: icedtea-web (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package utopic

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

Title:
  package icedtea-netx:amd64 1.5.1-1ubuntu1 failed to install/upgrade:
  aliprosessi komentotiedosto post-installation asennettu palautti
  virhetilakoodin 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/icedtea-web/+bug/1387528/+subscriptions

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


[Bug 1356113] Re: PHP5 session clean cron job causes OOM

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

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

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

Title:
  PHP5 session clean cron job causes OOM

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

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


[Bug 1291939] Re: window borders are now missing meaning overlapping windows of the same type have no separation, and no separation from the background

2014-10-30 Thread samquad
I have also a theme problem.
After testing environment kubuntu I removed kubuntu desktop because I prefer 
unity .
I use applications like gwenview using KDE dependencies in ubuntu desktop unity 
.
I uninstalled KDE , but since I have problems in my display unity with the 
environment theme ambiance was certainly modified by installing KDE:
- The menu at the top right (to stop the pc or close the session)have the text 
black on a dark background
-The Icons that represent files in file explorer are those of kde .

Here is a link to the screenshot of my screen unity copy:
https://www.dropbox.com/sc/1wipwhsclmpqvis/AAB5chuMDk4Tlj4cwvQorOJ7a?no_redirect_to_colle

I tried to reapply the ambiance default theme with Unity Tweak Tool but
it changes nothing.

Can you help me to correctly reset the ambiance theme of unity .

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

Title:
  window borders are now missing meaning overlapping windows of the same
  type have no separation, and no separation from the background

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

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


[Bug 1363877] Re: mencoder package not available in 14.10

2014-10-30 Thread Andrew Fossey
** Tags added: multiple packages

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

Title:
  mencoder package not available in 14.10

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

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


[Bug 1368815] Re: qemu-img convert intermittently corrupts output images

2014-10-30 Thread Launchpad Bug Tracker
This bug was fixed in the package qemu - 2.1+dfsg-4ubuntu7

---
qemu (2.1+dfsg-4ubuntu7) vivid; urgency=medium

  * Apply two patches to fix intermittent qemu-img corruption
(LP: #1368815)
- 501-block-raw-posix-fix-disk-corruption-in-try-fiemap
- 502-block-raw-posic-use-seek-hole-ahead-of-fiemap
 -- Serge Hallyn serge.hal...@ubuntu.com   Wed, 29 Oct 2014 22:31:43 -0500

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

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

Title:
  qemu-img convert intermittently corrupts output images

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

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


[Bug 1387528] Re: package icedtea-netx:amd64 1.5.1-1ubuntu1 failed to install/upgrade: aliprosessi komentotiedosto post-installation asennettu palautti virhetilakoodin 2

2014-10-30 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package icedtea-netx:amd64 1.5.1-1ubuntu1 failed to install/upgrade:
  aliprosessi komentotiedosto post-installation asennettu palautti
  virhetilakoodin 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/icedtea-web/+bug/1387528/+subscriptions

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


[Bug 1332100] Re: Colour combination makes qt tooltips unreadable in Unity

2014-10-30 Thread samquad
I have also a theme problem.
Ubuntu 14.04 64bits.
After testing environment kubuntu I removed kubuntu desktop because I prefer 
unity .
I use applications like gwenview using KDE dependencies in ubuntu desktop unity 
.
I uninstalled KDE , but since I have problems in my display unity with the 
environment theme ambiance was certainly modified by installing KDE:
- The menu at the top right (to stop the pc or close the session)have the text 
black on a dark background
-The Icons that represent files in file explorer are those of kde .

Here is a link to the screenshot of my screen unity copy:
https://www.dropbox.com/sc/1wipwhsclmpqvis/AAB5chuMDk4Tlj4cwvQorOJ7a?no_redirect_to_colle

I tried to reapply the ambiance default theme with Unity Tweak Tool but
it changes nothing.

Can you help me to correctly reset the ambiance theme of unity .

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

Title:
  Colour combination makes qt tooltips unreadable in Unity

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

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


[Bug 1264694] Re: Menus are in inverted colors (dark grey text on black background)

2014-10-30 Thread samquad
I have also a theme problem on Ubuntu 14.04 64bits.
After testing environment kubuntu I removed kubuntu desktop because I prefer 
unity .
I use applications like gwenview using KDE dependencies in ubuntu desktop unity 
.
I uninstalled KDE , but since I have problems in my display unity with the 
environment theme ambiance was certainly modified by installing KDE:
- The menu at the top right (to stop the pc or close the session)have the text 
black on a dark background
-The Icons that represent files in file explorer are those of kde .

Here is a link to the screenshot of my screen unity copy:
https://www.dropbox.com/sc/1wipwhsclmpqvis/AAB5chuMDk4Tlj4cwvQorOJ7a?no_redirect_to_colle

I tried to reapply the ambiance default theme with Unity Tweak Tool but
it changes nothing.

Can you help me to correctly reset the ambiance theme of unity .

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

Title:
  Menus are in inverted colors (dark grey text on black background)

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

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


[Bug 1273234] Re: 8086:a011 [HP Mini 110-3100] Can't control screen brightness

2014-10-30 Thread Emi
Antonio's link did the trick for me. I'm on a HP mini 110 3130br with
Lubuntu 14.04

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

Title:
  8086:a011 [HP Mini 110-3100] Can't control screen brightness

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

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


  1   2   3   4   5   6   7   8   9   10   >