Review: Needs Fixing Can you expand the commit message a whole bunch please? This is about the case where /dev/random is used as a keyfile, in which case the dm type of the device would be created as luks in the live system but then be plain in the installed system and changing to a world where it will be plain in both?
Code changes look good but I have a worry about temporary file handling. Diff comments: > diff --git a/curtin/commands/block_meta.py b/curtin/commands/block_meta.py > index 9fde9c6..e2e99e3 100644 > --- a/curtin/commands/block_meta.py > +++ b/curtin/commands/block_meta.py > @@ -1710,6 +1712,7 @@ def dm_crypt_handler(info, storage_config, context): > > util.subp(cmd) > > + if open_dmcrypt: > cmd = ["cryptsetup", "open", "--type", luks_type, volume_path, > dm_name, > "--key-file", keyfile] Does the temporary keyfile still get deleted in the case where the key is in the config directly? > -- https://code.launchpad.net/~dbungert/curtin/+git/curtin/+merge/460874 Your team curtin developers is subscribed to branch curtin:master. -- Mailing list: https://launchpad.net/~curtin-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~curtin-dev More help : https://help.launchpad.net/ListHelp

