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.feeds@gmail.com>2021-02-17 14:54:45 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-02-17 14:54:45 +0100
commita9ce3e539028b2484991d21528a09cc3f41210de (patch)
tree8f64ba9bbd67da9438493c73a8209e19eabb9e1a /examples
parent930fc994d94132fc7676f4297465a2ad90487b75 (diff)
Testing auto-filter in the JSON encoder based on ! points markering sensitive data.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 5fdc318b..cf7c3ef3 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -150,9 +150,9 @@ if archinstall.arguments['harddrive'].has_partitions():
archinstall.arguments['harddrive'].keep_partitions = False
# Get disk encryption password (or skip if blank)
-if not archinstall.arguments.get('encryption-password', None):
- archinstall.arguments['encryption-password'] = archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): ')
-archinstall.arguments['harddrive'].encryption_password = archinstall.arguments['encryption-password']
+if not archinstall.arguments.get('!encryption-password', None):
+ archinstall.arguments['!encryption-password'] = archinstall.get_password(prompt='Enter disk encryption password (leave blank for no encryption): ')
+archinstall.arguments['harddrive'].encryption_password = archinstall.arguments['!encryption-password']
# Get the hostname for the machine
if not archinstall.arguments.get('hostname', None):