Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-29 17:46:07 +0200
committerAnton Hvornum <anton@hvornum.se>2021-03-29 17:46:07 +0200
commita29bd759548c02c609aa43d9536475b1259a70f9 (patch)
tree831e78eaf13a34ec59b9e272a054ac4a6bf6a1f1 /examples
parent512f0327f0d5eb9e507050ff9a4325e9728df705 (diff)
Removing a flush of the cache that was excessive.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 92331450..71e1e01d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -247,10 +247,10 @@ def perform_installation_steps():
with archinstall.Filesystem(archinstall.arguments['harddrive'], archinstall.GPT) as fs:
# Wipe the entire drive if the disk flag `keep_partitions`is False.
if archinstall.arguments['harddrive'].keep_partitions is False:
- fs.use_entire_disk(root_filesystem_type=archinstall.arguments.get('filesystem', 'btrfs'),
- encrypt_root_partition=archinstall.arguments.get('!encryption-password', False))
- # Otherwise, check if encryption is desired and mark the root partition as encrypted.
- elif archinstall.arguments.get('!encryption-password', None):
+ fs.use_entire_disk(root_filesystem_type=archinstall.arguments.get('filesystem', 'btrfs'))
+
+ # Check if encryption is desired and mark the root partition as encrypted.
+ if archinstall.arguments.get('!encryption-password', None):
root_partition = fs.find_partition('/')
root_partition.encrypted = True