From 1d6c382cf71152f3d57d11285ab604a06dd722ca Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 9 Jul 2020 23:35:31 +0200 Subject: [PATCH] install --ondev: pass cipher to ondev-prepare (MR 1958) Let postmarketos-ondev honor the cryptsetup cipher from pmbootstrap. --- pmb/install/_install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmb/install/_install.py b/pmb/install/_install.py index 6d391090..e1ddf88a 100644 --- a/pmb/install/_install.py +++ b/pmb/install/_install.py @@ -551,6 +551,7 @@ def install_on_device_installer(args, step, steps): "ONDEV_CHANNEL_BRANCH_PMAPORTS": channel_cfg["branch_pmaports"], "ONDEV_CHANNEL_DESCRIPTION": channel_cfg["description"], "ONDEV_CHANNEL_MIRRORDIR_ALPINE": channel_cfg["mirrordir_alpine"], + "ONDEV_CIPHER": args.cipher, "ONDEV_PMBOOTSTRAP_VERSION": pmb.config.version, "ONDEV_UI": args.ui} pmb.chroot.root(args, ["ondev-prepare"], suffix_installer, env=env)