[Libguestfs] [guestfs-tools PATCH 1/3] test-data: Replace deprecated luks_open with cryptsetup_open.

Laszlo Ersek lersek at redhat.com
Wed Feb 23 16:22:13 UTC 2022


From: "Richard W.M. Jones" <rjones at redhat.com>

The two calls are identical, so this simply avoids a deprecation
warning.

(Picked from libguestfs commit 0b223a287711 ("test-data: Replace
deprecated luks_open with cryptsetup_open.", 2021-05-27), synchronizing
"make-fedora-img.pl" in guestfs-tools with the same file in libguestfs @
commit 0b223a287711.)

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1658126
Signed-off-by: Laszlo Ersek <lersek at redhat.com>
---
 test-data/phony-guests/make-fedora-img.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test-data/phony-guests/make-fedora-img.pl b/test-data/phony-guests/make-fedora-img.pl
index 90492b814e2b..27b154f9d71d 100755
--- a/test-data/phony-guests/make-fedora-img.pl
+++ b/test-data/phony-guests/make-fedora-img.pl
@@ -195,7 +195,7 @@ EOF
 
     # Put LUKS on the second partition.
     $g->luks_format ('/dev/sda2', 'FEDORA', 0);
-    $g->luks_open ('/dev/sda2', 'FEDORA', 'luks');
+    $g->cryptsetup_open ('/dev/sda2', 'FEDORA', 'luks');
 
     init_lvm_root ('/dev/mapper/luks');
 }
-- 
2.19.1.3.g30247aa5d201




More information about the Libguestfs mailing list