Forgot =True to parameter
This commit is contained in:
parent
15b1fb26ce
commit
c12fbc900a
|
|
@ -182,7 +182,7 @@ class luks2:
|
||||||
os.path.basename(mountpoint) # TODO: Raise exception instead?
|
os.path.basename(mountpoint) # TODO: Raise exception instead?
|
||||||
|
|
||||||
print(f"Looking for phrase: 'Enter passphrase for {partition.path}'")
|
print(f"Looking for phrase: 'Enter passphrase for {partition.path}'")
|
||||||
cryptworker = SysCommandWorker(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --type luks2', peak_output)
|
cryptworker = SysCommandWorker(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --type luks2', peak_output=True)
|
||||||
|
|
||||||
pw_given = False
|
pw_given = False
|
||||||
while cryptworker.is_alive():
|
while cryptworker.is_alive():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue