From 67e03aa8905c3296e65a31f20ac572ff479df3c3 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Wed, 10 Apr 2019 16:24:35 +1200 Subject: [PATCH] fix editing encrypted/passphrase of vg --- subiquity/controllers/filesystem.py | 1 + 1 file changed, 1 insertion(+) diff --git a/subiquity/controllers/filesystem.py b/subiquity/controllers/filesystem.py index 40a37160..2f7a51f5 100644 --- a/subiquity/controllers/filesystem.py +++ b/subiquity/controllers/filesystem.py @@ -376,6 +376,7 @@ class FilesystemController(BaseController): d._constructed_device = existing existing.name = spec['name'] existing.devices = spec['devices'] + existing._passphrase = spec.get('password') else: self.create_volgroup(spec)