From 96c0c91d8a5a21d8e3e190051f3557c7fd2f3829 Mon Sep 17 00:00:00 2001 From: Dan Bungert Date: Fri, 25 Aug 2023 16:18:43 -0600 Subject: [PATCH] storage: trigger zfsutils-linux install if zpools pre-Mantic installs can now zfsroot without autoinstall workarounds. --- subiquity/models/filesystem.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subiquity/models/filesystem.py b/subiquity/models/filesystem.py index 93a6ccbc..b8d4de21 100644 --- a/subiquity/models/filesystem.py +++ b/subiquity/models/filesystem.py @@ -2043,4 +2043,6 @@ class FilesystemModel(object): r = [] if self.reset_partition is not None: r.append("efibootmgr") + if self._one(type="zpool") is not None: + r.append("zfsutils-linux") return r