[Bug 1554397] [NEW] dpdk-init fails due to missing modules in virt environments

2016-03-08 Thread ChristianEhrhardt
Public bug reported:

In e.g. cloud images there is only the minimal "linux-image" which does
not pull in "linux-image-extra".

Now DPDK doesn't need linux-image-extra in such environments for there is a 
virtio pmd driver.
But if people want to experiment with e.g. uio_pci_generic drivers in there the 
init scripts will crash due to the missing kernel module.

I suggest two fixes:
1. make linux-image-extra-virtual a suggests of dpdk (recommends or depends 
would be too hard given the relation)
2. further harden the init script to gracefully detect and warn about it 
instead of failing
3. add a comment about the need into /etc/dpdk/interfaces so people can read it 
while configuring instead when failing

** Affects: dpdk (Ubuntu)
 Importance: Medium
 Assignee: ChristianEhrhardt (paelzer)
 Status: Triaged

** Changed in: dpdk (Ubuntu)
   Status: New => Triaged

** Changed in: dpdk (Ubuntu)
   Importance: Undecided => Medium

** Changed in: dpdk (Ubuntu)
 Assignee: (unassigned) => ChristianEhrhardt (paelzer)

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

Title:
  dpdk-init fails due to missing modules in virt environments

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

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


[Bug 1554397] Re: dpdk-init fails due to missing modules in virt environments

2016-03-08 Thread ChristianEhrhardt
FYI how it looks like in the log, for the next that might find it.

systemd[1]: Starting DPDK runtime environment...
dpdk-init[7467]: Reassigning pci::00:04.0 to uio_pci_generic
dpdk-init[7467]: Error - no supported modules(DPDK driver) are loaded
systemd[1]: dpdk.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: Failed to start DPDK runtime environment.
systemd[1]: dpdk.service: Unit entered failed state.
systemd[1]: dpdk.service: Failed with result 'exit-code'.

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

Title:
  dpdk-init fails due to missing modules in virt environments

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

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


[Bug 1435706] Re: DevLossTO, FastIoFailTO settings do not match multipath.conf expected values

2016-03-08 Thread Tore Anderson
Ok, so I found the bug. The problematic code is in
sysfs_attr_set_value() in libmultipath/sysfs.c:

devpath = udev_device_get_syspath(dev);
condlog(4, "open '%s'/'%s'", devpath, attr_name);
if (stat(devpath, &statbuf) != 0) {
condlog(4, "stat '%s' failed: %s", devpath, strerror(errno));
return 0;
}

/* skip directories */
if (S_ISDIR(statbuf.st_mode))
return 0;

The problem here is that stat() gets called on the containing directory
in devpath (as opposed to devpath+attr_name). Then the code proceeds to
check if that is a directory (which obviously it is going to be) and
before returning without having done anything. The rest of the function
also seems to assume that "devpath" contains the full path to the sysfs
attribute as opposed to the containing directory.

How the verification in comment #22 could have found this code to be
working is beyond me, as the only place where the attr_name variable is
actively being used for anything in the function is in the condlog()
call.

It appears this got fixed upstream by
http://git.opensvc.com/gitweb.cgi?p=multipath-
tools/.git;a=commit;h=050b24b33d3c60e29f7820d2fb75e84a9edde528 . This
patch applies fine to the multipath-tools 0.4.9-3ubuntu7.9 sources from
trusty (with --fuzz=3), and I can confirm that it does fix the problem
for me - the sysfs timeout attributes gets set correctly when the maps
is being created (both when using multipathd and the multipath tool).


Tore

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

Title:
  DevLossTO, FastIoFailTO settings do not match multipath.conf expected
  values

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

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


[Bug 1546139] Re: golang-go fails to install compiler

2016-03-08 Thread Michael Hudson-Doyle
Ah, did you have GOROOT pointed at /usr/share/go? That wouldn't work
well. Setting it to /usr/lib/go should work, but is also pointles.

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

Title:
  golang-go fails to install compiler

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

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


[Bug 1553097] Re: lxc-attach does not output stderr any more if stdout is redirected

