add missing comma

This commit is contained in:
Andreas Zweili 2021-12-20 15:56:33 +01:00
parent 0a0797a4de
commit 43f1a68936
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def _create_swap():
def _encrypt_disk(partition_path, container_name): def _encrypt_disk(partition_path, container_name):
password = getpass.getpass() password = getpass.getpass()
print("Encrypting disk.") print("Encrypting disk.")
_run_command(["cryptsetup", "luksFormat", "-q" _run_command(["cryptsetup", "luksFormat", "-q",
"--type", "luks1", partition_path], input=password) "--type", "luks1", partition_path], input=password)
_run_command(["cryptsetup", "open", partition_path, "cryptlvm"], _run_command(["cryptsetup", "open", partition_path, "cryptlvm"],
input=password) input=password)