[Bug 1541678] Re: if-post-down.d/vlan and if-pre-up.d/vlan should support en* interfaces

2016-02-03 Thread Haw Loeung
Attached patch makes it work when interface names are enpXsY. It doesn't
cover the other cases as per link to PredictableNetworkInterfaceNames.

** Patch added: "enp1s0.patch"
   
https://bugs.launchpad.net/ubuntu/+source/vlan/+bug/1541678/+attachment/4563451/+files/enp1s0.patch

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

Title:
  if-post-down.d/vlan and if-pre-up.d/vlan should support en* interfaces

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

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


[Bug 1211110] Re: network manager openvpn dns push data not updating system DNS addresses

2016-02-03 Thread Sam
I had some dns leaks in 16.04 as I posted above but it seems the updates
over the last few days fixed them. Wished I would have tested for leaks
as the updates were coming in.

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

Title:
  network manager openvpn dns push data not updating system DNS
  addresses

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

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


[Bug 1023584] Re: ifconfig dies with "stack smashing detected" when configuring inet6 address 11.04

2016-02-03 Thread Launchpad Bug Tracker
[Expired for net-tools (Ubuntu) because there has been no activity for
60 days.]

** Changed in: net-tools (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  ifconfig dies with "stack smashing detected" when configuring inet6
  address 11.04

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

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


[Bug 674838] Re: ifconfig(8) doesn't play nice with NetworkManager

2016-02-03 Thread Launchpad Bug Tracker
[Expired for net-tools (Ubuntu) because there has been no activity for
60 days.]

** Changed in: net-tools (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  ifconfig(8) doesn't play nice with NetworkManager

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

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


[Bug 1541678] [NEW] if-post-down.d/vlan and if-pre-up.d/vlan should support en* interfaces

2016-02-03 Thread Haw Loeung
Public bug reported:

Starting with udev v197, systems now use predictable network interface
names by default[1]. Unfortunately on my system running Xenial alpha2,
it seems vlan doesn't support the generated interface names:

| ubuntu@lagertha:/var/log$ dmesg | grep rename
| [5.101700] igb :01:00.0 enp1s0: renamed from eth0
| [5.502268] igb :02:00.0 enp2s0: renamed from eth1
| [5.526634] igb :04:00.0 enp4s0: renamed from eth3
| [5.550056] igb :03:00.0 enp3s0: renamed from eth2

Looking at the if-pre-up and if-post-down scripts, it seems it's missing
there and only has:

|  eth*.0*|bond*.0*|wlan*.0*|em*.0*|p[0-9]*.0*)
| ...  ;;
|  eth*.*|bond*.*|wlan*.*|em*.*|p[0-9]*.*)
| ...  ;;

"""
What precisely has changed in v197?

The following different naming schemes for network interfaces are now
supported by udev natively:

1. Names incorporating Firmware/BIOS provided index numbers for on-board 
devices (example: eno1)
2. Names incorporating Firmware/BIOS provided PCI Express hotplug slot index 
numbers (example: ens1)
3. Names incorporating physical/geographical location of the connector of the 
hardware (example: enp2s0)
4. Names incorporating the interfaces's MAC address (example: enx78e7d1ea46da)
5. Classic, unpredictable kernel-native ethX naming (example: eth0)
"""

Here's the package versions:

| ubuntu@lagertha:/var/log$ apt-cache policy udev
| udev:
|   Installed: 228-4ubuntu2
|   Candidate: 228-5ubuntu1
|   Version table:
|  228-5ubuntu1 500
| 500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
|  *** 228-4ubuntu2 100
| 100 /var/lib/dpkg/status
| ubuntu@lagertha:/var/log$ apt-cache policy vlan
| vlan:
|   Installed: 1.9-3.2ubuntu1
|   Candidate: 1.9-3.2ubuntu1
|   Version table:
|  *** 1.9-3.2ubuntu1 500
| 500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
| 100 /var/lib/dpkg/status

[1]http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/

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


** Tags: xenial

** Tags added: xenial

** Description changed:

  Starting with udev v197, systems now use predictable network interface
  names by default. Unfortunately on my system running Xenial alpha2, it
  seems vlan doesn't support the generated interface names:
  
  | ubuntu@lagertha:/var/log$ dmesg | grep rename
  | [5.101700] igb :01:00.0 enp1s0: renamed from eth0
  | [5.502268] igb :02:00.0 enp2s0: renamed from eth1
  | [5.526634] igb :04:00.0 enp4s0: renamed from eth3
  | [5.550056] igb :03:00.0 enp3s0: renamed from eth2
  
  Looking at the if-pre-up and if-post-down scripts, it seems it's missing
  there and only has:
  
  |  eth*.0*|bond*.0*|wlan*.0*|em*.0*|p[0-9]*.0*)
  | ...  ;;
  |  eth*.*|bond*.*|wlan*.*|em*.*|p[0-9]*.*)
  | ...  ;;
