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-04-11 22:22:42 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-11 22:22:42 +0200
commitfc4cad6c19eace1bb0c6d572bed56f02963f1f3a (patch)
tree999ddc7b371440f8f69fe15983df9ae43d5b59f2 /archinstall.py
parent074efd4c1c5ef5a4eb10fcf008a36886fb4e4587 (diff)
Forgot ENTER (new line) after subsystem input
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archinstall.py b/archinstall.py
index 2d361a88..598eb091 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -642,9 +642,9 @@ if __name__ == '__main__':
## And then boot and execute:
o = b''.join(sys_command('/usr/bin/systemd-nspawn -D /mnt -b --machine temporary', opts={'triggers' : {
- b'Archinstall login' : b'root',
- b'Password' : bytes(args['password'], 'UTF-8'),
- b'root#' : bytes(command, 'UTF-8'),
+ b'Archinstall login' : b'root\n',
+ b'Password' : bytes(args['password']+'\n', 'UTF-8'),
+ b'root#' : bytes(command+'\n', 'UTF-8'),
}, **opts}).exec())
## And cleanup after out selves.. Don't want to leave any residue..