Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-06-20 21:03:41 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2019-06-20 21:03:41 +0000
commitde5ff70bb8d9559c45cd54971773b6cb1969d914 (patch)
tree1590532234c7c0049ad8978f1c07d29b7b5118a8 /archinstall.py
parent4dd7be619407d07082feb5a0415d0d5bc16e2e36 (diff)
Minor fix
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index a88265c8..9be5c371 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -832,7 +832,7 @@ if __name__ == '__main__':
## [root@<hostname> ~]#
o = b''.join(sys_command('/usr/bin/systemd-nspawn -D /mnt -b --machine temporary', opts={'triggers' : {
bytes(f'login:', 'UTF-8') : b'root\n',
- b'Password' : bytes(args['password']+'\n', 'UTF-8'),
+ b'Password:' : bytes(args['password']+'\n', 'UTF-8'),
bytes(f'[root@{args["hostname"]} ~]#', 'UTF-8') : bytes(command+'\n', 'UTF-8'),
}, **opts}).exec())