2016-03-08 Thread Christian Brauner
** Changed in: lxc (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  lxc-attach does not output stderr any more if stdout is redirected

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

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


[Bug 1546565] Re: Ownership/Permissions of vhost_user sockets for openvswitch-dpdk make them unusable by libvirt/qemu/kvm

2016-03-08 Thread ChristianEhrhardt
Had a discussion with James Page today.
He will look into it (backporting, hack, other solution) in his work regarding 
charming that stuff.
Big thanks for that!

We agreed that will discuss (or be happy about the fix) again in approx
10 days from now.

** Changed in: openvswitch-dpdk (Ubuntu)
Milestone: None => ubuntu-16.04

** Changed in: openvswitch-dpdk (Ubuntu)
 Assignee: (unassigned) => James Page (james-page)

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

Title:
  Ownership/Permissions of vhost_user sockets for openvswitch-dpdk make
  them unusable by libvirt/qemu/kvm

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

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


[Bug 1551601] Re: DPDK init scripts need some hardening against broken specifications in /etc/dpdk/interfaces

2016-03-08 Thread ChristianEhrhardt
Found an uploader, wrapping two more fixes before that.
Therefore removing the debdiff and sponsors subscription from this bug for now.

** Patch removed: "Updated revision of the debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/dpdk/+bug/1551601/+attachment/4591564/+files/dpdk_2.2.0-0ubuntu3-to-2.2.0-0ubuntu4.debdiff

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

Title:
  DPDK init scripts need some hardening against broken specifications in
  /etc/dpdk/interfaces

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

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


[Bug 1248054] Re: [SRU] dlm package installation fails

2016-03-08 Thread Launchpad Bug Tracker
This bug was fixed in the package dlm - 4.0.4-3ubuntu1

---
dlm (4.0.4-3ubuntu1) xenial; urgency=medium

  * Resync with Debian unstable (LP: #1248054, #1491745); remaining changes:
- d/control,dlm.install,rules: Rename dlm-controld -> dlm inline
  with packaging history in Ubuntu.

dlm (4.0.4-3) unstable; urgency=medium

  * [526167a] Add corosync dependency to dlm-controld (Closes: #814519)
  * [3c98ecb] Update Standards-Version to 3.9.7 (no changes needed)

dlm (4.0.4-2) unstable; urgency=medium

  * [a10e0c9] New patch Build-reproducibly-don-t-compile-in-the-build-time.patch
  * [dda5591] Replace obsolete libsystemd-daemon-dev B-D with libsystemd-dev
(Closes: #813376)
  * [12b55a9] Switch to secure VCS URIs as Lintian suggests
  * [562bd20] New patch Enable-bindnow-for-libdlmcontrol.patch

dlm (4.0.4-1) unstable; urgency=medium

  * [0c99a79] Imported Upstream version 4.0.4
  * [619a537] Avoid useless libxml2 dependency of dlm-controld
  * [203aa46] debian/watch: look for tar.xz instead of tar.gz
  * [0ce96d5] Delete upstreamed patches, update the remaining one
  * [6a30ac3] Upstream udev dir is under /usr/lib since 102d3c2
  * [d655c87] Taking over dlm_{controld,tool} requires Breaks+Replaces cman
(Closes: #812419)
  * [a7b3406] Hardening seems to work now, enable it

dlm (4.0.2-1) unstable; urgency=medium

  [ Ferenc Wágner ]
  * [eb5910d] Switch to the new DLM upstream from redhat-cluster and redo
packaging
  * [1bdc449] Add symbols file for libdlmcontrol3
  * [ce903ed] Force building with Corosync 2 libraries
  * [f0cc3b2] Build and ship the dlm_stonith helper
  * [03ccd41] New patch Make-systemd-stop-dlm-on-corosync-restart.patch
  * [3127527] New patch If-an-error-occurs-unlink-the-lock-file-and-exit-
wit.patch
  * [05e959e] New patch Don-t-SIGKILL-dlm_controld.patch
  * [61adabd] Ensure configfs is loaded before sys-kernel-config.mount needs it

  [ Christoph Berg ]
  * Rely on dh for -dbgsym packages instead of providing our own.
  * Add watch file.

 -- James Page   Tue, 08 Mar 2016 10:31:02 +

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

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

Title:
  [SRU] dlm package installation fails

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

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


[Bug 1491745] Re: Package does not ship dlm_stonith

2016-03-08 Thread Launchpad Bug Tracker
This bug was fixed in the package dlm - 4.0.4-3ubuntu1

---
dlm (4.0.4-3ubuntu1) xenial; urgency=medium

  * Resync with Debian unstable (LP: #1248054, #1491745); remaining changes:
- d/control,dlm.install,rules: Rename dlm-controld -> dlm inline
  with packaging history in Ubuntu.

dlm (4.0.4-3) unstable; urgency=medium

  * [526167a] Add corosync dependency to dlm-controld (Closes: #814519)
  * [3c98ecb] Update Standards-Version to 3.9.7 (no changes needed)

dlm (4.0.4-2) unstable; urgency=medium

  * [a10e0c9] New patch Build-reproducibly-don-t-compile-in-the-build-time.patch
  * [dda5591] Replace obsolete libsystemd-daemon-dev B-D with libsystemd-dev
(Closes: #813376)
  * [12b55a9] Switch to secure VCS URIs as Lintian suggests
  * [562bd20] New patch Enable-bindnow-for-libdlmcontrol.patch

dlm (4.0.4-1) unstable; urgency=medium

  * [0c99a79] Imported Upstream version 4.0.4
  * [619a537] Avoid useless libxml2 dependency of dlm-controld
  * [203aa46] debian/watch: look for tar.xz instead of tar.gz
  * [0ce96d5] Delete upstreamed patches, update the remaining one
  * [6a30ac3] Upstream udev dir is under /usr/lib since 102d3c2
  * [d655c87] Taking over dlm_{controld,tool} requires Breaks+Replaces cman
(Closes: #812419)
  * [a7b3406] Hardening seems to work now, enable it

dlm (4.0.2-1) unstable; urgency=medium

  [ Ferenc Wágner ]
  * [eb5910d] Switch to the new DLM upstream from redhat-cluster and redo
packaging
  * [1bdc449] Add symbols file for libdlmcontrol3
  * [ce903ed] Force building with Corosync 2 libraries
  * [f0cc3b2] Build and ship the dlm_stonith helper
  * [03ccd41] New patch Make-systemd-stop-dlm-on-corosync-restart.patch
  * [3127527] New patch If-an-error-occurs-unlink-the-lock-file-and-exit-
wit.patch
  * [05e959e] New patch Don-t-SIGKILL-dlm_controld.patch
  * [61adabd] Ensure configfs is loaded before sys-kernel-config.mount needs it

  [ Christoph Berg ]
  * Rely on dh for -dbgsym packages instead of providing our own.
  * Add watch file.

 -- James Page   Tue, 08 Mar 2016 10:31:02 +

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

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

Title:
  Package does not ship dlm_stonith

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

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


[Bug 1554266] Re: sshd does not start on newly installed desktop system

2016-03-08 Thread Colin Watson
IRC speculation is that this might be due to
https://launchpad.net/ubuntu/+source/init-system-helpers/1.29ubuntu1,
although that isn't enough to determine whether it's a regression in
i-s-h or something that openssh is doing wrong that was just exposed by
that upload.

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

Title:
  sshd does not start on newly installed desktop system

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

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


[Bug 1554481] [NEW] [FFe] OpenSSH 7.2p1

2016-03-08 Thread Colin Watson
Public bug reported:

I'd like to upgrade OpenSSH to 7.2p1 in xenial, on the general principle
that keeping OpenSSH as up to date as possible is a good plan.  There
are a few more changes to default crypto algorithms and some new
features, but they're relatively minor compared to 7.0/7.1.

http://www.openssh.com/txt/release-7.2

Packaging changes are minimal; about the only thing I've done is
reintroduce the slogin -> ssh symlinks removed by upstream in 7.2, in
line with Fedora.

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

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

Title:
  [FFe] OpenSSH 7.2p1

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

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


[Bug 1554031] Re: error: internal error: unable to execute QEMU command ‘block-commit’: Could not reopen file: Permission denied

2016-03-08 Thread Jignasha
With support release version also getting same error

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

Title:
  error: internal error: unable to execute QEMU command ‘block-commit’:
  Could not reopen file: Permission denied

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

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


[Bug 1554031] Re: error: internal error: unable to execute QEMU command ‘block-commit’: Could not reopen file: Permission denied

2016-03-08 Thread Jignasha
We have updated libvirt version from support release version

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

Title:
  error: internal error: unable to execute QEMU command ‘block-commit’:
  Could not reopen file: Permission denied

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

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


[Bug 1554490] [NEW] Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

2016-03-08 Thread James Page
Public bug reported:

Logging this bug as I don't think we should be doing this for Xenial -
the output of the net-tools tooling is quite different with the new
snapshot which I think as the potential to regress anything parsing the
output of net-tools tooling:

Current output:

$ ifconfig -a
enp0s25   Link encap:Ethernet  HWaddr 3c:97:0e:8b:1c:f7  
  inet addr:192.168.1.55  Bcast:192.168.1.255  Mask:255.255.255.0
  inet6 addr: 2a01:348:2f4:0:500a:2414:2c90:c93f/64 Scope:Global
  inet6 addr: 2a01:348:2f4:0:3e97:eff:fe8b:1cf7/64 Scope:Global
  inet6 addr: fe80::3e97:eff:fe8b:1cf7/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:1915888 errors:0 dropped:0 overruns:0 frame:0
  TX packets:1138861 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:1274759427 (1.2 GB)  TX bytes:245631258 (245.6 MB)
  Interrupt:20 Memory:f250-f252 

loLink encap:Local Loopback  
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:65536  Metric:1
  RX packets:488179 errors:0 dropped:0 overruns:0 frame:0
  TX packets:488179 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0 
  RX bytes:478800129 (478.8 MB)  TX bytes:478800129 (478.8 MB)

lxcbr0Link encap:Ethernet  HWaddr fe:bc:1a:a4:e8:8b  
  inet addr:10.0.3.1  Bcast:0.0.0.0  Mask:255.255.255.0
  inet6 addr: fe80::588b:36ff:fe4c:16a1/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:55074 errors:0 dropped:0 overruns:0 frame:0
  TX packets:101667 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:3030040 (3.0 MB)  TX bytes:137601964 (137.6 MB)

tun0  Link encap:UNSPEC  HWaddr 
00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
  inet addr:10.172.66.102  P-t-P:10.172.66.102  Mask:255.255.192.0
  inet6 addr: 2001:67c:1562:8007::aac:4266/64 Scope:Global
  UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1350  Metric:1
  RX packets:730681 errors:0 dropped:0 overruns:0 frame:0
  TX packets:546837 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:100 
  RX bytes:622180030 (622.1 MB)  TX bytes:44542489 (44.5 MB)

vethW3CGCX Link encap:Ethernet  HWaddr fe:bc:1a:a4:e8:8b  
  inet6 addr: fe80::fcbc:1aff:fea4:e88b/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:10271 errors:0 dropped:0 overruns:0 frame:0
  TX packets:19275 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:707804 (707.8 KB)  TX bytes:26069334 (26.0 MB)

virbr0Link encap:Ethernet  HWaddr 52:54:00:68:cd:64  
  inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
  UP BROADCAST MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

virbr0-nic Link encap:Ethernet  HWaddr 52:54:00:68:cd:64  
  BROADCAST MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:500 
  RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

wlp3s0Link encap:Ethernet  HWaddr 6c:88:14:09:bc:bc  
  BROADCAST MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000 
  RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

Proposed merge:

$ ifconfig -a
enp0s25: flags=4163  mtu 1500
inet 192.168.1.55  netmask 255.255.255.0  broadcast 192.168.1.255
inet6 2a01:348:2f4:0:500a:2414:2c90:c93f  prefixlen 64  scopeid 
0x0
inet6 2a01:348:2f4:0:3e97:eff:fe8b:1cf7  prefixlen 64  scopeid 
0x0
inet6 fe80::3e97:eff:fe8b:1cf7  prefixlen 64  scopeid 0x20
ether 3c:97:0e:8b:1c:f7  txqueuelen 1000  (Ethernet)
RX packets 1911996  bytes 1273165747 (1.2 GB)
RX errors 0  dropped 0  overruns 0  frame 0
TX packets 1135333  bytes 244911818 (244.9 MB)
TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
device interrupt 20  memory 0xf250-f252  

lo: flags=73  mtu 65536
inet 127.0.0.1  netmask 255.0.0.0
inet6 ::1  prefixlen 128  scopeid 0x10
loop  txqueuelen 0  (Local Loopback)
RX packets 487716  bytes 478739787 (478.7 MB)
RX errors 0  dropped 0  overruns 0  frame 0
TX packets 487716  bytes 478739787 (478.7 MB)
TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lxcbr0: 

[Bug 1554490] Re: Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

2016-03-08 Thread Robie Basak
** Tags added: upgrade-software-version

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

Title:
  Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

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

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


[Bug 1554490] Re: (Don't) Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

2016-03-08 Thread James Page
** Summary changed:

- Merge net-tools 1.60+git20150829.73cef8a-2 from unstable
+ (Don't) Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

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

Title:
  (Don't) Merge net-tools 1.60+git20150829.73cef8a-2 from unstable

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

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


[Bug 1554214] Re: Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

2016-03-08 Thread ChristianEhrhardt
Hi - here a minor update

Regarding:
NOTE: To make it work manually, the module "vfio-pci" must be declared at 
"/etc/modules" as well.

Yes it is required to load the module before dpdk_nic_bind, if running manually 
you have to do it some way on your own e.g. /etc/modules.
If using the init scripts they will take care of it before calling 
dpdk_nic_bind.


Also regarding vfio in general there is a lot of things that can go wrong 
regarding the actual iommu setup.
I don't think that is your issue, but as FYI you might want to read into the 
references in this mail => 
http://dpdk.org/ml/archives/dev/2016-February/05.html

going on to try this on my machine now ...

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

Title:
  Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

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

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


[Bug 1554509] [NEW] Screen remains black after resume from hibernation

2016-03-08 Thread YS1
Public bug reported:

I am currently testing Xubuntu 16.04 beta. Hibernation does not work
properly.

I ran sudo pm-hibernate, then rebooted.
The hibernation part itself seems to work nice.

Resuming presents the following behaviour :
 - the booting sequence starts
 - the console shows the progress of the resuming process (10%, 20%, etc.)
 - my monitor switches to graphical mode like I would expect, but it then 
remains black instead of showing my desktop. It does not go to "sleep mode" 
like it does when the computer is off or the DVI cable is disconnected.

The computer remains responsive, and if music was playing when
hibernation started, it properly resumes. I can also use the keyboard
(to run sudo reboot now, for example). Switching to another virtual
console (Ctrl+Alt+1, Ctrl+Alt+7) does not improve the situation.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: pm-utils 1.4.1-16
ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
Uname: Linux 4.4.0-10-generic x86_64
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
Date: Tue Mar  8 14:03:50 2016
InstallationDate: Installed on 2016-03-06 (2 days ago)
InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=fr_FR
 TERM=xterm
 PATH=(custom, no user)
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: pm-utils
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  Screen remains black after resume from hibernation

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

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


[Bug 1554509] Re: Screen remains black after resume from hibernation

2016-03-08 Thread YS1
** Attachment added: "lspci"
   
https://bugs.launchpad.net/ubuntu/+source/pm-utils/+bug/1554509/+attachment/4592623/+files/lspci

** Description changed:

  I am currently testing Xubuntu 16.04 beta. Hibernation does not work
  properly.
  
  I ran sudo pm-hibernate, then rebooted.
  The hibernation part itself seems to work nice.
  
  Resuming presents the following behaviour :
-  - the booting sequence starts
-  - the console shows the progress of the resuming process (10%, 20%, etc.)
-  - then my monitor switches to graphical mode like I would expect, but it 
then remains black instead of showing my desktop. It does not go to "sleep 
mode" like it does when the computer is off or the DVI cable is disconnected.
+  - the booting sequence starts
+  - the console shows the progress of the resuming process (10%, 20%, etc.)
+  - my monitor switches to graphical mode like I would expect, but it then 
remains black instead of showing my desktop. It does not go to "sleep mode" 
like it does when the computer is off or the DVI cable is disconnected.
  
  The computer remains responsive, and if music was playing when
  hibernation started, it properly resumes. I can also use the keyboard
  (to run sudo reboot now, for example). Switching to another virtual
- consoles (Ctrl+Alt+1, Ctrl+Alt+7) does not improve the situation.
+ console (Ctrl+Alt+1, Ctrl+Alt+7) does not improve the situation.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pm-utils 1.4.1-16
  ProcVersionSignature: Ubuntu 4.4.0-10.25-generic 4.4.3
  Uname: Linux 4.4.0-10-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  Date: Tue Mar  8 14:03:50 2016
  InstallationDate: Installed on 2016-03-06 (2 days ago)
  InstallationMedia: Xubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160224)
  PackageArchitecture: all
  ProcEnviron:
-  LANGUAGE=fr_FR
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=fr_FR.UTF-8
-  SHELL=/bin/bash
+  LANGUAGE=fr_FR
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=fr_FR.UTF-8
+  SHELL=/bin/bash
  SourcePackage: pm-utils
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Screen remains black after resume from hibernation

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

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


[Bug 831487] Re: Dependency on package unattended-upgrades on Ubuntu Server

2016-03-08 Thread Dustin Kirkland 
I agree, would be nice if unattended-upgrades could be removed, without
affecting anything else.

** Also affects: software-properties (Ubuntu Xenial)
   Importance: High
   Status: Triaged

** Changed in: software-properties (Ubuntu Xenial)
 Assignee: (unassigned) => Michael Vogt (mvo)

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

Title:
  Dependency on package unattended-upgrades on Ubuntu Server

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

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


[Bug 831487] Re: Dependency on package unattended-upgrades on Ubuntu Server

2016-03-08 Thread Dustin Kirkland 
Patch attached.

** Patch added: "831487.patch"
   
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/831487/+attachment/4592638/+files/831487.patch

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

Title:
  Dependency on package unattended-upgrades on Ubuntu Server

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

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


[Bug 831487] Re: Dependency on package unattended-upgrades on Ubuntu Server

2016-03-08 Thread Robie Basak
09:20  rbasak: I htink we can drop this dependency, we just need to
make sure that the GUI does not offer to set "auto-install-security-
updates"

We agreed that dropping the dependency should be fine once the GUI is
checked/fixed, and then we can seed (recommend) unattended-upgrades from
seeds as 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/831487

Title:
  Dependency on package unattended-upgrades on Ubuntu Server

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

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


[Bug 1554214] Re: Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

2016-03-08 Thread ChristianEhrhardt
The root cause is very easy - the "-" to "_" conversion in the scripts.
I'll have to discuss why that was added as it is from before my time.

I'll let you know about a solution.

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

Title:
  Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

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

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


[Bug 1435706] Re: DevLossTO, FastIoFailTO settings do not match multipath.conf expected values

2016-03-08 Thread Mauricio Faria de Oliveira
Hi @toreanderson,

The not relevant statement is not at you :) just explaining why I didn't
verify on vivid.

I've seen some reports that this functionality is no longer working on
Trusty too.

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

Title:
  DevLossTO, FastIoFailTO settings do not match multipath.conf expected
  values

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

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


[Bug 1554540] Re: DHCP unicast requests are not responding

2016-03-08 Thread Eric Desrochers
Upstream bug for OpenStack Compute (nova):
https://bugs.launchpad.net/nova/+bug/1554227

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

Title:
  DHCP unicast requests are not responding

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

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


[Bug 1554540] [NEW] DHCP unicast requests are not responding

2016-03-08 Thread Eric Desrochers
Public bug reported:

Issue:
We run nova-network in VLAN+multi_host mode on Kilo and notice that only one 
dnsmasq process (either the oldest or newest) on the hypervisor responds to 
unicast BOOTPREQUESTS. dhclient on VMs will retry until it eventually gives up 
and broadcasts the request, which is then responded to. Depending on the timing 
of the DHCP broadcast request, VMs can briefly lose connectivity as they 
attempt rebinding.

According to
http://thekelleys.org.uk/gitweb/?p=dnsmasq.git;a=commitdiff;h=9380ba70d67db6b69f817d8e318de5ba1e990b12,
it seems that passing "--interface" argument, in addition to "--bind-
interfaces" is necessary for dnsmasq to work correctly in VLAN mode.

Reproduce steps:
1. Create two tenants
2. Create a VM under each tenant, forcing the VMs to run on a single 
hypervisor. I tested with a vanilla Ubuntu cloud image, but any other image 
that uses dhclient should also work.
3. On the hypervisor, run dhcpdump -i  for each tenant's 
bridge interface. On at least one of them, you should see unicast BOOTPREQUEST 
with no corresponding BOOTPREPLY. dnsmasq will reply when the request 
eventually hits 255.255.255.255.

Nova/Openstack/dnsmasq versions:
ii nova-api 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - API frontend
ii nova-common 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - common files
ii nova-compute 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - compute node 
base
ii nova-compute-libvirt 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - 
compute node libvirt support
ii nova-compute-qemu 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - compute 
node (QEmu)
ii nova-network 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - Network 
manager
ii nova-novncproxy 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute - NoVNC 
proxy
ii python-nova 1:2015.1.2-0ubuntu2~cloud0 all OpenStack Compute Python libraries
ii python-nova-adminclient 0.1.8-0ubuntu2 amd64 client for administering 
Openstack Nova
ii python-novaclient 1:2.22.0-0ubuntu2~cloud0 all client library for OpenStack 
Compute API
ii dnsmasq-base 2.68-1ubuntu0.1 amd64 Small caching DNS proxy and DHCP/TFTP 
server
ii dnsmasq-utils 2.68-1ubuntu0.1 amd64 Utilities for manipulating DHCP lease

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

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

Title:
  DHCP unicast requests are not responding

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

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


[Bug 1554266] Re: sshd does not start on newly installed desktop system

2016-03-08 Thread Max Brustkern
Can I pin i-s-h during install or is there some other way I can help
verify this?

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

Title:
  sshd does not start on newly installed desktop system

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

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


[Bug 1540407] Comment bridged from LTC Bugzilla

2016-03-08 Thread bugproxy
--- Comment From thorsten.di...@de.ibm.com 2016-03-08 09:40 EDT---
Ryan,  what's your decision regarding this defect? Since I have to repeat many 
tests with that fixed multipath version, I'm really looking forward to get it 
soon.

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

Title:
  multipathd drops paths of a temporarily lost device

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

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


[Bug 1473691] Re: [FFe] squid: Update to latest upstream release (3.5)

2016-03-08 Thread Dan Watkins
On a xenial system, when enabling xenial-proposed and running "apt-get
install squid", I get the below error. Note that I have 'DAEMON=nope' in
/etc/default/squid3 to stop squid3 from starting (because it's only
installed for squid-deb-proxy).

Setting up squid (3.5.12-1ubuntu1) ...
Removing obsolete conffile /etc/squid3/msntauth.conf ...
Removing obsolete conffile /etc/init/squid3.conf ...
Failed to stop squid3.service: Unit squid3.service not loaded.
invoke-rc.d: initscript squid3, action "stop" failed.
dpkg: error processing package squid (--configure):
 subprocess installed post-installation script returned error exit status 5
Processing triggers for systemd (229-2ubuntu1) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for ufw (0.35-0ubuntu1) ...
Errors were encountered while processing:
 squid
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  [FFe] squid: Update to latest upstream release (3.5)

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

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


[Bug 831487] Re: Dependency on package unattended-upgrades on Ubuntu Server

2016-03-08 Thread Dustin Kirkland 
@racb, who's going to fix the GUI?

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

Title:
  Dependency on package unattended-upgrades on Ubuntu Server

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

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


[Bug 1540407] Re: multipathd drops paths of a temporarily lost device

2016-03-08 Thread ChristianEhrhardt
FYI - stalled on FCP setup in RT 89162

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

** Changed in: multipath-tools (Ubuntu)
   Importance: Undecided => High

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

Title:
  multipathd drops paths of a temporarily lost device

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

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


[Bug 1342083] Re: "Failed to create chardev" due to apparmor DENIED execute of "/usr/lib/pt_chown"

2016-03-08 Thread Arulraj
** Changed in: libvirt (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 libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/1342083

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

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

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


[Bug 1554543] Re: [MIR] python-rcssmin python-rjsmin python-csscompressor

2016-03-08 Thread Mathieu Trudel-Lapierre
** Changed in: python-csscompressor (Ubuntu)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (mathieu-tl)

** Changed in: python-rcssmin (Ubuntu)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (mathieu-tl)

** Changed in: python-rjsmin (Ubuntu)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (mathieu-tl)

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

Title:
  [MIR] python-rcssmin python-rjsmin python-csscompressor

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

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


[Bug 1554589] [NEW] ubuntu-cloudimg-query should know about s390x and powerpc

2016-03-08 Thread Dimitri John Ledkov
Public bug reported:

ubuntu-cloudimg-query should know about s390x and powerpc

such that on trusty one can query xenial things.

testcase:

$ ubuntu-cloudimg-query --format "%{url}\n" xenial daily s390x

Expected output of type:
https://cloud-images.ubuntu.com/server/xenial/20160308/xenial-server-cloudimg-s390x.tar.gz

Current output:
confused by argument: s390x

** Affects: cloud-utils (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: cloud-utils (Ubuntu Trusty)
 Importance: Undecided
 Status: In Progress

** Affects: cloud-utils (Ubuntu Wily)
 Importance: Undecided
 Status: In Progress

** Affects: cloud-utils (Ubuntu Xenial)
 Importance: Undecided
 Status: Fix Released


** Tags: s390x

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

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

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

** Changed in: cloud-utils (Ubuntu Trusty)
   Status: New => In Progress

** Changed in: cloud-utils (Ubuntu Wily)
   Status: New => In Progress

** Changed in: cloud-utils (Ubuntu Xenial)
   Status: New => Fix Released

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

Title:
  ubuntu-cloudimg-query should know about s390x and powerpc

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

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


[Bug 1553221] Re: Very slow connecting to various sites

2016-03-08 Thread flocculant
marked this invalid - did a clean install of xenial and no longer
affected


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

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

Title:
  Very slow connecting to various sites

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

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


[Bug 1549361] Re: /dev/kvm has wrong permissions

2016-03-08 Thread Christian Felsing
New installation of Ubuntu 14.04LTS fixed problem. May be something bad
happened locally and caused that problem. Bug may be closed.

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

Title:
  /dev/kvm has wrong permissions

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

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


[Bug 1541810] Re: libvirt-bin.service does not read /etc/default/libvirt-bin

2016-03-08 Thread Serge Hallyn
** Changed in: libvirt (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  libvirt-bin.service does not read /etc/default/libvirt-bin

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

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


[Bug 831487] Re: Dependency on package unattended-upgrades on Ubuntu Server

2016-03-08 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

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

Title:
  Dependency on package unattended-upgrades on Ubuntu Server

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

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


[Bug 1554397] Re: dpdk-init fails due to missing modules in virt environments

2016-03-08 Thread ChristianEhrhardt
** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  dpdk-init fails due to missing modules in virt environments

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

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


[Bug 1551796] Re: DPDK build should avoid using uname -m

2016-03-08 Thread ChristianEhrhardt
** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  DPDK build should avoid using uname -m

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

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


[Bug 1551601] Re: DPDK init scripts need some hardening against broken specifications in /etc/dpdk/interfaces

2016-03-08 Thread ChristianEhrhardt
** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  DPDK init scripts need some hardening against broken specifications in
  /etc/dpdk/interfaces

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

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


[Bug 1551767] Re: DPDK hugepage config in /etc/dpdk/dpdk.conf should provide 1G pages as well

2016-03-08 Thread ChristianEhrhardt
** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  DPDK hugepage config in /etc/dpdk/dpdk.conf should provide 1G pages as
  well

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

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


[Bug 1551752] Re: DPDK Testpmd failing with Xen specific gntalloc in non-Xen environments

2016-03-08 Thread ChristianEhrhardt
** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  DPDK Testpmd failing with Xen specific gntalloc in non-Xen
  environments

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

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


[Bug 1551419] Re: [SRU] Handle changing UUID endian-ness on Azure in cloud-init

2016-03-08 Thread Dan Watkins
I have tested all of the above cases with the cloud-init from -proposed
and it behaved as expected.

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

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

Title:
  [SRU] Handle changing UUID endian-ness on Azure in cloud-init

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

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


[Bug 1554214] Re: Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

2016-03-08 Thread ChristianEhrhardt
FYI - fix is in the queue for review & upload.
This bug should get auto-updated once it gets through.

** Changed in: dpdk (Ubuntu)
   Status: Triaged => Fix Committed

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

Title:
  Usege of vfio-pci module via /etc/dpdk/interfaces doesn't work

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

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


[Bug 1546550] Re: openvswitch-switch-dpdk links against libdpdk statically

2016-03-08 Thread ChristianEhrhardt
We looked at it and could confirm that the merge to OVS 2.5 and DPDK 2.2 
resolved that bug without us noticing :-/
So mark it properly as fix released.

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

** Changed in: openvswitch-dpdk (Ubuntu)
   Status: Triaged => Fix Released

** No longer affects: dpdk (Ubuntu)

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

Title:
  openvswitch-switch-dpdk links against libdpdk statically

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

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


[Bug 1549361] Re: /dev/kvm has wrong permissions

2016-03-08 Thread Serge Hallyn
Thanks for the update.  Marked the bug "invalid" meaning "we have lost
the machine which could reproduce"

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

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

Title:
  /dev/kvm has wrong permissions

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

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


[Bug 1554543] Re: [MIR] python-rcssmin python-rjsmin python-csscompressor

2016-03-08 Thread Mathieu Trudel-Lapierre
python-csscompressor MIR acked; there are probably easier ways to deal
with the rules file for running tests and skipping unnecessary commands
(which probably don't even need to be overriden), but this isn't a
blocker for main inclusion.

** Changed in: python-csscompressor (Ubuntu)
   Status: New => Fix Committed

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

Title:
  [MIR] python-rcssmin python-rjsmin python-csscompressor

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

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


[Bug 1549789] Re: [SRU] Updated walinuxagent to 2.0.16

2016-03-08 Thread Ben Howard
** Summary changed:

- Updated walinuxagent to 2.0.16
+ [SRU] Updated walinuxagent to 2.0.16

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

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

** Changed in: walinuxagent (Ubuntu Precise)
 Assignee: (unassigned) => Ben Howard (utlemming)

** Changed in: walinuxagent (Ubuntu Trusty)
 Assignee: (unassigned) => Ben Howard (utlemming)

** Changed in: walinuxagent (Ubuntu Precise)
   Importance: Undecided => High

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

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

Title:
  [SRU] Updated walinuxagent to 2.0.16

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

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


[Bug 1554543] Re: [MIR] python-rcssmin python-rjsmin python-csscompressor

2016-03-08 Thread Mathieu Trudel-Lapierre
python-rcssmin MIR acked; same observations apply as for python-
csscompressor.

python-rjsmin:
- please have the tests run, or explain why they shouldn't be run when the 
tests for the other packages for this MIR can.

** Changed in: python-rcssmin (Ubuntu)
   Status: New => Fix Committed

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

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

Title:
  [MIR] python-rcssmin python-rjsmin python-csscompressor

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

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


[Bug 1449744] Re: [SRU] OpenStack Kilo 2015.1 release

2016-03-08 Thread Launchpad Bug Tracker
** Branch linked: lp:~ddellav/ubuntu/xenial/manila/manila-share

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

Title:
  [SRU] OpenStack Kilo 2015.1 release

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

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


[Bug 1528583] Re: [FFe] Please update to MySQL 5.7 series

2016-03-08 Thread Robie Basak
I've uploaded an initial cut of the proposed 5.7 packaging to our PPA:
https://launchpad.net/~mysql-ubuntu/+archive/ubuntu/mysql-5.7/+packages
and my current work tree (still being rebased) is available at
https://git.launchpad.net/~racb/ubuntu/+source/mysql-5.7/log/?h=5.7v5ubuntu_dev2

I'd appreciate anyone who can test these packages to help inform the
release team about the regression risk for this FFe.

Here are my thoughts on what will be valuable to test and what probably
doesn't need testing.

What doesn't need testing first. This is about the packaging. We
generally trust upstream's QA process for MySQL itself as they have a
good track record on this. So once MySQL is running, we expect it to
work. So no need to test in detail that MySQL is functioning as
expected, expect where functionality interacts with packaging. Testing
that mysql-files and mysql-keyring are working is good, as is that
plugins work, since that interacts with how we ship the files. Testing
the functionality of the SELECT statement probably isn't, since that's a
core thing that is unlikely to be regressed by packaging.

Note that migrating from MariaDB to MySQL is not expected to work
currently unless you manage this process manually yourself.

Next, specific paths to test. We want to check that the package works
both when installed freshly on Xenial and also when upgrading from
Trusty or Wily. Other things that could influence success are how the
user installed on the previous release (eg. which packages were
installed and whether and how configuration files in /etc were changed -
see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813413 for an
example of a failure case in this area; this one is known to not be
fixed yet as we don't have a good answer).

Previous upgrade paths might also change behaviour - that is, the state
of /var/lib/mysql as it ended up by use of previous MySQL packaging
releases.

If you can help out with testing, please report back in this bug
detailing exactly what you tested and what your results are. Please
report both success and failure. Thanks!

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

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

Title:
  [FFe] Please update to MySQL 5.7 series

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

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


[Bug 1551351] Re: dhclient does not renew leases

2016-03-08 Thread Harry
I have tested this bug this way.

1) With the newest setup with all upgrades installed (Ubuntu Gnome)
there is 6-8 sec slow down when shutting down or rebooting. No delay at
start up.

2) I then downgraded the package isc-dhcp-client (4.3.3-5ubuntu9) to
isc-dhcp-client (4.3.3-5ubuunutu5). Also the packages libdns-export100
and libisc-export95 (both 9.9.5.dfsg-12.1ubuntu1) must be installed.

3) After one reboot (RAM) there is no more delays when shutting down or
rebooting.

Note, that the bug appeared right after isc-dhcp-client (4.3.3-5ubuntu7)
was installed on 19th February.

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

Title:
  dhclient does not renew leases

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

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


[Bug 1554540] Re: DHCP unicast requests are not responding

2016-03-08 Thread Billy Olsen
*** This bug is a duplicate of bug 1554227 ***
https://bugs.launchpad.net/bugs/1554227

** This bug has been marked a duplicate of bug 1554227
   DHCP unicast requests are not responded to

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

Title:
  DHCP unicast requests are not responding

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

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


[Bug 1554227] Re: DHCP unicast requests are not responded to

2016-03-08 Thread Billy Olsen
** Also affects: nova (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  DHCP unicast requests are not responded to

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

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


[Bug 1554227] Re: DHCP unicast requests are not responded to

2016-03-08 Thread Eric Desrochers
** Changed in: nova
   Status: New => Confirmed

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

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

Title:
  DHCP unicast requests are not responded to

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

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


[Bug 1551419] Re: [SRU] Handle changing UUID endian-ness on Azure in cloud-init

2016-03-08 Thread Launchpad Bug Tracker
This bug was fixed in the package cloud-init - 0.7.5-0ubuntu1.17

---
cloud-init (0.7.5-0ubuntu1.17) trusty; urgency=medium

  * Microsoft Azure:
- d/patches/lp-1551419-azure-handle-flipped-uuid-endianness.patch: Handle
  cases where the endianness of the DMI UUID used for the instance ID has
  changed since last boot.(LP: #1551419)

 -- Daniel Watkins   Wed, 02 Mar 2016
14:23:18 +

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

Title:
  [SRU] Handle changing UUID endian-ness on Azure in cloud-init

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

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


[Bug 1551419] Update Released

2016-03-08 Thread Chris J Arges
The verification of the Stable Release Update for cloud-init 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 cloud-init in Ubuntu.
https://bugs.launchpad.net/bugs/1551419

Title:
  [SRU] Handle changing UUID endian-ness on Azure in cloud-init

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

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


[Bug 1459724] Re: live-migration causes lack of access to instance

2016-03-08 Thread Markus Zoeller (markus_z)
Cleanup
===

This bug report has the status "Incomplete" since more than 30 days
and it looks like that there are no open reviews for it. To keep
the bug list sane, I close this bug with "won't fix". This does not
mean that it is not a valid bug report, it's more to acknowledge that
no progress can be expected here anymore. You are still free to push a
new patch for this bug. If you could reproduce it on the current master
code or on a maintained stable branch, please switch it to "Confirmed".
If you have the information which got asked when this got switched to
"Incomplete", add a comment and switch the report back to "New".

** Changed in: nova
   Status: Incomplete => Won't Fix

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

Title:
  live-migration causes lack of access to instance

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

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


[Bug 1551351] Re: dhclient does not renew leases

2016-03-08 Thread Doug Smythies
>From Stephan comment 14:

"Hm, of course, if one starts dhclient in debug mode (foreground) by
adding a "-d", everything does work."

Yes, that does seem to work, but only for about another day, at least in
my case. Thereafter, my ISP stopped returning my domain name, host name
and some other stuff, and would only renew the lease for 1 hour instead
of the normal 1 day. I suppose it doesn't matter because, I use
supersede directives for that stuff anyhow. From my tcpdump captures, I
have not been able to determine what, if anything, is different in the
request, including the option parameter list request.

In my opinion, this bug report should have an importance level of
critical.

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

Title:
  dhclient does not renew leases

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

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


[Bug 1554227] Related fix proposed to nova (master)

2016-03-08 Thread OpenStack Infra
Related fix proposed to branch: master
Review: https://review.openstack.org/290079

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

Title:
  DHCP unicast requests are not responded to

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

-- 
Ubuntu-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 1553757] Re: dbconfig-common: writing config to /etc/dbconfig-common/maas-region-controller.conf stat: cannot stat '/etc/dbconfig-common/maas-region-controller.conf': No such file or director

2016-03-08 Thread Paul Gevers
Hi Andres,


On 08-03-16 04:38, Andres Rodriguez wrote:
> So the reason we did this is because we wanted MAAS to be installed and we
> didn't want any question to be asked, so we decided to do the preseeding.

I recommend that you try to use dbc_prio_high=medium instead of your
current code. By default only questions with prio=high are asked, so I
think that the default behavior will be that dbconfig-common is run as
you desire, without removing the possibility by the admin to configure
otherwise. Also the default "remote-host" is localhost. You would also
need way less code to "work around" dbconfig-common "limitations".

> The registration piece is something that I found in another package, but
> allowed MAAS to register the preseed options, otherwise this would have
> failed!

My point is that is looks like you are registering the wrong question
for your template, aren't you? Or am I mistaken here/

Paul

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

Title:
  dbconfig-common: writing config to /etc/dbconfig-common/maas-region-
  controller.conf stat: cannot stat '/etc/dbconfig-common/maas-region-
  controller.conf': No such file or directory

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

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


[Bug 1551351] Re: dhclient does not renew leases

2016-03-08 Thread Doug Smythies
Correction 1: Stefan not Stephan, sorry.
Correction 2: Things broke down about another 1/2 day after the lease times 
changes to 1 hour. The client didn't seem to release this and resorted to 
broadcast type discover stuff. Then it was getting leases for 5 minutes, and 
the cycle continued until I re-booted.

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

Title:
  dhclient does not renew leases

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

-- 
Ubuntu-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 1553757] Re: dbconfig-common: writing config to /etc/dbconfig-common/maas-region-controller.conf stat: cannot stat '/etc/dbconfig-common/maas-region-controller.conf': No such file or director

2016-03-08 Thread Paul Gevers
Hi Andres,

On 08-03-16 04:41, Andres Rodriguez wrote:
> Sorry for the delay and thanks for looking into it. Good catch on the
> postrm. At least I know that's my fault. That being said, I wonder if
> unregistering the file actually explains why it doesn't get re-created.

Hmm, I was a bit to certain in my phrasing. I should have said: it COULD
be caused by the admin and the way maas handles purging. By no means did
I mean that it is certain here.

> The
> funny thing here is that this is the first time it actually does something
> similar (not creating the file), and the packaging hasn;'t really change in
> that area.

Neither has dbconfig-common.

> I'm gonna try to reproduce what you suggest with touching the file and see
> whether things get resolved with the fix to postrm..

Good.

By the way, I tried removing the configuration file while working with
one of my example packages (included in the source of dbconfig-common)
and the behavior of ucf is as expected.

Unfortunately, on my Debian system I can't easily check installing maas
with apt-get, as that is not available in Debian.

Paul

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

Title:
  dbconfig-common: writing config to /etc/dbconfig-common/maas-region-
  controller.conf stat: cannot stat '/etc/dbconfig-common/maas-region-
  controller.conf': No such file or directory

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

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


[Bug 1551351] Re: dhclient does not renew leases

2016-03-08 Thread Rob Whyte
Since I am running dhclient -d eth0 I have not been disconnected.  I do
not intend to run dhclient this way, it is a part of the minimal system
and should work in the background with no intervention. Who is actively
working on this bug from Cannonical?

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

Title:
  dhclient does not renew leases

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

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


[Bug 1549403] Re: [FFe]: improvements and fixes to cloud-init networking

2016-03-08 Thread Scott Moser
** Changed in: cloud-init (Ubuntu)
   Importance: Undecided => High

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

Title:
  [FFe]: improvements and fixes to cloud-init networking

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

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


[Bug 1528583] Re: [FFe] Please update to MySQL 5.7 series

2016-03-08 Thread Lars Tangvald
I've been testing the packages as we work on them, ironing out issues with 
upgrading from both 5.5 and 5.6 as we go (I'll need to rerun these tests for 
the currently uploaded package, though).
But I've only been testing on Xenial, i.e. installing 5.5/5.6 then replacing 
with 5.7, so I haven't done anything with testing the full upgrade from 
previous Ubuntu releases.
I've also not done much with testing custom configurations and databases with 
any significant amount of data in them.

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

Title:
  [FFe] Please update to MySQL 5.7 series

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

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


[Bug 1554227] Re: DHCP unicast requests are not responded to

2016-03-08 Thread Ubuntu Foundations Team Bug Bot
The attachment "nova-network-dnsmasq-vlan.patch" seems to be a patch.
If it isn't, please remove the "patch" flag from the attachment, remove
the "patch" tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

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

** Tags added: patch

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

Title:
  DHCP unicast requests are not responded to

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

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


[Bug 1551419] Re: [SRU] Handle changing UUID endian-ness on Azure in cloud-init

2016-03-08 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

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

Title:
  [SRU] Handle changing UUID endian-ness on Azure in cloud-init

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

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


[Bug 1554720] [NEW] Winbind maxing out CPU when AD user logs in with expired password

2016-03-08 Thread Mike
Public bug reported:

Hi,

My systems are Ubuntu 14.04.3 LTS with samba/winbind 2:4.1.6+dfsg-
1ubuntu2.14.04.11

I am experiencing issues as described in this Samba bug:
https://bugzilla.samba.org/show_bug.cgi?id=11038 which is entitled
'Logging with an account which has the "User must change password on
next logon" flag cause winbindd to use 100% cpu and stop answering
request'.

Jeremy Allison marked this as a blocker bug with the comment "We must
not ship another Samba release with this bug unfixed".

The bug appears to have been fixed in Samba 4.2 and 4.3 releases, but
not in 4.1. Is there any plan to port this bug fix into releases
available on Ubuntu 14.04 LTS?

Mike

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

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

Title:
  Winbind maxing out CPU when AD user logs in with expired password

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

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


[Bug 1547206] Re: Boot stalls on mountall "disk drive not ready" question in multipath-tools >= 0.4.9-3ubuntu7.5

2016-03-08 Thread Brian Murray
** Changed in: multipath-tools (Ubuntu)
 Assignee: (unassigned) => Mathieu Trudel-Lapierre (mathieu-tl)

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

Title:
  Boot stalls on mountall "disk drive not ready" question in multipath-
  tools >= 0.4.9-3ubuntu7.5

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

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


[Bug 1554761] [NEW] missing rules for block-iscsi.so and block-dmg.so

2016-03-08 Thread Jamie Strandboge
Public bug reported:

The libvirt-qemu policy has:

  # for rbd
  /etc/ceph/ceph.conf r,
  /usr/lib/x86_64-linux-gnu/qemu/block-rbd.so rm,

  # for curl
  /usr/lib/x86_64-linux-gnu/qemu/block-curl.so rm,


but starting VMs on up to date xenial resulted in:
[114243.449268] audit: type=1400 audit(1457474901.712:270): apparmor="DENIED" 
operation="file_mmap" profile="libvirt-3d246994-6329-40df-8b96-4fe95c52f12e" 
name="/usr/lib/x86_64-linux-gnu/qemu/block-iscsi.so" pid=29571 
comm="qemu-system-x86" requested_mask="m" denied_mask="m" fsuid=128 ouid=0
[114243.499942] audit: type=1400 audit(1457474901.760:271): apparmor="DENIED" 
operation="file_mmap" profile="libvirt-3d246994-6329-40df-8b96-4fe95c52f12e" 
name="/usr/lib/x86_64-linux-gnu/qemu/block-dmg.so" pid=29571 
comm="qemu-system-x86" requested_mask="m" denied_mask="m" fsuid=128 ouid=0


I suggest instead of the above doing:
  /usr/lib/@{multiarch}/qemu/*.so rm,

This will work on non-amd64 and will help future proof new helper libs.

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


** Tags: apparmor

** Tags added: apparmor

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

Title:
  missing rules for block-iscsi.so and block-dmg.so

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

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


[Bug 1554775] [NEW] Scripts do not work in nmap

2016-03-08 Thread Sergei Genchev
Public bug reported:

 Looks like in ubuntu 16.04 nmap is compiled without script support:

~$ nmap --script ssl-enum-ciphers example.com -p 443
nmap: unrecognized option '--script'
Nmap 7.01 ( https://nmap.org )
Usage: nmap [Scan Type(s)] [Options] {target specification}


nmap7.01-2ubuntu1

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

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

Title:
  Scripts do not work in nmap

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

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


[Bug 1528710] Re: overly agressive URLField validation causes failures

2016-03-08 Thread LaMont Jones
Any progress on getting this into xenial, or shall I just do an upload
so that I quit hitting it and wait for the eventual merge?

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

Title:
  overly agressive URLField validation causes failures

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

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


[Bug 1553419] Re: php7.0: update to latest version of packages from Debian unstable

2016-03-08 Thread Steve Langasek
php-pear synced.

** Changed in: php-pear (Ubuntu)
   Status: New => Fix Committed

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

Title:
  php7.0: update to latest version of packages from Debian unstable

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

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


[Bug 745958] Re: charon crashed with SIGABRT in start_thread()

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

** Changed in: strongswan (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  charon crashed with SIGABRT in start_thread()

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

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


[Bug 1554904] Re: smbd crashed with SIGABRT in strlen()

2016-03-08 Thread Apport retracing service
*** This bug is a duplicate of bug 1514766 ***
https://bugs.launchpad.net/bugs/1514766

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1514766, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593390/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593392/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593395/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593396/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593397/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593400/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1554904/+attachment/4593401/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1514766
   smbd crashed with SIGABRT in strlen() while accessing a share from a W7 
client

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  smbd crashed with SIGABRT in strlen()

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

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


[Bug 1554910] Re: named crashed with SIGABRT in isc_assertion_failed()

2016-03-08 Thread Apport retracing service
*** This bug is a duplicate of bug 1552801 ***
https://bugs.launchpad.net/bugs/1552801

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1552801, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593402/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593404/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593407/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593408/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593409/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593410/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1554910/+attachment/4593412/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1552801

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  named crashed with SIGABRT in isc_assertion_failed()

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

-- 
Ubuntu-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 1204530] Re: yppasswd results in a segmentation fault when run on clients or server

2016-03-08 Thread ChristianEhrhardt
Hi,
I realized that bug seems dormant :-/
So I wanted to let you know that I keep this unread in my inbox all the
time.
It juts currently buried under other priorities.

But I really intend to take a closer look at a potential SRU as soon as I
can.


Christian Ehrhardt
Software Engineer, Ubuntu Server
Canonical Ltd

On Mon, Feb 1, 2016 at 7:53 PM, AG <1204...@bugs.launchpad.net> wrote:

> Same here:  100+ users relying on NIS on Trusty. Fix would be highly
> appreciated.
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/1204530
>
> Title:
>   yppasswd results in a segmentation fault when run on clients or server
>
> Status in nis package in Ubuntu:
>   Fix Released
> Status in nis package in Debian:
>   Fix Released
>
> Bug description:
>   Sample output from a client (output is identical if run on the
>   server):
>
>   $ yppasswd
>   Changing NIS account information for  on .
>   Please enter old password:
>   Changing NIS password for  on .
>   Please enter new password:
>   Segmentation fault (core dumped)
>   $
>
>
>   This setup worked fine with the 12.04 LTS release. I've purged package
> nis a number of times and reinstalled and still get the same behavior. I've
> also removed a slave server from the network and reconfigured nis and still
> get the same behavior.
>
>   I thought about listing this as a security vulnerability since the
>   users cannot change their passwords.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 13.04
>   Package: nis 3.17-32ubuntu5
>   ProcVersionSignature: Ubuntu 3.8.0-26.38-generic 3.8.13.2
>   Uname: Linux 3.8.0-26-generic x86_64
>   ApportVersion: 2.9.2-0ubuntu8.1
>   Architecture: amd64
>   Date: Wed Jul 24 09:07:09 2013
>   InstallationDate: Installed on 2010-05-24 (1156 days ago)
>   InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64
> (20100429)
>   MarkForUpload: True
>   SourcePackage: nis
>   UpgradeStatus: Upgraded to raring on 2013-05-19 (65 days ago)
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/nis/+bug/1204530/+subscriptions
>

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

Title:
  yppasswd results in a segmentation fault when run on clients or server

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

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