Package: system-config-lvm Version: 1.1.18-1 Severity: important Tags: patch
Dear Maintainer, Extending or resizing a mounted Logical volume fails with system-config-lvm but not if done with command line becuase the program does not detect mounted volumes How to reproduce: 1. Open system-config-lvm 2. Try to resize or extend mounted partition 3. The partition shows as unmounted and action fails every time with error: "Logical volume is not mounted but is in use. Please close all applications using this device (eg iscsi) All operations can be made without a problem with command line: lvextend -L +10G /dev/VolGroup00/root resize2fs /dev/VolGroup00/root Version: system-config-lvm 1.1.18-2 Also refer to https://bugs.launchpad.net/ubuntu/+source/system-config- lvm/+bug/1325450 -- System Information: Debian Release: 8.5 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages system-config-lvm depends on: ii gettext 0.19.3-2 ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2 ii lvm2 2.02.111-2.2+deb8u1 ii menu 2.1.47 ii python 2.7.9-1 ii python-glade2 2.24.0-4 ii python-gnome2 2.28.1+dfsg-1.1 ii python-gtk2 2.24.0-4 ii python-support 1.0.15 system-config-lvm recommends no packages. system-config-lvm suggests no packages. -- no debconf information
>From 6523aa880e4e6f2bc1b1e2f22a59b9f0c5fd62a1 Mon Sep 17 00:00:00 2001 From: hermlnx <hbev...@gmail.com> Date: Wed, 3 Aug 2016 23:49:35 -0400 Subject: [PATCH] Change readline location to /bin/readline as it is no longer present in /usr/bin (closes LP:#1325450) --- src/utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities.py b/src/utilities.py index 454d476..0c5e69c 100644 --- a/src/utilities.py +++ b/src/utilities.py @@ -12,7 +12,7 @@ def follow_links_to_target(path, paths=[]): return None if path not in cache_readlink_s: - o, s = execWithCaptureStatus('/usr/bin/readlink', ['/usr/bin/readlink', '-e', path]) + o, s = execWithCaptureStatus('/bin/readlink', ['/bin/readlink', '-e', path]) cache_readlink_o[path] = o cache_readlink_s[path] = s else: -- 2.7.4