+ 
+ Here's the package versions:
+ 
+ | ubuntu@lagertha:/var/log$ apt-cache policy udev
+ | udev:
+ |   Installed: 228-4ubuntu2
+ |   Candidate: 228-5ubuntu1
+ |   Version table:
+ |  228-5ubuntu1 500
+ | 500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
+ |  *** 228-4ubuntu2 100
+ | 100 /var/lib/dpkg/status
+ | ubuntu@lagertha:/var/log$ apt-cache policy vlan
+ | vlan:
+ |   Installed: 1.9-3.2ubuntu1
+ |   Candidate: 1.9-3.2ubuntu1
+ |   Version table:
+ |  *** 1.9-3.2ubuntu1 500
+ | 500 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
+ | 100 /var/lib/dpkg/status

** Description changed:

  Starting with udev v197, systems now use predictable network interface
- names by default. Unfortunately on my system running Xenial alpha2, it
- seems vlan doesn't support the generated interface names:
+ names by default[1]. Unfortunately on my system running Xenial alpha2,
+ it seems vlan doesn't support the generated interface names:
  
  | ubuntu@lagertha:/var/log$ dmesg | grep rename
  | [5.101700] igb :01:00.0 enp1s0: renamed from eth0
  | [5.502268] igb :02:00.0 enp2s0: renamed from eth1
  | [5.526634] igb :04:00.0 enp4s0: renamed from eth3
  | [5.550056] igb :03:00.0 enp3s0: renamed from eth2
  
  Looking at the if-pre-up and if-post-down scripts, it seems it's missing
  there and only has:
  
  |  eth*.0*|bond*.0*|wlan*.0*|em*.0*|p[0-9]*.0*)
  | ...  ;;
  |  eth*.*|bond*.*|wlan*.*|em*.*|p[0-9]*.*)
  | ...  ;;
