Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 17:47:21 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-29 17:47:21 +0100
commitcb3d16b0bbec1a45c32fe3ac2e98e6c256f3d6b9 (patch)
treee2db1a95fb411f9ca52e69b2d152ce6ed7f804c2
parent9eb80c139ff76b0bb02568911625c6c12b7b6bdf (diff)
Fixed password prompt for nspawn
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index b1814ed6..5635561e 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -1125,7 +1125,7 @@ def run_post_install_steps(*positionals, **kwargs):
## [root@<hostname> ~]#
defaults = {
'login:' : 'root\n',
- #'Password:' : args['password']+'\n',
+ 'Password:' : args['password']+'\n',
'[root@{args["hostname"]} ~]#' : command+'\n',
}
if not 'events' in opts: opts['events'] = {}