Hello community, here is the log from the commit of package libstorage-ng for openSUSE:Factory checked in at 2019-10-21 12:27:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libstorage-ng (Old) and /work/SRC/openSUSE:Factory/.libstorage-ng.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libstorage-ng" Mon Oct 21 12:27:25 2019 rev:66 rq:741093 version:4.2.17 Changes: -------- --- /work/SRC/openSUSE:Factory/libstorage-ng/libstorage-ng.changes 2019-10-16 09:10:29.148209745 +0200 +++ /work/SRC/openSUSE:Factory/.libstorage-ng.new.2352/libstorage-ng.changes 2019-10-21 12:27:27.939897099 +0200 @@ -1,0 +2,8 @@ +Fri Oct 18 11:07:38 UTC 2019 - [email protected] + +- merge gh#openSUSE/libstorage-ng#675 +- Log messages about the mount_by fallback are just warnings + (related to bsc#1151075) +- 4.2.17 + +-------------------------------------------------------------------- @@ -12 +20 @@ -- use password from LUKS activation for resize +- use password from LUKS activation for resize (bsc#1153871) Old: ---- libstorage-ng-4.2.16.tar.xz New: ---- libstorage-ng-4.2.17.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libstorage-ng.spec ++++++ --- /var/tmp/diff_new_pack.IJHeV2/_old 2019-10-21 12:27:28.631897883 +0200 +++ /var/tmp/diff_new_pack.IJHeV2/_new 2019-10-21 12:27:28.635897888 +0200 @@ -18,7 +18,7 @@ %define libname %{name}1 Name: libstorage-ng -Version: 4.2.16 +Version: 4.2.17 Release: 0 Summary: Library for storage management License: GPL-2.0-only ++++++ libstorage-ng-4.2.16.tar.xz -> libstorage-ng-4.2.17.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/VERSION new/libstorage-ng-4.2.17/VERSION --- old/libstorage-ng-4.2.16/VERSION 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/VERSION 2019-10-18 13:07:38.000000000 +0200 @@ -1 +1 @@ -4.2.16 +4.2.17 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/storage/Devices/BlkDeviceImpl.cc new/libstorage-ng-4.2.17/storage/Devices/BlkDeviceImpl.cc --- old/libstorage-ng-4.2.16/storage/Devices/BlkDeviceImpl.cc 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/storage/Devices/BlkDeviceImpl.cc 2019-10-18 13:07:38.000000000 +0200 @@ -277,25 +277,25 @@ switch (mount_by_type) { case MountByType::UUID: - y2err("no uuid possible, using fallback"); + y2war("no uuid possible, using fallback"); break; case MountByType::LABEL: - y2err("no label possible, using fallback"); + y2war("no label possible, using fallback"); break; case MountByType::ID: if (!get_udev_ids().empty()) ret = DEV_DISK_BY_ID_DIR "/" + get_udev_ids().front(); else - y2err("no udev-id defined, using fallback"); + y2war("no udev-id defined, using fallback"); break; case MountByType::PATH: if (!get_udev_paths().empty()) ret = DEV_DISK_BY_PATH_DIR "/" + get_udev_paths().front(); else - y2err("no udev-path defined, using fallback"); + y2war("no udev-path defined, using fallback"); break; case MountByType::DEVICE: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/storage/Devices/EncryptionImpl.cc new/libstorage-ng-4.2.17/storage/Devices/EncryptionImpl.cc --- old/libstorage-ng-4.2.16/storage/Devices/EncryptionImpl.cc 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/storage/Devices/EncryptionImpl.cc 2019-10-18 13:07:38.000000000 +0200 @@ -165,11 +165,11 @@ switch (mount_by_type) { case MountByType::UUID: - y2err("no uuid possible, using fallback"); + y2war("no uuid possible, using fallback"); break; case MountByType::LABEL: - y2err("no label possible, using fallback"); + y2war("no label possible, using fallback"); break; case MountByType::ID: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/storage/Devices/LuksImpl.cc new/libstorage-ng-4.2.17/storage/Devices/LuksImpl.cc --- old/libstorage-ng-4.2.16/storage/Devices/LuksImpl.cc 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/storage/Devices/LuksImpl.cc 2019-10-18 13:07:38.000000000 +0200 @@ -108,14 +108,14 @@ if (!uuid.empty()) ret = "UUID=" + uuid; else - y2err("no uuid defined, using fallback"); + y2war("no uuid defined, using fallback"); break; case MountByType::LABEL: if (!label.empty()) ret = "LABEL=" + label; else - y2err("no label defined, using fallback"); + y2war("no label defined, using fallback"); break; case MountByType::ID: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/storage/Filesystems/BlkFilesystemImpl.cc new/libstorage-ng-4.2.17/storage/Filesystems/BlkFilesystemImpl.cc --- old/libstorage-ng-4.2.16/storage/Filesystems/BlkFilesystemImpl.cc 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/storage/Filesystems/BlkFilesystemImpl.cc 2019-10-18 13:07:38.000000000 +0200 @@ -629,14 +629,14 @@ if (!uuid.empty()) ret = "UUID=" + uuid; else - y2err("no uuid defined, using fallback mount-by"); + y2war("no uuid defined, using fallback mount-by"); break; case MountByType::LABEL: if (!label.empty()) ret = "LABEL=" + label; else - y2err("no label defined, using fallback mount-by"); + y2war("no label defined, using fallback mount-by"); break; case MountByType::ID: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libstorage-ng-4.2.16/storage/Filesystems/SwapImpl.cc new/libstorage-ng-4.2.17/storage/Filesystems/SwapImpl.cc --- old/libstorage-ng-4.2.16/storage/Filesystems/SwapImpl.cc 2019-10-12 07:52:56.000000000 +0200 +++ new/libstorage-ng-4.2.17/storage/Filesystems/SwapImpl.cc 2019-10-18 13:07:38.000000000 +0200 @@ -114,7 +114,7 @@ case MountByType::UUID: if (!is_permanent()) { - y2err("no uuid possible for non-permanent swap, using fallback mount-by"); + y2war("no uuid possible for non-permanent swap, using fallback mount-by"); mount_by = MountByType::DEVICE; } break; @@ -122,7 +122,7 @@ case MountByType::LABEL: if (!is_permanent()) { - y2err("no label possible for non-permanent swap, using fallback mount-by"); + y2war("no label possible for non-permanent swap, using fallback mount-by"); mount_by = MountByType::DEVICE; } break;