+ 
+ """
+ What precisely has changed in v197?
+ 
+ The following different naming schemes for network interfaces are now
+ supported by udev natively:
+ 
+ 1. Names incorporating Firmware/BIOS provided index numbers for on-board 
devices (example: eno1)
+ 2. Names incorporating Firmware/BIOS provided PCI Express hotplug slot index 
numbers (example: ens1)
+ 3. Names incorporating physical/geographical location of the connector of the 
hardware (example: enp2s0)
+ 4. Names incorporating the interfaces's MAC address (example: enx78e7d1ea46da)
+ 5. Classic, unpredictable kernel-native ethX

[Bug 1509840] Re: package mysql-server-5.6 (not installed) failed to install/upgrade: sub-processo novo script pre-installation retornou estado de saída de erro 1

2016-02-03 Thread Edson
Fiz o seguinte para tentar resolver o problema com o mysql:

hh@hh:~$ sudo apt-get remove mysql --purge
[sudo] senha para hh: 
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
E: Impossível encontrar o pacote mysql
hh@hh:~$ sudo apt-get remove mysql --purge
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
E: Impossível encontrar o pacote mysql
hh@hh:~$ sudo apt-get install mysql-server
Lendo listas de pacotes... Pronto
Construindo árvore de dependências   
Lendo informação de estado... Pronto
Os pacotes extra a seguir serão instalados:
  mysql-server-5.6
Pacotes sugeridos:
  tinyca
Os NOVOS pacotes a seguir serão instalados:
  mysql-server mysql-server-5.6
0 pacotes atualizados, 2 pacotes novos instalados, 0 a serem removidos e 0 não 
atualizados.
É preciso baixar 5.800 kB de arquivos.
Depois desta operação, 51,0 MB adicionais de espaço em disco serão usados.
Você quer continuar? [S/n] s
Obter:1 http://br.archive.ubuntu.com/ubuntu/ wily-updates/main mysql-server-5.6 
i386 5.6.28-0ubuntu0.15.10.1 [5.791 kB]
Obter:2 http://br.archive.ubuntu.com/ubuntu/ wily-updates/main mysql-server all 
5.6.28-0ubuntu0.15.10.1 [8.818 B]
Baixados 5.800 kB em 24s (238 kB/s)
Pré-configurando pacotes ...
(Lendo banco de dados ... 190923 ficheiros e directórios actualmente 
instalados.)
A preparar para desempacotar 
.../mysql-server-5.6_5.6.28-0ubuntu0.15.10.1_i386.deb ...
Aborting downgrade from (at least) 10.0 to 5.6.
If are sure you want to downgrade to 5.6, remove the file
/var/lib/mysql/debian-*.flag and try installing again.
dpkg: erro ao processar o arquivo 
/var/cache/apt/archives/mysql-server-5.6_5.6.28-0ubuntu0.15.10.1_i386.deb 
(--unpack):
 sub-processo novo script pre-installation retornou estado de saída de erro 1
A seleccionar pacote anteriormente não seleccionado mysql-server.
A preparar para desempacotar .../mysql-server_5.6.28-0ubuntu0.15.10.1_all.deb 
...
A descompactar mysql-server (5.6.28-0ubuntu0.15.10.1) ...
Erros foram encontrados durante o processamento de:
 /var/cache/apt/archives/mysql-server-5.6_5.6.28-0ubuntu0.15.10.1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
hh@hh:~$ sudo /etc/init.d/mysql restart
planetas@planetas-HP-Mini-110-3100:~$ sudo service mysql restart
Failed to restart mysql.service: Unit mysql.service is masked.
hh@hh:~$ sudo touch /var/run/mysqld/mysqld.sock
touch: não foi possível tocar “/var/run/mysqld/mysqld.sock”: Arquivo ou 
diretório não encontrado
hh@hh:~$ sudo touch -R mysql:mysql /var/lib/mysql
touch: opção -- 'R' inválida
Try 'touch --help' for more information.
hh@hh:~$ sudo chown -R mysql:mysql /var/lib/mysql
hh@hh:~$ cat /etc/mysql/my.cnf
#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
# 
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

!includedir /etc/mysql/conf.d/
hh@hh:~$ mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)

Já tentei vários outros procedimentos além desses, e sempre reaparece
esse erro:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket
'/var/run/mysqld/mysqld.sock' (2)

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

Title:
  package mysql-server-5.6 (not installed) failed to install/upgrade:
  sub-processo novo script pre-installation retornou estado de saída de
  erro 1

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

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


[Bug 1541660] Re: please upload go 1.6 rc2

2016-02-03 Thread Michael Hudson-Doyle
Actually this fails to build (fails the api check at the end). Will
investigate later.

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

Title:
  please upload go 1.6 rc2

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

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


[Bug 1541660] [NEW] please upload go 1.6 rc2

2016-02-03 Thread Michael Hudson-Doyle
Public bug reported:

Highlight of this update is that IBM have implemented -buildmode=shared
support for s390x.

http://people.canonical.com/~mwh/golang-1.6/

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

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

Title:
  please upload go 1.6 rc2

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

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


[Bug 1541628] Re: package samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11 failed to install/upgrade: не удалось вычислить хэш MD5 для файла «/etc/samba/gdbcommands»: ошибка чтения (Ошибка ввода/вывода)

2016-02-03 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your dmesg attachment in this bug report it
seems that there is a problem with your hardware.  I recommend
performing a back up and then investigating the situation.  Measures you
might take include checking cable connections and using software tools
to investigate the health of your hardware.  In the event that is is not
in fact an error with your hardware please set the bug's status back to
New.  Thanks and good luck!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: hardware-error

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

** Changed in: samba (Ubuntu)
   Status: New => Invalid

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

Title:
  package samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11 failed to
  install/upgrade: не удалось вычислить хэш MD5 для файла
  «/etc/samba/gdbcommands»: ошибка чтения (Ошибка ввода/вывода)

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

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


[Bug 1541626] Re: package ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6 failed to install/upgrade: не удалось вычислить хэш MD5 для файла «/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка ввод

2016-02-03 Thread Ubuntu Foundations Team Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your dmesg attachment in this bug report it
seems that there is a problem with your hardware.  I recommend
performing a back up and then investigating the situation.  Measures you
might take include checking cable connections and using software tools
to investigate the health of your hardware.  In the event that is is not
in fact an error with your hardware please set the bug's status back to
New.  Thanks and good luck!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: hardware-error

** Changed in: ntp (Ubuntu)
   Importance: Undecided => Low

** Changed in: ntp (Ubuntu)
   Status: New => Invalid

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

Title:
  package ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6 failed to
  install/upgrade: не удалось вычислить хэш MD5 для файла
  «/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка
  ввода/вывода)

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

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


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Seth Arnold
Ken, that's great: denying lttng in the profile just to silence the logs
is certainly unfortunate for the people who want to use lttng to measure
and inspect their VMs as the reason why lttng doesn't work is impossible
to discover.

Thanks

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

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

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


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Ken Dreyer (Red Hat)
FYI ceph v0.94.6 will load LTTng-UST only when specifically configured.
This should avoid SELinux / AppArmor denials in most cases. See
http://tracker.ceph.com/issues/13274

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

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

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


[Bug 1541628] [NEW] package samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11 failed to install/upgrade: не удалось вычислить хэш MD5 для файла «/etc/samba/gdbcommands»: ошибка чтения (Ошибка ввода/вывода)

2016-02-03 Thread Ilya
Public bug reported:

after sudo apt-get install i have this error

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11
ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
Uname: Linux 3.13.0-44-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
Date: Thu Feb  4 05:36:12 2016
ErrorMessage: не удалось вычислить хэш MD5 для файла «/etc/samba/gdbcommands»: 
ошибка чтения (Ошибка ввода/вывода)
InstallationDate: Installed on 2014-12-12 (418 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.11
SambaServerRegression: Yes
SmbConfIncluded: Yes
SourcePackage: samba
Title: package samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11 failed to 
install/upgrade: не удалось вычислить хэш MD5 для файла 
«/etc/samba/gdbcommands»: ошибка чтения (Ошибка ввода/вывода)
UpgradeStatus: No upgrade log present (probably fresh install)
WindowsFailedConnect: Yes

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


** Tags: amd64 apport-package trusty

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

Title:
  package samba-common 2:4.1.6+dfsg-1ubuntu2.14.04.11 failed to
  install/upgrade: не удалось вычислить хэш MD5 для файла
  «/etc/samba/gdbcommands»: ошибка чтения (Ошибка ввода/вывода)

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

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


[Bug 1541626] [NEW] package ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6 failed to install/upgrade: не удалось вычислить хэш MD5 для файла «/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка вв

2016-02-03 Thread Ilya
Public bug reported:

after sudo apt-get install i have this error

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6
ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
Uname: Linux 3.13.0-44-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
Date: Thu Feb  4 04:47:27 2016
ErrorMessage: не удалось вычислить хэш MD5 для файла 
«/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка ввода/вывода)
InstallationDate: Installed on 2014-12-12 (418 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.11
SourcePackage: ntp
Title: package ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6 failed to 
install/upgrade: не удалось вычислить хэш MD5 для файла 
«/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка ввода/вывода)
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package trusty

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

Title:
  package ntpdate 1:4.2.6.p5+dfsg-3ubuntu2.14.04.6 failed to
  install/upgrade: не удалось вычислить хэш MD5 для файла
  «/etc/logcheck/ignore.d.server/ntpdate»: ошибка чтения (Ошибка
  ввода/вывода)

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

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


[Bug 1533839] Re: vms shutting down on libvirt upgrade

2016-02-03 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.16-2ubuntu11.15.10.3

---
libvirt (1.2.16-2ubuntu11.15.10.3) wily-proposed; urgency=medium

  * debian/rules: Disable cdbs' implicitly generated dh_systemd_start calls.
We already call it explicitly with the right options, calling it again
with the default options stops libvirt-guests during upgrades.
(LP: #1533839)

 -- Martin Pitt   Mon, 18 Jan 2016 09:25:17
+0100

** Changed in: libvirt (Ubuntu Wily)
   Status: Fix Committed => Fix Released

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

Title:
  vms shutting down on libvirt upgrade

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

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


[Bug 1318721] Update Released

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

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

Title:
  RPC timeout in all neutron agents

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

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


[Bug 1318721] Re: RPC timeout in all neutron agents

2016-02-03 Thread Launchpad Bug Tracker
This bug was fixed in the package oslo.messaging - 1.3.0-0ubuntu1.4

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

  * Backport upstream fix (LP: #1318721):
- d/p/fix-reconnect-race-condition-with-rabbitmq-cluster.patch:
  Redeclare if exception is catched after self.queue.declare() failed.

 -- Hui Xiang   Thu, 17 Dec 2015 16:22:35 +0800

** Changed in: oslo.messaging (Ubuntu Trusty)
   Status: Fix Committed => Fix Released

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

Title:
  RPC timeout in all neutron agents

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

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


[Bug 1125726] Update Released

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

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

Title:
  boot-time race between /etc/network/if-up.d/ntpdate and
  "/etc/init.d/ntp start"

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

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


[Bug 1125726] Re: boot-time race between /etc/network/if-up.d/ntpdate and "/etc/init.d/ntp start"

2016-02-03 Thread Launchpad Bug Tracker
This bug was fixed in the package ntp - 1:4.2.6.p5+dfsg-3ubuntu2.14.04.7

---
ntp (1:4.2.6.p5+dfsg-3ubuntu2.14.04.7) trusty; urgency=medium

  * Use a single lockfile again - instead unlock the file before starting the
init script. The lock sho uld be shared - both services can't run at the
same time. (LP: #1125726)

 -- Cam Cope   Tue, 19 Jan 2016 10:22:39 +

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

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

Title:
  boot-time race between /etc/network/if-up.d/ntpdate and
  "/etc/init.d/ntp start"

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

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


[Bug 1125726] Re: boot-time race between /etc/network/if-up.d/ntpdate and "/etc/init.d/ntp start"

2016-02-03 Thread Launchpad Bug Tracker
This bug was fixed in the package ntp - 1:4.2.6.p3+dfsg-1ubuntu3.8

---
ntp (1:4.2.6.p3+dfsg-1ubuntu3.8) precise; urgency=medium

  * Use a single lockfile again - instead unlock the file before starting the
init script. The lock sho uld be shared - both services can't run at the
same time. (LP: #1125726)

 -- Cam Cope   Tue, 19 Jan 2016 10:20:07 +

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

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

Title:
  boot-time race between /etc/network/if-up.d/ntpdate and
  "/etc/init.d/ntp start"

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

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


[Bug 1540214] Re: package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-02-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mysql-5.6 (Ubuntu)
   Status: New => Confirmed

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

Title:
  package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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


[Bug 1481295] [netcf/wily] verification still needed

2016-02-03 Thread Ubuntu Foundations Team Bug Bot
The fix for this bug has been awaiting testing feedback in the -proposed
repository for wily for more than 90 days.  Please test this fix and
update the bug appropriately with the results.  In the event that the
fix for this bug is still not verified 15 days from now, the package
will be removed from the -proposed repository.

** Tags added: removal-candidate

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

Title:
  virt-manager after upgrade: Error polling connection 'qemu:///system':
  internal error: could not get interface XML description: File
  operation failed - Failed to read (null)

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

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


[Bug 1533721] Re: Ethtool didn't support link speed 25Gb 56Gb 100Gb 200Gb

2016-02-03 Thread Rafael David Tinoco
After talking to Talat:

- What Ubuntu version are you referring to ?
[TB]Ubuntu 14.4.4 trusty 

- Have you tested in newer versions ?
[TB] not tested yet, will test it on Xenial and update.

- What are the steps to reproduce the problem ?
[TB] ethtool 
See that under "Advertised link modes" not mentioned all the speeds 
that supported on this network interface 
ConnectX4 device support several speeds line 10 25 40 50 100 
With trusty version we see just 
Supported link modes:   1baseKR/Full
   4baseCR4/Full
   4baseSR4/Full
   4baseLR4/Full

- Is there a known fix you are aware of ? Where ?
[TB] yes there are a fix for 56 will search for the commit and send later.

- Is Mellanox responsible for the code being fixed ? Or for the commit(s) 
fixing the issue ?
[TB] Yes it's fixed, will ask the maintainer of this and update 

I'm coming back to this after some other IB bugs. So, Talat, if you
could provide the commits fixing the issue I would appreciate.

Thank you

Rafael

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

Title:
  Ethtool didn't support link speed 25Gb 56Gb 100Gb 200Gb

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

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


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Seth Arnold
Note that adding that entry may allow virtual machines an unexpected and
unwelcome amount of influence over the host system. If you just want the
errors silenced, use 'deny /run/shm/lttng-ust-wait-5 rw,' instead. If
you actually want lttng to function, then feel free to continue using
the allow rule but be sure you know why you want it and what it allows
guests to do.

Thanks

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

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

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


[Bug 1541322] Re: package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2016-02-03 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 mysql-5.6 in Ubuntu.
https://bugs.launchpad.net/bugs/1541322

Title:
  package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 1

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

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


[Bug 1541322] Bug is not a security issue

2016-02-03 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Changed in: mysql-5.6 (Ubuntu)
   Status: New => Incomplete

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

Title:
  package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 1

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

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


[Bug 1541322] Re: package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to install/upgrade: subprocess new pre-installation script returned error exit status 1

2016-02-03 Thread Seth Arnold
Note the following:
Aborting downgrade from (at least) 10.0 to 5.6.
If are sure you want to downgrade to 5.6, remove the file
/var/lib/mysql/debian-*.flag and try installing again.

I suspect this is intentional behaviour, thus I'm closing the bug. If
this isn't intentional, feel free to set the status back to 'new' and
describe what happened.

Thanks

** Information type changed from Private Security to Public

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

Title:
  package mysql-server-5.6 5.6.28-0ubuntu0.15.10.1 failed to
  install/upgrade: subprocess new pre-installation script returned error
  exit status 1

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

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


[Bug 1537080] Re: [MIR] python-openvswitch

2016-02-03 Thread Michael Terry
Phew, this is definitely out of my normal domain of experience.  Plus
it's networking and daemons and all that.  So will need a security
check.  Passing to Jamie.

** Changed in: openvswitch (Ubuntu)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

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

Title:
  [MIR] python-openvswitch

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

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


[Bug 1538165] Re: Security Issues Impacting NGINX: 1.8.x, 1.9.x

2016-02-03 Thread Thomas Ward
As Vivid reaches End of Life tomorrow, and that provides insufficient
time for a fix to be produced for that version of the package, we are
marking this as "Won't Fix" on Vivid.

** Changed in: nginx (Ubuntu Vivid)
   Status: Confirmed => Won't Fix

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

Title:
  Security Issues Impacting NGINX: 1.8.x, 1.9.x

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

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


[Bug 1541529] Re: can no longer create 15.04 ubuntu-core stable kvm images with ubuntu-device-flash

2016-02-03 Thread Jamie Strandboge
Turns out, my mirror was out of date and I had kpartx 0.5.0-7ubuntu10
installed, which was buggy, but uploading to 0.5.0-7ubuntu12 resolves
the issue.

** Changed in: multipath-tools (Ubuntu)
   Status: New => Fix Released

** No longer affects: goget-ubuntu-touch (Ubuntu)

** No longer affects: snappy

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

Title:
  can no longer create 15.04 ubuntu-core stable kvm images with ubuntu-
  device-flash

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

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


[Bug 1541529] Re: can no longer create 15.04 ubuntu-core stable kvm images with ubuntu-device-flash

2016-02-03 Thread Jamie Strandboge
I noticed in dmesg output the following at the time of the error:
Feb  3 12:00:27 lily kernel: [  956.113096] device-mapper: table: 252:0: 
linear: dm-linear: Device lookup failed
Feb  3 12:00:27 lily kernel: [  956.113101] device-mapper: ioctl: error adding 
target to table
Feb  3 12:00:27 lily kernel: [  956.133199] device-mapper: table: 252:0: 
linear: dm-linear: Device lookup failed
Feb  3 12:00:27 lily kernel: [  956.133205] device-mapper: ioctl: error adding 
target to table
Feb  3 12:00:27 lily kernel: [  956.153137] device-mapper: table: 252:0: 
linear: dm-linear: Device lookup failed
Feb  3 12:00:27 lily kernel: [  956.153143] device-mapper: ioctl: error adding 
target to table
Feb  3 12:00:27 lily kernel: [  956.172603] device-mapper: table: 252:0: 
linear: dm-linear: Device lookup failed
Feb  3 12:00:27 lily kernel: [  956.172607] device-mapper: ioctl: error adding 
target to table
Feb  3 12:00:27 lily kernel: [  956.196625] device-mapper: table: 252:0: 
linear: dm-linear: Device lookup failed
Feb  3 12:00:27 lily kernel: [  956.196629] device-mapper: ioctl: error adding 
target to table


** Description changed:

  On xenial:
  
  $ sudo ubuntu-device-flash core --channel=stable --size=8 --enable-ssh 
--output=15.04-stable.img 15.04
  Determining oem configuration
  Starting download of generic-amd64
  41.70 KB / 41.70 KB [=] 100.00 % 
165.93 KB/s
  Done
  Starting download of icon for package
  38.97 KB / 38.97 KB [=] 100.00 % 
299.62 KB/s
  Done
  Fetching information from server...
  Downloading and setting up...
  exit status 5
  
- I tried downgrading to wily's udf, but had the same error.
+ I tried downgrading to wily's udf, but had the same error. Downgrading
+ kpartx to wily's works around the issue and I can successfully create
+ images.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: ubuntu-device-flash 0.33-0ubuntu2
  ProcVersionSignature: Ubuntu 4.3.0-7.18-generic 4.3.3
  Uname: Linux 4.3.0-7-generic x86_64
  ApportVersion: 2.19.4-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Feb  3 11:46:59 2016
  InstallationDate: Installed on 2015-06-13 (234 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: goget-ubuntu-touch
  UpgradeStatus: Upgraded to xenial on 2016-01-12 (22 days ago)

** Also affects: multipath-tools (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  can no longer create 15.04 ubuntu-core stable kvm images with ubuntu-
  device-flash

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

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


[Bug 1518440] Re: tgt fails to install in LXD

2016-02-03 Thread Bug Watch Updater
** Changed in: tgt (Debian)
   Status: Unknown => New

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

Title:
  tgt fails to install in LXD

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

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


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Matt Fischer
adding   /run/shm/lttng-ust-wait-5 rw, to /etc/apparmor.d/abstractions
/libvirt-qemu is the fix.

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

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

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


[Bug 1511735] Re: libnl: fail to bind() netlink sockets

2016-02-03 Thread Ryan Harper
I've updated the debdiff to include a Breaks:  network-manager (<<
0.9.8.8-0ubuntu7.3) to ensure that users are forced to use the newer
network-manager (ie, this libnl won't install unless user has already
updated their network-manager)   Thanks Mathew for the suggestion.

I've built and tested this in the following way:

1. deploy trusty 14.04
2. apt-get install network-manager
3. download the libnl3 packages (3.2.21-1ubuntu2)
4. dpkg --install libnl-3-200_3.2.21-1ubuntu2_amd64.deb 
libnl-genl-3-200_3.2.21-1ubuntu2_amd64.deb 
libnl-route-3-200_3.2.21-1ubuntu2_amd64.deb 

This results in the following (successful blocking of upgrade):

dpkg: regarding libnl-3-200_3.2.21-1ubuntu2_amd64.deb containing 
libnl-3-200:amd64:
 libnl-3-200:amd64 breaks network-manager (<< 0.9.8.8-0ubuntu7.3)
  network-manager (version 0.9.8.8-0ubuntu7.2) is present and installed.

dpkg: error processing archive libnl-3-200_3.2.21-1ubuntu2_amd64.deb 
(--install):
 installing libnl-3-200:amd64 would break network-manager, and
 deconfiguration is not permitted (--auto-deconfigure might help)
(Reading database ... 37060 files and directories currently installed.)
Preparing to unpack libnl-genl-3-200_3.2.21-1ubuntu2_amd64.deb ...
Unpacking libnl-genl-3-200:amd64 (3.2.21-1ubuntu2) over (3.2.21-1) ...
Preparing to unpack libnl-route-3-200_3.2.21-1ubuntu2_amd64.deb ...
Unpacking libnl-route-3-200:amd64 (3.2.21-1ubuntu2) over (3.2.21-1) ...
dpkg: dependency problems prevent configuration of libnl-genl-3-200:amd64:
 libnl-genl-3-200:amd64 depends on libnl-3-200 (= 3.2.21-1ubuntu2); however:
  Version of libnl-3-200:amd64 on system is 3.2.21-1.

dpkg: error processing package libnl-genl-3-200:amd64 (--install):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libnl-route-3-200:amd64:
 libnl-route-3-200:amd64 depends on libnl-3-200 (= 3.2.21-1ubuntu2); however:
  Version of libnl-3-200:amd64 on system is 3.2.21-1.

dpkg: error processing package libnl-route-3-200:amd64 (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libnl-3-200_3.2.21-1ubuntu2_amd64.deb
 libnl-genl-3-200:amd64
 libnl-route-3-200:amd64


After installing network-manager 0.9.8.8-0ubuntu7.3, I can successfully re-run 
the libnl3 install command:

dpkg --install libnl-3-200_3.2.21-1ubuntu2_amd64.deb 
libnl-genl-3-200_3.2.21-1ubuntu2_amd64.deb 
libnl-route-3-200_3.2.21-1ubuntu2_amd64.deb 
(Reading database ... 41021 files and directories currently installed.)
Preparing to unpack libnl-3-200_3.2.21-1ubuntu2_amd64.deb ...
Unpacking libnl-3-200:amd64 (3.2.21-1ubuntu2) over (3.2.21-1) ...
Selecting previously unselected package libnl-genl-3-200:amd64.
Preparing to unpack libnl-genl-3-200_3.2.21-1ubuntu2_amd64.deb ...
Unpacking libnl-genl-3-200:amd64 (3.2.21-1ubuntu2) ...
Selecting previously unselected package libnl-route-3-200:amd64.
Preparing to unpack libnl-route-3-200_3.2.21-1ubuntu2_amd64.deb ...
Unpacking libnl-route-3-200:amd64 (3.2.21-1ubuntu2) ...
Setting up libnl-3-200:amd64 (3.2.21-1ubuntu2) ...
Setting up libnl-genl-3-200:amd64 (3.2.21-1ubuntu2) ...
Setting up libnl-route-3-200:amd64 (3.2.21-1ubuntu2) ...
Processing triggers for libc-bin (2.19-0ubuntu6.6) ...


** Patch added: "lp_1511735_libnl3_v2.diff"
   
https://bugs.launchpad.net/ubuntu/trusty/+source/libnl3/+bug/1511735/+attachment/4563004/+files/lp_1511735_libnl3_v2.diff

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

Title:
  libnl: fail to bind() netlink sockets

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

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


[Bug 1521931] Re: apparmor-profile-load returns 1 if apparmor not installed

2016-02-03 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-core-dev/upstart/ubuntu

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

Title:
  apparmor-profile-load returns 1 if apparmor not installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/init-system-helpers/+bug/1521931/+subscriptions

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


[Bug 1520543] Re: syslog logging is broken in neutron-server

2016-02-03 Thread Edward Hope-Morley
Correct, this should have been resolved by the recent SRU to Wily and
trusty-liberty Cloud Archive - https://launchpad.net/ubuntu/+source
/python-oslo.log/1.11.0-1ubuntu0. Please let me know if you are still
seeing this issue with the latest version.

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

Title:
  syslog logging is broken in neutron-server

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

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


[Bug 1015819] Re: sb_sasl_generic_pkt_length: received illegal packet length when using ldapsearch and sasl with ssl or tls

2016-02-03 Thread Leif Thuresson
Yes I didn't mean the commit was wrong. The problem is MS-AD, but before the 
commit it was possible to do LDAP SASL bind over  an SSL/TLS connection to AD 
if you set min and max SSF below or equal to 128 (doesn't need to be zero).
So it would be nice to have some sort of AD compatibility mode. I think it 
would be okay for this mode to not follow the RFC as long as it is not the 
default operating mode and it is properly documented.

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

Title:
  sb_sasl_generic_pkt_length: received illegal packet length when using
  ldapsearch and sasl with ssl or tls

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

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


[Bug 1520543] Re: syslog logging is broken in neutron-server

2016-02-03 Thread György Szombathelyi
Seems it is fixed in python-oslo.log 1.11.0-1ubuntu0~cloud0

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

Title:
  syslog logging is broken in neutron-server

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

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


[Bug 1015819] Re: sb_sasl_generic_pkt_length: received illegal packet length when using ldapsearch and sasl with ssl or tls

2016-02-03 Thread Michael Osipov
Leif, the commit is perfectly fine because  minssf=0 is illegal and
violates the RFC. I have described this in my previous comment.

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

Title:
  sb_sasl_generic_pkt_length: received illegal packet length when using
  ldapsearch and sasl with ssl or tls

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

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


[Bug 1488567] Re: Samba 4.1.6 Panic with Trusty 14.04.3 LTS

2016-02-03 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Samba 4.1.6 Panic with Trusty 14.04.3 LTS

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

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


[Bug 1509147] Re: [SRU] MAAS 1.9.0

2016-02-03 Thread Andres Rodriguez
** No longer affects: maas (Ubuntu Vivid)

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

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

Title:
  [SRU] MAAS 1.9.0

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

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


[Bug 1067779] Re: missing pam_loginuid.so breaks getlogin()

2016-02-03 Thread dino99
cron (3.0pl1-124.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add pam_loginuid module to the PAM session stack (Closes: #677443)
  * Add systemd service file. Thanks to Michael Stapelberg (Closes: #652440)

 -- Laurent Bigonville   Sun, 25 May 2014 21:21:19
+0200

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

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

Title:
  missing pam_loginuid.so breaks getlogin()

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

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


[Bug 1067779] Re: missing pam_loginuid.so breaks getlogin()

2016-02-03 Thread dino99
at (3.1.15-1) unstable; urgency=medium

  * New upstream release:
+ pam.conf: require pam_loginuid.so (Closes: #677442)
  * Bumped Standards-Version to 3.9.5 (no changes).

 -- Ansgar Burchardt   Sun, 10 Aug 2014 14:03:16
+0200

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

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

Title:
  missing pam_loginuid.so breaks getlogin()

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

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


[Bug 1500581] Re: open-vm-tools-dkms fails to build on kernel 4.2 (Wily Werewolf) [error: implicit declaration of function ‘nd_set_link’]

2016-02-03 Thread Ted Chien
Hi, please consider updating the open-vm-tools package to the latest
version. I could not use the Share Folder feature with VMware Fusion on
Ubuntu 15.10 now and it really bothers me.

Thanks!

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

Title:
  open-vm-tools-dkms fails to build on kernel 4.2 (Wily Werewolf)
  [error: implicit declaration of function ‘nd_set_link’]

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

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


[Bug 1067779] Re: missing pam_loginuid.so breaks getlogin()

2016-02-03 Thread Launchpad Bug Tracker
This bug was fixed in the package shadow - 1:4.2-3.1ubuntu1

---
shadow (1:4.2-3.1ubuntu1) xenial; urgency=low

  * Merge from Debian unstable.
- Includes pam_loginuid in login PAM config.  LP: #1067779.
- Fixes typo in usermod -h output.  LP: #1348873.
  * Remaining changes:
- debian/passwd.upstart: Add an upstart job to clear locks on
  [shadow-]passwd/group.
- debian/login.defs:
  + Update documentation of USERGROUPS_ENAB: with pam_umask, the UPG
handling does not only apply to "former (pre-PAM) uses".
  + Update documentation of UMASK: Explain that USERGROUPS_ENAB
will modify this default for UPGs.
- debian/{source_shadow.py,rules}: Add apport hook
- Pass noupdate to pam_motd call for /run/motd.dynamic, to avoid running
  /etc/update-motd.d/* scripts twice.
- debian/patches/1010_extrausers.patch: Add support to passwd for
  libnss-extrausers
- debian/patches/1011_extrausers_toggle.patch: extrausers support for
  useradd and groupadd
- debian/patches/userns/subuids-nonlocal-users: Don't limit
  subuid/subgid support to local users.
  * Dropped changes, included in Debian:
- Allow LXC devices (lxc/console, lxc/tty[1234]), used from precise on.
- Add uidmap package based on upstream patches that introduce
  newuidmap/newgidmap as well as /etc/subuid and /etc/subgid. Additional
  updates on those to widen the default allocation to 65536 uids and gids
  and only assign ranges to non-system users.
- debian/patches/1020_fix_user_busy_errors: Call sub_uid_close in all
  error cases.
  * Dropped changes, included upstream:
- debian/patches/495_stdout-encrypted-password: chpasswd can report
  password hashes on stdout.
- debian/patches/496_su_kill_process_group: Kill the child process group,
  rather than just the immediate child.
  * Fix pam_motd calls so that the second pam_motd is the noupdate one rather
than the first, ensuring /run/motd.dynamic is always populated and shown
on the first login after boot.  LP: #1368864.
  * Don't call 'pam_exec uname', a change adopted in Debian without
coordination with the Debian PAM maintainer
  * Use dh_installinit now for installing the upstart job, as we no longer
generate a dependency on upstart-job.
  * Include /etc/sub[ug]id in the list of files to clear locks for on boot.
LP: #1304505
  * Add a systemd unit to go with the upstart job, so that lock clearing works
on newer Ubuntu releases.

shadow (1:4.2-3.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix error handling in busy user detection. (Closes: #778287)

shadow (1:4.2-3) unstable; urgency=low

  * Enforce hardened builds to workaround cdbs sometimes not building
with hardening flags as in 1:4.2-2+b1
Thanks to Dr. Markus Waldeck for pointing the issue and Simon Ruderich
For providing a working patch.

shadow (1:4.2-2) unstable; urgency=low

  * The "Soumaintrain" release
  * The "Rigotte de Condrieu" release was 4.2-1
  * Upload to unstable
  * Last upload integrates the use of dh_autoreconf which has the same
effect then Eric Dorland's patch in 1:4.1.5.1-1.1 NMU to drop the
use of automake1.9. Closes: #724434

  [ Samuel Thibault ]
  * Enable the login package on hurd-any, but without /bin/login, still provided
by the hurd package. Closes: #737805.
This fix was accidentally forgotten in 1:4.2-1

  [ Josh Triplett ]
  * use the new pam_exec functionality from pam 1.1.8-1 to implement the
dynamic motd, rather than using /run/motd.dynamic from initscripts.
This will allow initscripts to drop /etc/init.d/motd.
Closes: #741129

  [ Laurent Bigonville ]
  * Enable libaudit support. Closes: #745774

  [ Trần Ngọc Quân ]
  * Vietnamese translation update.

  [ Christian Perrier ]
  * Add a lintian override for newuidmap and newgidmap setuid binaries
  * Add upstream signing key as debian/upstream-signing-key.asc
  * Check upstream signing key in debian/watch

shadow (1:4.2-1) experimental; urgency=low

  [ Nicolas FRANCOIS (Nekral) ]
  * New upstream release. Fixes:
- Invalid free() in su fixed by using strdup(). Thanks to Serge
  Hallyn for the patch. Closes: #691459
- Kill the child process group, rather than just the
  immediate child; this is needed now that su no
  longer starts a controlling terminal when not running an
  interactive shell. Thanks to Colin Watson for the patch.
  Closes: #713979
- German manpages translation update. Closes: #679152
- Improve login.defs (typographic errors and better format).
  Closes: #685415
- Russian translation update. Closes: #718356
- Do not assume random() is limited by RAND_MAX.  Closes: #677275
- Support C libraries with unknown fields in struct passwd.
  Closes: #675824
- su: child cleanup is performed before terminating PAM sessions. This
  avoids anoying "...terminated" messages when PAM module