From 73b5c62ab8f1b78fab1c3300d64cbd3e26e96e4e Mon Sep 17 00:00:00 2001 From: Matti Hyttinen Date: Fri, 6 Nov 2020 08:49:22 +0200 Subject: [PATCH] Update main.py typo in a comment --- src/modules/openrcdmcryptcfg/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/openrcdmcryptcfg/main.py b/src/modules/openrcdmcryptcfg/main.py index 097c1bfd5..818ca4963 100644 --- a/src/modules/openrcdmcryptcfg/main.py +++ b/src/modules/openrcdmcryptcfg/main.py @@ -49,7 +49,7 @@ def write_dmcrypt_conf(partitions, root_mount_point, dmcrypt_conf_path): with open(os.path.join(root_mount_point, dmcrypt_conf_path), 'a+') as dmcrypt_file: dmcrypt_file.write("\ntarget=" + crypto_target) dmcrypt_file.write("\nsource=" + crypto_source) - # Don't use keyfile if boot is unecrypted, keys must not be stored on unencrypted partitions + # Don't use keyfile if boot is unencrypted, keys must not be stored on unencrypted partitions if not unencrypted_separate_boot: dmcrypt_file.write("\nkey=/crypto_keyfile.bin") dmcrypt_file.write("\n")