summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2008-10-28 15:10:22 -0500
committerDavid Lehman <dlehman@redhat.com>2008-10-30 15:45:23 -0500
commit55833649b14b1118dabb050a8629aa767e58a8e4 (patch)
tree0d9435f48ab49748ff2023ece33da498eba1228e
parent6445b5749e2e29fdd9bd12e44b18239471916300 (diff)
downloadanaconda-55833649b14b1118dabb050a8629aa767e58a8e4.tar.gz
anaconda-55833649b14b1118dabb050a8629aa767e58a8e4.tar.xz
anaconda-55833649b14b1118dabb050a8629aa767e58a8e4.zip
Don't write luks passphrases to anaconda-ks.cfg. (#468907)
-rw-r--r--partitions.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/partitions.py b/partitions.py
index f75eff9fe..4c82aa4f3 100644
--- a/partitions.py
+++ b/partitions.py
@@ -1363,8 +1363,7 @@ class Partitions:
# device encryption
if request.encryption:
- args.extend(["--encrypted",
- "--passphrase=\"%s\"" % (request.encryption.passphrase,)])
+ args.append("--encrypted")
# preexisting only
if request.type == REQUEST_PREEXIST and request.device: