Fix tabbage

This commit is contained in:
Fierelier 2023-07-12 04:42:27 +02:00
parent 3624233e3f
commit 36a83b3d84
1 changed files with 9 additions and 9 deletions

View File

@ -412,14 +412,14 @@ def main():
print("Configuring GRUB ...")
chroot(ipth(),["update-grub"])
print("> Unmounting ...")
if hasSwap: call(["swapoff",ipth("swap")])
call(["umount",ipth()])
os.rmdir(ipth())
if encrypt: call(["cryptsetup","luksClose","system"])
print("Success. Press ENTER to quit setup.")
input()
print("> Unmounting ...")
if hasSwap: call(["swapoff",ipth("swap")])
call(["umount",ipth()])
os.rmdir(ipth())
if encrypt: call(["cryptsetup","luksClose","system"])
print("Success. Press ENTER to quit setup.")
input()
main()