Re: [Bug 1442674] Re: sysstat log corruption, time isn't changing

2015-08-19 Thread Dale Harris
Oh okay, I didn't know about -L being hard coded in there, missed
that.  I just ended up making sure the two cron jobs won't conflict
with each other, which is why I was saying it was a configuration
error on my part.

I did have:

*/5 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 -L 1 1
59 23 * * * root command -v debian-sa1 > /dev/null && debian-sa1 -L 60 2

But I've gone to:

2-58/2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 -L 1 1
59 23 * * * root command -v debian-sa1 > /dev/null && debian-sa1 -L 60 2

I'm pretty sure the two were conflicting. I haven't seen any problems
since making that change.

On Wed, Aug 19, 2015 at 8:39 PM, Bill Cole
 wrote:
> Note that the "-L" flag is hardcoded in the sa1 calls of sadc, so
> whatever locking that does is not fixing the issue. Seems like a
> possible upstream bug?
>
> I've had this issue in sysstat data files generated on machines ( n=9
> out of 48 sa?? files from 3 different machines) where the sysstat
> resolution has been changed to every 2 minutes by changing this line in
> /etc/cron.d/sysstat:
>
>  5-55/10 * * * * root command -v debian-sa1 > /dev/null && debian-
> sa1 1 1
>
> To:
>
> */2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1
>
> I've been able to salvage the files by looking for repeating binary
> patterns to figure out the size and offsets of sadc records, finding the
> one which is a runt, and rebuilding the file by splicing together the
> sections before and after it, making sure the resulting file is
> identical in size to the other full-day files that are parseable. This
> is not an easily documented process, as it requires eyeballing hexdump
> output and making educated guesses, but there are useful tips:
>
> 1. With "-S XALL" in SADC_OPTIONS, each record is 8-9KB, and for some reason 
> they seem to alternate between 2 sizes (!) 16 bytes different, e.g. 8528 
> bytes & 8544 bytes.
> 2. There is a header in the file between 850-900 bytes, so a good place to 
> start looking for patterns at the end of records (useful!) is ~9K.
> 3. EVERY time I've had this problem, the 2nd record has been a runt, 500-1500 
> bytes shorter than the normal records.
>
> Because excising the runt record yields what seems to be a perfectly
> good file, my guess is that the root cause is collision between the
> 23:59 run and the 00:00 run, with the sadc -L flag for some reason
> failing to do its job.
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1442674
>
> Title:
>   sysstat log corruption, time isn't changing
>
> Status in sysstat package in Ubuntu:
>   Invalid
>
> Bug description:
>   I'm seeing some log file corruption in sysstat, the time stamp
>   occasionally just stops changing. So the output I typically see is
>   like:
>
>
>   # sar
>
>   12:00:00 AM all  0.00  0.00  0.00  0.00  0.00  
> 0.00
>   12:00:00 AM all  0.00  0.00  0.00  0.00  0.00  
> 0.00
>   12:00:00 AM all  0.00  0.00  0.00  0.00  0.00  
> 0.00
>   End of system activity file unexpected
>
>   Typical output should be something like:
>
>   11:58:01 PM all  0.11  0.00  0.02  0.00  0.00 
> 99.87
>   11:59:01 PM all  0.06  0.00  0.02  0.00  0.00 
> 99.92
>   12:00:01 AM all  0.03  0.00  0.02  0.00  0.00 
> 99.95
>   Average:all  0.10  0.00  0.04  0.00  0.00 
> 99.86
>
>
>   I'm attaching some example logs files, sa09 is good, sa10 is corrupted.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 14.04
>   Package: sysstat 10.2.0-1
>   ProcVersionSignature: Ubuntu 3.13.0-46.77-generic 3.13.11-ckt15
>   Uname: Linux 3.13.0-46-generic x86_64
>   ApportVersion: 2.14.1-0ubuntu3.8
>   Architecture: amd64
>   Date: Fri Apr 10 14:44:10 2015
>   SourcePackage: sysstat
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   mtime.conffile..etc.cron.d.sysstat: 2015-03-25T18:44:29.274292
>   mtime.conffile..etc.sysstat.sysstat: 2015-03-25T18:44:29.198292
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/sysstat/+bug/1442674/+subscriptions


-- 
Dale Harris
rod...@maybe.org
rod...@gmail.com
/.-)

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

Title:
  sysstat log corruption, time isn't changing

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

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


[Bug 1442674] Re: sysstat log corruption, time isn't changing

2015-08-19 Thread Bill Cole
Note that the "-L" flag is hardcoded in the sa1 calls of sadc, so
whatever locking that does is not fixing the issue. Seems like a
possible upstream bug?

I've had this issue in sysstat data files generated on machines ( n=9
out of 48 sa?? files from 3 different machines) where the sysstat
resolution has been changed to every 2 minutes by changing this line in
/etc/cron.d/sysstat:

 5-55/10 * * * * root command -v debian-sa1 > /dev/null && debian-
sa1 1 1

To:

*/2 * * * * root command -v debian-sa1 > /dev/null && debian-sa1 1 1

I've been able to salvage the files by looking for repeating binary
patterns to figure out the size and offsets of sadc records, finding the
one which is a runt, and rebuilding the file by splicing together the
sections before and after it, making sure the resulting file is
identical in size to the other full-day files that are parseable. This
is not an easily documented process, as it requires eyeballing hexdump
output and making educated guesses, but there are useful tips:

1. With "-S XALL" in SADC_OPTIONS, each record is 8-9KB, and for some reason 
they seem to alternate between 2 sizes (!) 16 bytes different, e.g. 8528 bytes 
& 8544 bytes. 
2. There is a header in the file between 850-900 bytes, so a good place to 
start looking for patterns at the end of records (useful!) is ~9K. 
3. EVERY time I've had this problem, the 2nd record has been a runt, 500-1500 
bytes shorter than the normal records. 

Because excising the runt record yields what seems to be a perfectly
good file, my guess is that the root cause is collision between the
23:59 run and the 00:00 run, with the sadc -L flag for some reason
failing to do its job.

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

Title:
  sysstat log corruption, time isn't changing

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

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


[Bug 114836] Re: init script version control id not changed

2015-08-19 Thread Steve Beattie
dhcp3 was superceded by isc-dhcp between lucid and precise and therefore
is not available under any supported ubuntu release. Marking the task
dhcp3 as "Won't Fix".

** Changed in: dhcp3 (Ubuntu)
   Status: Triaged => Won't Fix

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

Title:
  init script version control id not changed

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

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


[Bug 594544] Re: get prompt about modified config file on upgrade from hardy to lucid

2015-08-19 Thread Steve Beattie
dhcp3 was superceded by isc-dhcp between lucid and precise and therefore
is not available under any supported ubuntu release. Marking the task
dhcp3 as "Won't Fix".

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

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

Title:
  get prompt about modified config file on upgrade from hardy to lucid

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

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


[Bug 727837] Re: dhcp3-server fails to drop privileges properly

2015-08-19 Thread Steve Beattie
dhcp3 was superceded by isc-dhcp between lucid and precise and therefore
is not available under any supported ubuntu release. Marking the task
dhcp3 as "Won't Fix".

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

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

Title:
  dhcp3-server fails to drop privileges properly

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

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


[Bug 1485719] Re: Uninitialized struct field in the fix for CVE-2015-5600 causes random auth failures

2015-08-19 Thread Colin Watson
This patch is unnecessary with OpenSSH 6.5p1 and newer, because
kbdint_alloc now uses xcalloc rather than xmalloc and thus zeroes the
entire structure.  The regression fix was thus only needed for precise
and not for later releases; I'll drop it from wily shortly when
resyncing with unstable, in the cause of keeping a smaller delta against
upstream.

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

Title:
  Uninitialized struct field in the fix for CVE-2015-5600 causes random
  auth failures

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

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


[Bug 1471561] Re: Typo in python-oslo packages: "transtional"

2015-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package python-oslo.middleware - 2.4.0-1

---
python-oslo.middleware (2.4.0-1) experimental; urgency=medium

  [ James Page ]
  * Fixup typo in transitional package description (LP: #1471561).

  [ Thomas Goirand ]
  * New upstream release.
  * Fixed (build-)depends for this release.
  * Removed debian/patches/do-not-run-test-on-toplevel-folder.patch.

 -- Thomas Goirand   Thu, 30 Jul 2015 09:10:35 +

** Changed in: python-oslo.middleware (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Typo in python-oslo packages: "transtional"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ddtp-ubuntu/+bug/1471561/+subscriptions

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


[Bug 1471561] Re: Typo in python-oslo packages: "transtional"

2015-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package python-oslo.log - 1.8.0-0ubuntu1

---
python-oslo.log (1.8.0-0ubuntu1) wily; urgency=medium

  * New upstream release.
  * Align (build)-depends with upstream.

 -- James Page   Wed, 05 Aug 2015 17:06:06 +0200

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

Title:
  Typo in python-oslo packages: "transtional"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ddtp-ubuntu/+bug/1471561/+subscriptions

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


[Bug 1471561] Re: Typo in python-oslo packages: "transtional"

2015-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package python-oslo.utils - 2.1.0-1

---
python-oslo.utils (2.1.0-1) experimental; urgency=medium

  [ Thomas Goirand ]
  * New upstream release.
  * Fixed && -> ; in debian/rules.
  * Fixed (build-)depends for this release.
  * Do not manually copy oslo/utils, as the namespace version is gone.

  [ James Page ]
  * Fixup typo in transitional package description (LP: #1471561).

 -- Thomas Goirand   Tue, 23 Jun 2015 23:45:52 +0200

** Changed in: python-oslo.utils (Ubuntu)
   Status: Fix Committed => Fix Released

** Changed in: python-oslo.log (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Typo in python-oslo packages: "transtional"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ddtp-ubuntu/+bug/1471561/+subscriptions

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


[Bug 1448800] Re: Please update iproute2 to the latest version

2015-08-19 Thread Launchpad Bug Tracker
This bug was fixed in the package iproute2 - 4.1.1-1ubuntu1

---
iproute2 (4.1.1-1ubuntu1) wily; urgency=medium

  * Merge with Debian, remaining changes (LP: #1448800):
   - debian/patches/1000-ubuntu-poc-fan-driver.patch
 Ubuntu FAN driver support V2 (LP: #1439706)
   - debian/patches/1001-ubuntu-poc-fan-driver-v3.patch
 Ubuntu FAN driver support V3 (LP: #1470091)

iproute2 (4.1.1-1) unstable; urgency=medium

  * [be9f298] Imported Upstream version 4.1.1

iproute2 (4.0.0-1) unstable; urgency=medium

  * [6dd90fb] Imported Upstream version 4.0.0
  * [03b830b] Remove obsolete patch
  0003-ip-link-Remove-unnecessary-device-checking
  * [8c27170] Refresh patches
  * [0c99cce] Bump standards version (no changes)

 -- Andy Whitcroft   Wed, 19 Aug 2015 09:59:35 +0100

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

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

Title:
  Please update iproute2 to the latest version

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

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


[Bug 1483161] Re: package amavisd-new-postfix 1:2.7.1-2ubuntu3 failed to install/upgrade: podproces nainštalovaný skript post-removal vrátil chybový kód 1

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

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

Title:
  package amavisd-new-postfix 1:2.7.1-2ubuntu3 failed to
  install/upgrade: podproces nainštalovaný skript post-removal vrátil
  chybový kód 1

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

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


[Bug 1483341] Re: package exim4-config (not installed) failed to install/upgrade: konflikt balíkov - nebude sa inštalovať exim4-config

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

** Information type changed from Private Security to Public

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

Title:
  package exim4-config (not installed) failed to install/upgrade:
  konflikt balíkov - nebude sa inštalovať exim4-config

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

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


[Bug 1483161] Re: package amavisd-new-postfix 1:2.7.1-2ubuntu3 failed to install/upgrade: podproces nainštalovaný skript post-removal vrátil chybový kód 1

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

** Information type changed from Private Security to Public

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

Title:
  package amavisd-new-postfix 1:2.7.1-2ubuntu3 failed to
  install/upgrade: podproces nainštalovaný skript post-removal vrátil
  chybový kód 1

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

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


[Bug 1483341] Re: package exim4-config (not installed) failed to install/upgrade: konflikt balíkov - nebude sa inštalovať exim4-config

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

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

Title:
  package exim4-config (not installed) failed to install/upgrade:
  konflikt balíkov - nebude sa inštalovať exim4-config

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

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


[Bug 1483341] Re: package exim4-config (not installed) failed to install/upgrade: konflikt balíkov - nebude sa inštalovať exim4-config

2015-08-19 Thread Steve Beattie
Seems to be a dependency conflict that is causing both postfix and exim4
to be installed.

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

Title:
  package exim4-config (not installed) failed to install/upgrade:
  konflikt balíkov - nebude sa inštalovať exim4-config

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

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


[Bug 1481780] Re: ipmitool 1.8.13 needs 2 patches for OpenPower systems

2015-08-19 Thread Mathew Hodson
** Tags removed: verification-needed
** Tags added: verification-needed-trusty

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

Title:
  ipmitool 1.8.13 needs 2 patches for OpenPower systems

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

-- 
Ubuntu-server-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

2015-08-19 Thread Mathew Hodson
Reopening the Trusty task based on
https://bugs.launchpad.net/ubuntu/+source/multipath-
tools/+bug/1468897/comments/15 and comment #17 from this bug, which
suggests this fix isn't complete.

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to 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 1350947] Re: apparmor: no working rule to allow making a mount private

2015-08-19 Thread JuanJo Ciarlante
FYI I'm able to successfully drive netns inside LXC, manually then also 
via openstack neutron-gateways, via this crafted aa profile:
/etc/apparmor.d/lxc/lxc-default-with-netns ->
https://gist.github.com/jjo/ff32b08e48e4a52bfc36

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

Title:
  apparmor: no working rule to allow making a mount private

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

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


[Bug 1486696] [NEW] lxc-create -B btrfs fails if lxc.lxcpath is not on the same filesystem as /var/cache/lxc (not a configurable option)

2015-08-19 Thread Shawn Teague
Public bug reported:

## Version
Description:Ubuntu 15.04
Release:15.04
lxc:
  Installed: 1.1.2-0ubuntu3.1
  Candidate: 1.1.2-0ubuntu3.1
  Version table:
 *** 1.1.2-0ubuntu3.1 0
500 http://us.archive.ubuntu.com/ubuntu/ vivid-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ vivid-security/main amd64 
Packages
100 /var/lib/dpkg/status
 1.1.2-0ubuntu3 0
500 http://us.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages

## Config changes from default
>cat /etc/lxc/lxc.conf 
lxc.lxcpath = /srv/vservers/lxc

## Mount details
/var/cache/lxc in on root filesystem
/srv/vservers/lxc is a btrfs mount point

## Command used (sample)
> sudo lxc-create -B btrfs --name test-bt -t ubuntu -- -r trusty

## Error (sample)
Copy /var/cache/lxc/trusty/rootfs-amd64 to /srv/vservers/lxc/test-bt/rootfs ... 
Copying rootfs to /srv/vservers/lxc/test-bt/rootfs ...
Transaction commit: none (default)
Delete subvolume '/srv/vservers/lxc/test-bt/rootfs'
Create a snapshot of '/var/cache/lxc/trusty/rootfs-amd64' in 
'/srv/vservers/lxc/test-bt/rootfs'
ERROR: cannot snapshot '/var/cache/lxc/trusty/rootfs-amd64' - Invalid 
cross-device link
lxc_container: lxccontainer.c: create_run_template: 1108 container creation 
template for test-bt failed
lxc_container: lxccontainer.c: container_destroy: 2056 Error destroying rootfs 
for test-bt
lxc_container: lxc_create.c: main: 274 Error creating container test-bt

## Thoughts
Maybe this is the expected behavior, if so a Documentation update stating 
something to the effect of "If you change the lxcpath to a different filesystem 
than the one where /var/cache/lxc livs you cannot create a btrfs backed 
container."
-or-
Let /var/cache/lxc be configured via lxc.conf and have the documentation note 
that they should reside on the same filesystem.

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

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

Title:
  lxc-create -B btrfs fails if lxc.lxcpath is not on the same filesystem
  as /var/cache/lxc (not a configurable option)

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

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


[Bug 1266432] Re: nova-objectstore: Typo in package description: "is the package contains"

2015-08-19 Thread Hans Joachim Desserud
Hm... I discovered the lp branch for this package seemed stuck at an
older version so my merge proposal was based on that one. So instead of
the merge proposal, please take a look at the attached debdiff which is
based on the latest version in Wily.

** Patch added: "nova.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1266432/+attachment/4448794/+files/nova.debdiff

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

Title:
  nova-objectstore: Typo in package description: "is the package
  contains"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ddtp-ubuntu/+bug/1266432/+subscriptions

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


[Bug 1324856] Re: Ubuntu source package for neutron can not be rebuild

2015-08-19 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/neutron

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

Title:
   Ubuntu source package for neutron can not be rebuild

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

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


[Bug 1486654] [NEW] ssh-keygen fails to create keys when FQDN=64 chars

2015-08-19 Thread Javier Bahillo
Public bug reported:

According to RFC's a FQDN hostname may have up to 64 chars. Nevertheless
ssh-keygen fails to create a key when it has exactly these 64 chars:

Hostname (edited to hide , but with same amount of chars):

abcde-frontend-abcde-frontend-2-i-9b90b8d9.dyn.abcde.abcdfer.com

It fails with this message:
gethostname: File name too long

Not being able to create a key means that openssh-server postinst will
fail with this message:

Setting up openssh-server (1:6.6p1-2ubuntu1) ...
Creating SSH2 ED25519 key; this may take some time ...gethostname: File name 
too long
dpkg: error processing package openssh-server (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 openssh-server
E: Sub-process /usr/bin/dpkg returned an error code (1)


Tested on:
Ubuntu 14.04 LTS

openssh-client versions tested:
  Installed: 1:6.6p1-2ubuntu1
  Candidate: 1:6.6p1-2ubuntu2.3


Looks like s imilar bug report on RedHat bug tracker: 
https://bugzilla.redhat.com/show_bug.cgi?id=1097665

** 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/1486654

Title:
  ssh-keygen fails to create keys when FQDN=64 chars

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

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


[Bug 1445624] Re: Change SSH defaults to non-SHA-1 by 16.04

2015-08-19 Thread Colin Watson
This is done in OpenSSH 7.0, but I plan to hold off on that for at least
a while to see if we can get Twisted Conch beaten into shape to support
SHA-2; the idea of spending months supporting people having to cope with
configuration changes from the default Ubuntu installation in order to
access Launchpad Bazaar/Git does not appeal ...

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

Title:
  Change SSH defaults to non-SHA-1 by 16.04

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

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


[Bug 1461012] Re: Hugepage and KSM not configured correctly under systemd

2015-08-19 Thread Rajkumar
Hi Serge,
Thanks for the info. we will wait for the fix. Thanks again.

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

Title:
  Hugepage and KSM not configured correctly under systemd

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

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


[Bug 1486296] Re: Unable to start VMs under a lxc container

2015-08-19 Thread Ryan Harper
Wily VM with wily container does not recreate this issue.

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

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

Title:
  Unable to start VMs under a lxc container

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

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


[Bug 1484682] Re: memory leak in xl

2015-08-19 Thread Bug Watch Updater
** Changed in: xen (Debian)
   Status: Unknown => Fix Released

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

Title:
  memory leak in xl

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

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


[Bug 1456335] Re: neutron-vpn-netns-wrapper missing in Ubuntu Package

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

** Changed in: neutron-vpnaas (Ubuntu Vivid)
   Status: New => Confirmed

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

Title:
  neutron-vpn-netns-wrapper missing in Ubuntu Package

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

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


[Bug 1486107] Re: package openssh-server 1:6.6p1-2ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-08-19 Thread AlEueg
Does this mean there will be no fix?  I and others did NOT change our
configuration.  It's that this new update is failing.

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

Title:
  package openssh-server 1:6.6p1-2ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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


[Bug 1486630] [NEW] sshd does not wake up phone

2015-08-19 Thread Elbarbudo
Public bug reported:

When I open an ssh connection to my phone while the screen is off, it
does not connect nor wake up the phone.

As ssh is running in background, it should answer and connect, even if
the screen is off.

Going the screen "on" is not necessary.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: openssh-server 1:6.7p1-5ubuntu1
Uname: Linux 3.4.67 armv7l
ApportVersion: 2.17.2-0ubuntu1.1
Architecture: armhf
Date: Wed Aug 19 17:28:04 2015
InstallationDate: Installed on 2015-07-13 (36 days ago)
InstallationMedia: Ubuntu 15.04 - armhf (20150713-202300)
SourcePackage: openssh
UpgradeStatus: No upgrade log present (probably fresh install)
upstart.ssh.override:
 manual
 
 exec /usr/sbin/sshd -D -o PasswordAuthentication=no

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


** Tags: apport-bug armhf third-party-packages vivid

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

Title:
  sshd does not wake up phone

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

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


[Bug 1486626] [NEW] RFE: exim4-base : /etc/init.d/exim4

2015-08-19 Thread Lars
Public bug reported:

Hi Exim4-Team,
I have made some changes for me in the exim start script /etc/init.d/exim4 
which might be nice for other users, too.

The problems I had why I wanted to change the init script were because I
am using my own configuration which differs in some pathes for logs and
spool and so on. Even another exim_user and exim_group is used.

exim4 -bP  shows the value of the variable and I added this to
the script to gather more information from the exim config than to set
it hard.

The bad thing is: I changed the shell to bash to have it without several
awk-calls.

If you would accept the script without setting the shell to bash I can
do the conversions with awk-calls.

Greetings,
   Lars

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

** Attachment added: "exim4"
   https://bugs.launchpad.net/bugs/1486626/+attachment/4448713/+files/exim4

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

Title:
  RFE: exim4-base : /etc/init.d/exim4

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

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


[Bug 1486441] Re: udaddy fails with error "udaddy: failure creating address handle" (14.04.03)

2015-08-19 Thread Brian Murray
** Package changed: ubuntu => librdmacm (Ubuntu)

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

Title:
  udaddy fails with error "udaddy: failure creating address handle"
  (14.04.03)

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

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


[Bug 1486441] [NEW] udaddy fails with error "udaddy: failure creating address handle" (14.04.03)

2015-08-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

== Comment: #0 - Manvanthara B. Puttashankar  - 2015-08-12 
10:07:32 ==
---Problem Description---
udaddy fails with error "udaddy: failure creating address handle"
 
Contact Information = mputt...@in.ibm.com 
 
---uname output---
Linux atlas-01 3.19.0-25-generic #26~14.04.1-Ubuntu SMP Fri Jul 24 21:17:43 UTC 
2015 ppc64le ppc64le ppc64le GNU/Linux
 
Machine Type = 8286-42A  
 
---Steps to Reproduce---
 server"

root@ncc-1701:~/manu# ifconfig eth12
eth12 Link encap:Ethernet  HWaddr e4:1d:2d:10:8e:10
  inet addr:10.10.10.10  Bcast:10.10.10.255  Mask:255.255.255.0
  inet6 addr: fe80::e61d:2dff:fe10:8e10/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:520 errors:0 dropped:0 overruns:0 frame:0
  TX packets:591 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:224437 (224.4 KB)  TX bytes:213877 (213.8 KB)

root@ncc-1701:~/manu# ping6 -I eth12 fe80::e61d:2dff:fe10:8d60
PING fe80::e61d:2dff:fe10:8d60(fe80::e61d:2dff:fe10:8d60) from 
fe80::e61d:2dff:fe10:8e10 eth12: 56 data bytes
64 bytes from fe80::e61d:2dff:fe10:8d60: icmp_seq=1 ttl=64 time=0.119 ms
64 bytes from fe80::e61d:2dff:fe10:8d60: icmp_seq=2 ttl=64 time=0.059 ms
64 bytes from fe80::e61d:2dff:fe10:8d60: icmp_seq=3 ttl=64 time=0.065 ms
^C
--- fe80::e61d:2dff:fe10:8d60 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1998ms
rtt min/avg/max/mdev = 0.059/0.081/0.119/0.027 ms
root@ncc-1701:~/manu# udaddy
udaddy: starting server
receiving data transfers



client:

root@atlas-01:~/eio_src/bin/network# udaddy -s 10.10.10.10 -b 10.10.10.11
udaddy: starting client
udaddy: connecting
udaddy: failure creating address handle
test complete
return status -1
 
*Additional Instructions for mputt...@in.ibm.com: 
-Post a private note with access information to the machine that the bug is 
occuring on.

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


** Tags: architecture-ppc64le bot-comment bugnameltc-128933 severity-high 
targetmilestone-inin---
-- 
udaddy fails with error "udaddy: failure creating address handle" (14.04.03)
https://bugs.launchpad.net/bugs/1486441
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to librdmacm in Ubuntu.

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


[Bug 1227195] Re: new upstream release

2015-08-19 Thread Kick In
** Changed in: amavisd-new (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  new upstream release

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

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


[Bug 1468897] Re: multipath creates binding for Removable(USB) drives

2015-08-19 Thread Mike Rushton
Tested multipath-tools version Installed: 0.4.9-3ubuntu7.5 from the
proposed repository in Trusty. The test shows the problem resolved.

** 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 multipath-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1468897

Title:
  multipath creates binding for Removable(USB) drives

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

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


[Bug 1479661] Re: hacluster install hook fails on Vivid and Wily (openhpid init script error)

2015-08-19 Thread Ryan Beisner
#Vivid

ubuntu@1ea-vivid214622:~$ sudo apt-get install corosync pacemaker 
python-netaddr ipmitool
...
Setting up libpe-rules2 (1.1.12-0ubuntu2) ...
Setting up libcib4 (1.1.12-0ubuntu2) ...
Setting up libstonithd2 (1.1.12-0ubuntu2) ...
Setting up libcrmcluster4 (1.1.12-0ubuntu2) ...
Setting up libcrmservice1 (1.1.12-0ubuntu2) ...
Setting up libesmtp6 (1.0.6-4) ...
Setting up libheartbeat2 (1:3.0.5+hg12629-1.2) ...
Setting up liblrmd1 (1.1.12-0ubuntu2) ...
Setting up libpe-status4 (1.1.12-0ubuntu2) ...
Setting up libpengine4 (1.1.12-0ubuntu2) ...
Setting up libtransitioner2 (1.1.12-0ubuntu2) ...
Setting up openhpid (2.14.1-1.3ubuntu2) ...
Job for openhpid.service failed. See "systemctl status openhpid.service" and 
"journalctl -xe" for details.
invoke-rc.d: initscript openhpid, action "start" failed.
dpkg: error processing package openhpid (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up openipmi (2.0.18-0ubuntu8) ...
Setting up resource-agents (1:3.9.3+git20121009-3.1) ...
Setting up python-lxml (3.4.2-1) ...
Setting up python-yaml (3.11-2) ...
Setting up crmsh (1.2.6+git+e77add-1.3ubuntu2) ...
Setting up pacemaker-cli-utils (1.1.12-0ubuntu2) ...
Setting up python-bs4 (4.3.2-2ubuntu2) ...
Setting up python-html5lib (0.999-3) ...
Setting up python-netaddr (0.7.12-2) ...
Setting up libnss3-nssdb (2:3.19.2-0ubuntu15.04.1) ...
Setting up libnss3:amd64 (2:3.19.2-0ubuntu15.04.1) ...
Setting up libtotem-pg5 (2.3.4-0ubuntu1) ...
Setting up corosync (2.3.4-0ubuntu1) ...
Processing triggers for dbus (1.8.12-1ubuntu5) ...
Setting up pacemaker (1.1.12-0ubuntu2) ...
Adding group `haclient' (GID 119) ...
Done.
Warning: The home dir /var/lib/heartbeat you specified already exists.
Adding system user `hacluster' (UID 111) ...
Adding new user `hacluster' (UID 111) with group `haclient' ...
The home directory `/var/lib/heartbeat' already exists.  Not copying from 
`/etc/skel'.
adduser: Warning: The home directory `/var/lib/heartbeat' does not belong to 
the user you are currently creating.
Processing triggers for libc-bin (2.21-0ubuntu4) ...
Processing triggers for systemd (219-7ubuntu6) ...
Processing triggers for ureadahead (0.100.0-19) ...
Errors were encountered while processing:
 openhpid
E: Sub-process /usr/bin/dpkg returned an error code (1)
ubuntu@1ea-vivid214622:~$ 


** Description changed:

- pacemaker and/or openhpid in Vivid and Wily may need love
+ pacemaker and/or openhpid in Vivid and Wily may need love.
  
- # Vivid:
+ This occurs when manually installing on fresh Wily and Vivid instances:
+ ...
+ Setting up pacemaker (1.1.12-0ubuntu2) ...
+ Adding group `haclient' (GID 119) ...
+ Done.
+ Warning: The home dir /var/lib/heartbeat you specified already exists.
+ Adding system user `hacluster' (UID 111) ...
+ Adding new user `hacluster' (UID 111) with group `haclient' ...
+ The home directory `/var/lib/heartbeat' already exists. Not copying from 
`/etc/skel'.
+ adduser: Warning: The home directory `/var/lib/heartbeat' does not belong to 
the user you are currently creating.
+ 
+ 
+ # Observation from the charm perspective:
  http://paste.ubuntu.com/11964818/
  
  2015-07-30 07:27:14 INFO install Setting up openhpid (2.14.1-1.3ubuntu2) ...
  2015-07-30 07:27:15 INFO install Job for openhpid.service failed. See 
"systemctl status openhpid.service" and "journalctl -xe" for details.
  2015-07-30 07:27:15 INFO install invoke-rc.d: initscript openhpid, action 
"start" failed.
  2015-07-30 07:27:15 INFO install dpkg: error processing package openhpid 
(--configure):
  2015-07-30 07:27:15 INFO install  subprocess installed post-installation 
script returned error exit status 1
  2015-07-30 07:27:15 INFO install Errors were encountered while processing:
  2015-07-30 07:27:15 INFO install  openhpid
  2015-07-30 07:27:15 INFO install E: Sub-process /usr/bin/dpkg returned an 
error code (1)
  2015-07-30 07:27:15 INFO install Traceback (most recent call last):
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/install", line 405, in 

  2015-07-30 07:27:15 INFO install hooks.execute(sys.argv)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/core/hookenv.py",
 line 557, in execute
  2015-07-30 07:27:15 INFO install self._hooks[hook_name]()
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/install", line 87, in install
  2015-07-30 07:27:15 INFO install 
apt_install(filter_installed_packages(PACKAGES), fatal=True)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/fetch/__init__.py",
 line 183, in apt_install
  2015-07-30 07:27:15 INFO install _run_apt_command(cmd, fatal)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/fetch/__init__.py",
 line 428, in _run_apt_command
  2015-07-30 07:27:15 INFO instal

[Bug 1479661] Re: hacluster install hook fails on Vivid and Wily (openhpid init script error)

2015-08-19 Thread Ryan Beisner
# Wily
ubuntu@1ea-wily214622:~$ sudo apt-get install corosync pacemaker python-netaddr 
ipmitool
...
Setting up libesmtp6 (1.0.6-4) ...
Setting up libheartbeat2 (1:3.0.5+hg12629-1.2) ...
Setting up liblrmd1 (1.1.12-0ubuntu2) ...
Setting up libpe-status4 (1.1.12-0ubuntu2) ...
Setting up libpengine4 (1.1.12-0ubuntu2) ...
Setting up libtransitioner2 (1.1.12-0ubuntu2) ...
Setting up openhpid (2.14.1-1.3ubuntu2) ...
Job for openhpid.service failed because a configured resource limit was 
exceeded. See "systemctl status openhpid.service" and "journalctl -xe" for 
details.
invoke-rc.d: initscript openhpid, action "start" failed.
dpkg: error processing package openhpid (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up openipmi (2.0.18-0ubuntu8) ...
Setting up resource-agents (1:3.9.3+git20121009-3.1) ...
Setting up python-lxml (3.4.4-1) ...
Setting up python-yaml (3.11-2build1) ...
Setting up crmsh (1.2.6+git+e77add-1.3ubuntu2) ...
Setting up pacemaker-cli-utils (1.1.12-0ubuntu2) ...
Setting up python-bs4 (4.3.2-2ubuntu3) ...
Setting up python-chardet (2.3.0-1build1) ...
Setting up python-html5lib (0.999-3build1) ...
Setting up python-netaddr (0.7.15-1) ...
Setting up libnss3-nssdb (2:3.19.2-1ubuntu1) ...
Setting up libnss3:amd64 (2:3.19.2-1ubuntu1) ...
Setting up libtotem-pg5 (2.3.4-0ubuntu1) ...
Setting up corosync (2.3.4-0ubuntu1) ...
Processing triggers for dbus (1.8.12-1ubuntu5) ...
Setting up pacemaker (1.1.12-0ubuntu2) ...
Adding group `haclient' (GID 119) ...
Done.
Warning: The home dir /var/lib/heartbeat you specified already exists.
Adding system user `hacluster' (UID 112) ...
Adding new user `hacluster' (UID 112) with group `haclient' ...
The home directory `/var/lib/heartbeat' already exists.  Not copying from 
`/etc/skel'.
adduser: Warning: The home directory `/var/lib/heartbeat' does not belong to 
the user you are currently creating.
Processing triggers for libc-bin (2.21-0ubuntu4) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (224-1ubuntu3) ...
Errors were encountered while processing:
 openhpid
E: Sub-process /usr/bin/dpkg returned an error code (1)


** Summary changed:

- hacluster install hook fails on vivid (openhpid init script error)
+ hacluster install hook fails on Vivid and Wily (openhpid init script error)

** Description changed:

- openhpid in vivid may need love
+ pacemaker and/or openhpid in Vivid and Wily may need love
  
+ # Vivid:
  http://paste.ubuntu.com/11964818/
  
  2015-07-30 07:27:14 INFO install Setting up openhpid (2.14.1-1.3ubuntu2) ...
  2015-07-30 07:27:15 INFO install Job for openhpid.service failed. See 
"systemctl status openhpid.service" and "journalctl -xe" for details.
  2015-07-30 07:27:15 INFO install invoke-rc.d: initscript openhpid, action 
"start" failed.
  2015-07-30 07:27:15 INFO install dpkg: error processing package openhpid 
(--configure):
  2015-07-30 07:27:15 INFO install  subprocess installed post-installation 
script returned error exit status 1
  2015-07-30 07:27:15 INFO install Errors were encountered while processing:
  2015-07-30 07:27:15 INFO install  openhpid
  2015-07-30 07:27:15 INFO install E: Sub-process /usr/bin/dpkg returned an 
error code (1)
  2015-07-30 07:27:15 INFO install Traceback (most recent call last):
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/install", line 405, in 

  2015-07-30 07:27:15 INFO install hooks.execute(sys.argv)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/core/hookenv.py",
 line 557, in execute
  2015-07-30 07:27:15 INFO install self._hooks[hook_name]()
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/install", line 87, in install
  2015-07-30 07:27:15 INFO install 
apt_install(filter_installed_packages(PACKAGES), fatal=True)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/fetch/__init__.py",
 line 183, in apt_install
  2015-07-30 07:27:15 INFO install _run_apt_command(cmd, fatal)
  2015-07-30 07:27:15 INFO install   File 
"/var/lib/juju/agents/unit-hacluster-2/charm/hooks/charmhelpers/fetch/__init__.py",
 line 428, in _run_apt_command
  2015-07-30 07:27:15 INFO install result = subprocess.check_call(cmd, 
env=env)
  2015-07-30 07:27:15 INFO install   File "/usr/lib/python2.7/subprocess.py", 
line 540, in check_call
  2015-07-30 07:27:15 INFO install raise CalledProcessError(retcode, cmd)
  2015-07-30 07:27:15 INFO install subprocess.CalledProcessError: Command 
'['apt-get', '--assume-yes', '--option=Dpkg::Options::=--force-confold', 
'install', 'corosync', 'pacemaker', 'ipmitool', 'libnagios-plugin-perl']' 
returned non-zero exit status 100
  2015-07-30 07:27:15 INFO juju.worker.uniter.context context.go:543 handling 
reboot
  2015-07-30 07:27:15 ERROR juju.worker.uniter.operation r

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

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu Trusty)
Milestone: None => trusty-updates

** Changed in: multipath-tools (Ubuntu Vivid)
Milestone: None => vivid-updates

-- 
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 1468897] Re: multipath creates binding for Removable(USB) drives

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu Trusty)
Milestone: None => trusty-updates

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

Title:
  multipath creates binding for Removable(USB) drives

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

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


[Bug 1386637] Re: multipath shows non-mpath disks as being multipath

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu)
   Status: New => Triaged

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

Title:
  multipath shows non-mpath disks as being multipath

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

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


[Bug 1463046] Re: installation of multipath-tools-boot can break boot

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu Trusty)
Milestone: None => trusty-updates

** Changed in: multipath-tools (Ubuntu Vivid)
Milestone: None => vivid-updates

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

Title:
  installation of multipath-tools-boot can break boot

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

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


[Bug 1386637] Re: multipath shows non-mpath disks as being multipath

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu)
   Importance: Medium => 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/1386637

Title:
  multipath shows non-mpath disks as being multipath

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

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


[Bug 1386637] Re: multipath shows non-mpath disks as being multipath

2015-08-19 Thread Mathew Hodson
** Changed in: multipath-tools (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  multipath shows non-mpath disks as being multipath

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

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


[Bug 1483214] Re: ipmi_si module spams kernel log with "ipmi_si 00:05: Could not set the global enables: 0xcc."

2015-08-19 Thread Felix Matouschek
The 3.19.0-27.29 kernel broke something with our RAID array but it
seems like IPMI is working.

I can't keep the system down for too long... will try again on friday
afternoon...

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

Title:
  ipmi_si module spams kernel log with "ipmi_si 00:05: Could not set the
  global enables: 0xcc."

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

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


[Bug 1486557] Re: package snmpd 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

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

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

Title:
  package snmpd 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

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


[Bug 1486560] Re: package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package golang-go.tools 0.0~hg20140703-4

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

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

Title:
  package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying
  to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in
  package golang-go.tools 0.0~hg20140703-4

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

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


[Bug 1486560] [NEW] package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package golang-go.tools 0.0~hg20140703-4

2015-08-19 Thread Aneesh Neelam
Public bug reported:

Error occurred when installing update to package.

Errors were encountered while processing:
 /var/cache/apt/archives/golang-go_2%3a1.5~rc1-0ubuntu1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


ProblemType: Package
DistroRelease: Ubuntu 15.10
Package: golang-go 2:1.4.2-3ubuntu2
ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
Uname: Linux 4.1.0-3-generic x86_64
ApportVersion: 2.18-0ubuntu7
Architecture: amd64
Date: Wed Aug 19 18:36:59 2015
DuplicateSignature: package:golang-go:2:1.4.2-3ubuntu2:trying to overwrite 
'/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package 
golang-go.tools 0.0~hg20140703-4
ErrorMessage: trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which 
is also in package golang-go.tools 0.0~hg20140703-4
InstallationDate: Installed on 2015-01-09 (221 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
RelatedPackageVersions:
 dpkg 1.18.2ubuntu1
 apt  1.0.9.10ubuntu6
SourcePackage: golang
Title: package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying to 
overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package 
golang-go.tools 0.0~hg20140703-4
UpgradeStatus: Upgraded to wily on 2015-08-07 (11 days ago)

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


** Tags: amd64 apport-package package-conflict wily

** Description changed:

  Error occurred when installing update to package.
+ 
+ Errors were encountered while processing:
+  /var/cache/apt/archives/golang-go_2%3a1.5~rc1-0ubuntu1_amd64.deb
+ E: Sub-process /usr/bin/dpkg returned an error code (1)
+ 
  
  ProblemType: Package
  DistroRelease: Ubuntu 15.10
  Package: golang-go 2:1.4.2-3ubuntu2
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu7
  Architecture: amd64
  Date: Wed Aug 19 18:36:59 2015
  DuplicateSignature: package:golang-go:2:1.4.2-3ubuntu2:trying to overwrite 
'/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package 
golang-go.tools 0.0~hg20140703-4
  ErrorMessage: trying to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', 
which is also in package golang-go.tools 0.0~hg20140703-4
  InstallationDate: Installed on 2015-01-09 (221 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  RelatedPackageVersions:
-  dpkg 1.18.2ubuntu1
-  apt  1.0.9.10ubuntu6
+  dpkg 1.18.2ubuntu1
+  apt  1.0.9.10ubuntu6
  SourcePackage: golang
  Title: package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying 
to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in package 
golang-go.tools 0.0~hg20140703-4
  UpgradeStatus: Upgraded to wily on 2015-08-07 (11 days ago)

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

Title:
  package golang-go 2:1.4.2-3ubuntu2 failed to install/upgrade: trying
  to overwrite '/usr/lib/go/pkg/tool/linux_amd64/vet', which is also in
  package golang-go.tools 0.0~hg20140703-4

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

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


[Bug 1486557] [NEW] package snmpd 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2015-08-19 Thread massimo
Public bug reported:

...

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: snmpd 5.7.2~dfsg-8.1ubuntu3.1
ProcVersionSignature: Ubuntu 3.13.0-57.95-generic 3.13.11-ckt21
Uname: Linux 3.13.0-57-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
Date: Wed Aug 19 14:58:49 2015
DuplicateSignature: package:snmpd:5.7.2~dfsg-8.1ubuntu3.1:subprocess installed 
post-installation script returned error exit status 127
ErrorMessage: subprocess installed post-installation script returned error exit 
status 127
SNMPVersion: Error: command ['/usr/sbin/snmpd', '-v'] failed with exit code 
127: /usr/sbin/snmpd: symbol lookup error: /usr/sbin/snmpd: undefined symbol: 
smux_listen_sd
SourcePackage: net-snmp
SyslogSnmpd:
 
SyslogSnmptrapd:
 
Title: package snmpd 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 127
UpgradeStatus: Upgraded to trusty on 2014-05-03 (473 days ago)
modified.conffile..etc.default.snmpd: [modified]
modified.conffile..etc.snmp.snmpd.conf: [modified]
mtime.conffile..etc.default.snmpd: 2014-10-15T23:53:19.072969
mtime.conffile..etc.snmp.snmpd.conf: 2015-02-04T16:50:31.980997

** Affects: net-snmp (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  package snmpd 5.7.2~dfsg-8.1ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 127

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

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


[Bug 1024475] Re: libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

2015-08-19 Thread kay
s/only on reboot/only on correct reboot or shutdown/

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

Title:
  libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

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

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


[Bug 1024475] Re: libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

2015-08-19 Thread kay
This stuff should be fixed by this init:

/etc/init.d/libnss-ldap

it runs special "/usr/sbin/nssldap-update-ignoreusers" script only on
reboot.

This script adds exceptions for system users. Hangs appear when your
systemd was not rebooted correctly or by power loss. I can recommend you
to add this script into cron job.

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

Title:
  libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

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

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


[Bug 1418590] Re: No ERROR state if image deleted, _base is lost and instance is rescued

2015-08-19 Thread AMRITANSHU
Did you configure the rescue image in nova.conf. rescue operation is to
get the ERROR prone instance disks to be added as secondary disks to the
new instance which is going to be created by the rescue operation.

Please clarify if I am wrong

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

Title:
  No ERROR state if image deleted, _base is lost and instance is rescued

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

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


[Bug 1448800] Re: Please update iproute2 to the latest version

2015-08-19 Thread Andy Whitcroft
** Changed in: iproute2 (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  Please update iproute2 to the latest version

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

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


[Bug 1448800] Re: Please update iproute2 to the latest version

2015-08-19 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/iproute2

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

Title:
  Please update iproute2 to the latest version

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

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


[Bug 1024475] Re: libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

2015-08-19 Thread Robert Schöftner
Had the same problem, boot did hang for approximately 100s, bootchart
etc... showed "interesting" processes like hostname hanging.

Replacing libnss-ldap with libnss-ldapd finally fixed the problem.

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

Title:
  libnss-ldap causes boot hang on 12.04 precise, 14.04 trusty

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

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


[Bug 739495] Re: include in .ssh/config

2015-08-19 Thread Salz`
Would love to see this feature. I'm working with different machines for
a variety of customers. This feature would allow me to create a
config.d/ and group settings by customer. It would allow me to easily
share those settings with colleagues, In the end.

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

Title:
  include in .ssh/config

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

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


[Bug 1448800] Re: Please update iproute2 to the latest version

2015-08-19 Thread Andy Whitcroft
** Changed in: iproute2 (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  Please update iproute2 to the latest version

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

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


[Bug 1486233] Re: iproute2 merge 4.1.1-1 from debian

2015-08-19 Thread Andy Whitcroft
*** This bug is a duplicate of bug 1448800 ***
https://bugs.launchpad.net/bugs/1448800

** Changed in: iproute2 (Ubuntu)
Milestone: ubuntu-15.08 => None

** Changed in: iproute2 (Ubuntu)
 Assignee: Andy Whitcroft (apw) => (unassigned)

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

Title:
  iproute2 merge 4.1.1-1 from debian

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

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


[Bug 1484682] Re: memory leak in xl

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

What needs to be done next? If some problems still remain, it's fair to
track those in a bug, though in that case do the Debian bug and upstream
commit you've identified not correspond to a fix for the remaining
issue?

** Also affects: xen (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767295
   Importance: Unknown
   Status: Unknown

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

Title:
  memory leak in xl

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

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


[Bug 1484593] Re: package mongodb-server (not installed) failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: mongodb (Ubuntu)
   Status: New => Incomplete

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

Title:
  package mongodb-server (not installed) failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 1

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

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


[Bug 1485284] Re: package setserial 2.17-48ubuntu0.1 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.
Specifically you appear to have manually deleted files related to set
setserial from /etc/init.d so the service cannot be expected to work.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: setserial (Ubuntu)
   Status: New => Incomplete

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

Title:
  package setserial 2.17-48ubuntu0.1 failed to install/upgrade: sub-
  processo script post-installation instalado retornou estado de saída
  de erro 1

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

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


[Bug 1485380] Re: package mysql-server-5.6 5.6.25-0ubuntu0.15.04.1 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


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

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

Title:
  package mysql-server-5.6 5.6.25-0ubuntu0.15.04.1 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 1 zurück

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

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


[Bug 1485303] Re: amd64 1.2.15-8ubuntu1.1 failed to install

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: libsdl1.2 (Ubuntu)
   Status: New => Incomplete

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

Title:
  amd64 1.2.15-8ubuntu1.1 failed to install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libsdl1.2/+bug/1485303/+subscriptions

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


[Bug 1485402] Re: package libisccfg90 1:9.9.5.dfsg-3ubuntu0.4 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


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

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

Title:
  package libisccfg90 1:9.9.5.dfsg-3ubuntu0.4 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

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

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


[Bug 1485612] Re: package squid-deb-proxy 0.8.6ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: squid-deb-proxy (Ubuntu)
   Status: New => Incomplete

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

Title:
  package squid-deb-proxy 0.8.6ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid-deb-proxy/+bug/1485612/+subscriptions

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


[Bug 1485942] Re: package openssh-client 1:6.7p1-5ubuntu1.2 failed to install/upgrade: package openssh-client is not ready for configuration cannot configure (current status `half-installed')

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: openssh (Ubuntu)
   Status: New => Incomplete

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

Title:
  package openssh-client 1:6.7p1-5ubuntu1.2 failed to install/upgrade:
  package openssh-client is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 1485978] Re: package spamassassin 3.4.0-6 failed to install/upgrade: subproses skrip post-installation terpasang menghasilkan kesalahan status keluaran: 2

2015-08-19 Thread Robie Basak
>From log:

gpg: error writing to 
`/var/lib/spamassassin/sa-update-keys/.#lk0x18ae0f0.joelwindows7-Compaq-510.13076':
 Tidak ruang lagi diperangkat
gpg: keyblock resource `/var/lib/spamassassin/sa-update-keys/secring.gpg': 
Kesalahan umum
gpg: error writing to 
`/var/lib/spamassassin/sa-update-keys/.#lk0x18ae130.joelwindows7-Compaq-510.13076':
 Tidak ruang lagi diperangkat
gpg: keyblock resource `/var/lib/spamassassin/sa-update-keys/pubring.gpg': 
Kesalahan umum
gpg: tidak ditemukan keyring yang dapat ditulisi: eof
gpg: kesalahan membaca `/usr/share/spamassassin/GPG.KEY': Kesalahan umum
gpg: import from `/usr/share/spamassassin/GPG.KEY' failed: Kesalahan umum
gpg: process '/usr/bin/gpg --homedir='/var/lib/spamassassin/sa-update-keys' 
--batch --no-tty --status-fd=1 -q --logger-fd=1 --import' finished: exit 2
dpkg: error processing package spamassassin (--configure):
 subproses skrip post-installation terpasang menghasilkan kesalahan status 
keluaran: 2

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

Title:
  package spamassassin 3.4.0-6 failed to install/upgrade: subproses
  skrip post-installation terpasang menghasilkan kesalahan status
  keluaran: 2

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

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


[Bug 1485978] Re: package spamassassin 3.4.0-6 failed to install/upgrade: subproses skrip post-installation terpasang menghasilkan kesalahan status keluaran: 2

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration or
corruption problem, rather than a bug in Ubuntu, I'm marking this bug as
Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: spamassassin (Ubuntu)
   Status: New => Incomplete

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

Title:
  package spamassassin 3.4.0-6 failed to install/upgrade: subproses
  skrip post-installation terpasang menghasilkan kesalahan status
  keluaran: 2

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

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


[Bug 1486051] Re: package clamav-base 0.98.7+dfsg-0ubuntu0.15.04.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: clamav (Ubuntu)
   Status: New => Incomplete

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

Title:
  package clamav-base 0.98.7+dfsg-0ubuntu0.15.04.1 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 1

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

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


[Bug 1486007] Re: package vsftpd 3.0.2-18ubuntu1 failed to install/upgrade: subprocess new pre-removal script returned error exit status 100

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: vsftpd (Ubuntu)
   Status: New => Incomplete

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

Title:
  package vsftpd 3.0.2-18ubuntu1 failed to install/upgrade: subprocess
  new pre-removal script returned error exit status 100

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

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


[Bug 1485785] [NEW] simplestreams in trusty ignores http 403 when downloading imag

2015-08-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug by Robie Basak (racb):


a recent bug in the cloud-images service caused the metadata to have an 
incorrect path, which meant that simplestreams got a 403 when requesting an 
image. However it swallowed that error and apparently uploaded 384 bytes of 
something, possibly an error HTML page, as the new image to a user's glance 
store, when used as part of the glance-simplestreams-sync charm.

Here's an edited bit of log from http://paste.ubuntu.com/12112343/ (this
snippet starts at line 2303 in there)

First we see they have a real 20150810 image, size=258343424.

DEBUG * 08-15 06:41:20 [PID:2747] * glanceclient.common.http * curl -i -X 
GET -H 'X-Auth-Token: fe1ca44f89f24174a9ccf3418fddf9d3' -H 'Content-Type: 
application/json' -H 'User-Agent: python-glanceclient' 
http://10.16.100.108:9292/v1/images/detail?limit=20
DEBUG * 08-15 06:41:20 [PID:2747] * glanceclient.common.http * 
HTTP/1.1 200 OK
date: Sat, 15 Aug 2015 06:41:20 GMT
content-length: 3746
content-type: application/json; charset=UTF-8
x-openstack-request-id: req-req-1c273480-d084-46d9-b951-64ba5714d605

{"images": [{"status": "active", "deleted_at": null, "name": 
"auto-sync/ubuntu-trusty-14.04-amd64-server-20150810-disk1.img", "deleted": 
false, "container_format": "bare", "created_at": "2015-08-12T06:46:58.00", 
"disk_format": "qcow2", "updated_at": "2015-08-12T06:47:00.00", "min_disk": 
0, "protected": false, "id": "016346a7-8b29-4f2d-8391-e7ad85968ce0", "min_ram": 
0, "checksum": "9cf87eeb3c6595fc3965ccf7d9941360", "owner": 
"f011a026b2fc4165b99ae4740f467d1d", "is_public": true, "virtual_size": null, 
"properties": {"item_name": "disk1.img", "architecture": "x86_64", 
"version_name": "20150810", "content_id": "auto.sync", "product_name": 
"com.ubuntu.cloud:server:14.04:amd64", "source_content_id": 
"com.ubuntu.cloud:released:download"}, "size": 258343424}, 
 snip, edited out a bunch of non-ubuntu images in their glance
]}

## then we see that it got new metadata and decided to delete 0810 and
get 0813.

INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:15.04:arm64: 
to_add=[u'20150729'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:13.04:amd64: 
to_add=[u'20140111'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:15.04:ppc64el: 
to_add=[u'20150729'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:15.04:armhf: 
to_add=[u'20150729'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:15.04:amd64: 
to_add=[u'20150729'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:10.04:amd64: 
to_add=[u'20150427'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:14.10:arm64: 
to_add=[u'20150723'] to_remove=[]
INFO  * 08-15 06:41:20 [PID:2747] * sstreams * 
com.ubuntu.cloud:released:download/com.ubuntu.cloud:server:14.04:amd64: 
to_add=[u'20150813'] to_remove=[u'20150810']
DEBUG * 08-15 06:41:20 [PID:2747] * sstreams * getting local copy of 
http://cloud-images.ubuntu.com/releases/server/releases/trusty/release-20150813/ubuntu-14.04-server-cloudimg-amd64-disk1.img
INFO  * 08-15 06:41:20 [PID:2747] * urllib3.connectionpool * Starting new 
HTTP connection (1): cloud-images.ubuntu.com
DEBUG * 08-15 06:41:20 [PID:2747] * urllib3.connectionpool * Setting read 
timeout to 
DEBUG * 08-15 06:41:20 [PID:2747] * urllib3.connectionpool * "GET 
/releases/server/releases/trusty/release-20150813/ubuntu-14.04-server-cloudimg-amd64-disk1.img
 HTTP/1.1" 403 289

## uh oh, that path is bad and we got a 403 with 289 bytes left. we
should bail here, but instead we upload to glance:


DEBUG * 08-15 06:41:20 [PID:2747] * glanceclient.common.http * curl -i -X 
POST -H 'x-image-meta-property-source_content_id: 
com.ubuntu.cloud:released:download' -H 'X-Auth-Token: 
fe1ca44f89f24174a9ccf3418fddf9d3' -H 'x-image-meta-property-version_name: 
20150813' -H 'x-image-meta-property-product_name: 
com.ubuntu.cloud:server:14.04:amd64' -H 'x-image-meta-checksum: 
f655dd7ce96dd5b76b663edcec931b8e' -H 'Transfer-Encoding: chunked' -H 
'x-image-meta-container_format: bare' -H 'x-image-meta-property-content_id: 
auto.sync' -H 'User-Agent: python-glanceclient' -H 
'x-image-meta-property-item_name: disk1.img' -H 
'x-image-meta-property-architecture: x86_64' -H 'x-image-meta-is_public: True' 
-H 'x-image-meta-size: 384' -H 'Content-Type: application/octet-stream' -H 
'x-image-meta-disk_format: qcow2' -H 'x-image-meta-name: 
auto-sync/ubuntu-trusty-14.04-amd64-server-20150813-disk1.img' -d '' 
http://10.16.100.108:

[Bug 1486107] Re: package openssh-server 1:6.6p1-2ubuntu2.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: openssh (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  package openssh-server 1:6.6p1-2ubuntu2.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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


[Bug 1448528] [NEW] freshclam service failure due to missing log file

2015-08-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug by Robie Basak (racb):

freshclam 
ERROR: Can't open /var/log/clamav/freshclam.log in append mode (check 
permissions!).
ERROR: Problem with internal logger (UpdateLogFile = 
/var/log/clamav/freshclam.log).

clamav-freshclam.service is not working due to this too

clamav-freshclam0.98.6+dfsg-1ubuntu2
  amd64 
on Ubuntu 15.04

** Affects: clamav (Ubuntu)
 Importance: Undecided
 Status: Confirmed

-- 
freshclam service failure due to missing log file
https://bugs.launchpad.net/bugs/1448528
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to the bug report.

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


[Bug 1418590] Re: No ERROR state if image deleted, _base is lost and instance is rescued

2015-08-19 Thread AMRITANSHU
** Changed in: nova (Ubuntu)
 Assignee: AMRITANSHU (amritgeo) => (unassigned)

** Changed in: nova (Ubuntu)
   Status: In Progress => 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/1418590

Title:
  No ERROR state if image deleted, _base is lost and instance is rescued

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

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


[Bug 1448800] Re: Please update iproute2 to the latest version

2015-08-19 Thread Robie Basak
** Changed in: iproute2 (Ubuntu)
   Importance: Wishlist => Medium

** Changed in: iproute2 (Ubuntu)
Milestone: None => ubuntu-15.08

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

Title:
  Please update iproute2 to the latest version

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

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


[Bug 1486171] Re: package snmpd 5.7.2~dfsg-8.1ubuntu3 failed to install/upgrade: subprocess new pre-removal script returned error exit status 127

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete. It
looks like you have modified /etc/default/snmpd and the error you are
getting is related to this change.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or if you believe that this is really a bug, then you may find it
helpful to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: net-snmp (Ubuntu)
   Status: New => Incomplete

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

Title:
  package snmpd 5.7.2~dfsg-8.1ubuntu3 failed to install/upgrade:
  subprocess new pre-removal script returned error exit status 127

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

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


[Bug 1486233] Re: iproute2 merge 4.1.1-1 from debian

2015-08-19 Thread Robie Basak
*** This bug is a duplicate of bug 1448800 ***
https://bugs.launchpad.net/bugs/1448800

** This bug has been marked a duplicate of bug 1448800
   Please update iproute2 to the latest version

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

Title:
  iproute2 merge 4.1.1-1 from debian

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

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


[Bug 1486278] Re: 'info vnc' monitor command should show websocket information

2015-08-19 Thread Robie Basak
** Changed in: qemu (Ubuntu)
   Importance: Undecided => Wishlist

** Summary changed:

- 'info vnc' monitor command should show websocket information
+ 'info vnc' monitor command does not show websocket information

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

Title:
  'info vnc' monitor command does not show websocket information

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

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


[Bug 1307695] Re: package snmpd 5.7.2~dfsg-8ubuntu1.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-08-19 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Sorry, I am unable to reproduce this. On a fresh Trusty LXC container,
"sudo apt-get update && sudo apt-get -y install snmpd" and "sudo apt-get
update && sudo apt-get -y --no-install-recommends snmpd" both work
correctly.

Please can you provide precise steps to reproduce and then change the
bug status back to New when done?

** Tags added: unreproducible

** Changed in: net-snmp (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  package snmpd 5.7.2~dfsg-8ubuntu1.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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

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


[Bug 270899] Re: /etc/init.d/apache2 restart fails on busy webservers

2015-08-19 Thread cooolman
Please update apache2 for ununtu 15.10 to version 2.4.16

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

Title:
  /etc/init.d/apache2 restart fails on busy webservers

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

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


[Bug 1422307] [NEW] qemu-nbd corrupts files

2015-08-19 Thread Launchpad Bug Tracker
You have been subscribed to a public bug by Robie Basak (racb):

[Impact]
A race condition in the VDI block driver of Qemu leads to image (and thus file 
system) corruption under certain circumstances.
This makes Qemu tools usage for VDI formatted images particularly dangerous 
(qemu-img, qemu-nbd).
The bug fix introduces locks to prevent such race condition.


[Test Case]
A simple test case was provided in comment #5 
(https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1422307/comments/5):

$ ./qemu-img create -f vdi test.vdi 2G
Formatting 'test.vdi', fmt=vdi size=2147483648 static=off
$ ./qemu-img create -f raw test.raw 2G
Formatting 'test.raw', fmt=raw size=2147483648
$ x86_64-softmmu/qemu-system-x86_64 -enable-kvm -drive 
if=virtio,file=blkverify:test.raw:test.vdi,format=raw -drive 
if=virtio,file=data.img,format=raw,format=raw -cdrom ~/tmp/arch.iso -m 512 
-boot d
blkverify: read sector_num=810976 nb_sectors=256 contents mismatch in sector 
811008

Operations in the guest:
$ dd if=/dev/vdb of=/dev/vda
$ dd if=/dev/vda of=/dev/null

[Regression Potential]
In case of bugs affecting the way locks are used, deadlocks could be a 
regression, but they would only affect VDI images.


Original bug report:
Dear all,

On Trusty, in certain situations, try to copy files over a qemu-nbd
mounted file system leads to write errors (and thus, file corruption).

Here is the last example I tried:
-> virtual disk is a VDI disk
-> It has only one partition, in FAT

Here is my mount process:
# modprobe nbd max_part=63
# qemu-nbd -c /dev/nbd0 "virtual_disk.vdi"
# partprobe /dev/nbd0
# mount /dev/nbd0p1 /tmp/mnt/

Partition is properly mounted at that point:
/dev/nbd0p1 on /tmp/mnt type vfat (rw)

Now, when I copy a file (rather big, ~28MB):
# cp file_to_copy /tmp/mnt/ ; sync
# md5sum /tmp/mnt/file_to_copy
2efc9f32e4267782b11d63d2f128a363  /tmp/mnt/file_to_copy
# umount /tmp/mnt
# mount /dev/nbd0p1 /tmp/mnt/
# md5sum /tmp/mnt/file_to_copy
42b0a3bf73f704d03ce301716d7654de  /tmp/mnt/file_to_copy

The first hash was obviously the right one.

On a previous attempt I did, I spotted thanks to vbindiff that parts of the 
file were just filed with 0s instead of actual data.
It will randomly work after several attempts to write.

Version information:
# qemu-nbd --version
qemu-nbd version 0.0.1
Written by Anthony Liguori.

Cheers,

** Affects: qemu
 Importance: Undecided
 Status: Fix Released

** Affects: qemu (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: qemu (Ubuntu Trusty)
 Importance: Medium
 Status: Triaged

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

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


[Bug 1422307] Re: qemu-nbd corrupts files

2015-08-19 Thread Pierre Schweitzer
Please find attach a proposed debdiff for fixing the issue in Ubuntu
Trusty by backporting the fix which is now in Wily.

** Description changed:

+ [Impact]
+ A race condition in the VDI block driver of Qemu leads to image (and thus 
file system) corruption under certain circumstances.
+ This makes Qemu tools usage for VDI formatted images particularly dangerous 
(qemu-img, qemu-nbd).
+ The bug fix introduces locks to prevent such race condition.
+ 
+ 
+ [Test Case]
+ A simple test case was provided in comment #5 
(https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1422307/comments/5):
+ 
+ $ ./qemu-img create -f vdi test.vdi 2G
+ Formatting 'test.vdi', fmt=vdi size=2147483648 static=off
+ $ ./qemu-img create -f raw test.raw 2G
+ Formatting 'test.raw', fmt=raw size=2147483648
+ $ x86_64-softmmu/qemu-system-x86_64 -enable-kvm -drive 
if=virtio,file=blkverify:test.raw:test.vdi,format=raw -drive 
if=virtio,file=data.img,format=raw,format=raw -cdrom ~/tmp/arch.iso -m 512 
-boot d
+ blkverify: read sector_num=810976 nb_sectors=256 contents mismatch in sector 
811008
+ 
+ Operations in the guest:
+ $ dd if=/dev/vdb of=/dev/vda
+ $ dd if=/dev/vda of=/dev/null
+ 
+ [Regression Potential]
+ In case of bugs affecting the way locks are used, deadlocks could be a 
regression, but they would only affect VDI images.
+ 
+ 
+ Original bug report:
  Dear all,
  
  On Trusty, in certain situations, try to copy files over a qemu-nbd
  mounted file system leads to write errors (and thus, file corruption).
  
  Here is the last example I tried:
  -> virtual disk is a VDI disk
  -> It has only one partition, in FAT
  
  Here is my mount process:
  # modprobe nbd max_part=63
  # qemu-nbd -c /dev/nbd0 "virtual_disk.vdi"
  # partprobe /dev/nbd0
  # mount /dev/nbd0p1 /tmp/mnt/
  
  Partition is properly mounted at that point:
  /dev/nbd0p1 on /tmp/mnt type vfat (rw)
  
  Now, when I copy a file (rather big, ~28MB):
  # cp file_to_copy /tmp/mnt/ ; sync
  # md5sum /tmp/mnt/file_to_copy
  2efc9f32e4267782b11d63d2f128a363  /tmp/mnt/file_to_copy
- # umount /tmp/mnt 
+ # umount /tmp/mnt
  # mount /dev/nbd0p1 /tmp/mnt/
  # md5sum /tmp/mnt/file_to_copy
  42b0a3bf73f704d03ce301716d7654de  /tmp/mnt/file_to_copy
  
  The first hash was obviously the right one.
  
  On a previous attempt I did, I spotted thanks to vbindiff that parts of the 
file were just filed with 0s instead of actual data.
  It will randomly work after several attempts to write.
  
  Version information:
  # qemu-nbd --version
  qemu-nbd version 0.0.1
  Written by Anthony Liguori.
  
  Cheers,

** Patch added: "qemu_2.0.0+dfsg-2ubuntu1.17.diff"
   
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1422307/+attachment/4448189/+files/qemu_2.0.0%2Bdfsg-2ubuntu1.17.diff

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

Title:
  qemu-nbd corrupts files

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

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