From 90b6c5c8f78df7cbdcf0ffd89846f3d04be46bd4 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 11 Apr 2019 22:43:05 +0200 Subject: Final touches on the new subsystem thing --- archinstall.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'archinstall.py') diff --git a/archinstall.py b/archinstall.py index f1a33d4e..665fcb21 100644 --- a/archinstall.py +++ b/archinstall.py @@ -168,13 +168,20 @@ class sys_command(): lower = output.lower() if 'triggers' in self.opts: for trigger in self.opts['triggers']: - print(trigger.lower(),'vs', lower) if trigger.lower() in lower: print('[N] Writing to subsystem: {}'.format(self.opts['triggers'][trigger])) os.write(child_fd, self.opts['triggers'][trigger]) + del(self.opts['triggers'][trigger]) + if len(self.opts['triggers']) == 0: + alive = False + break yield output + # Since we're in a subsystem, we gotta bail out! + # Bail bail bail! + os.write(child_fd, b'shutdown now') + exit_code = os.waitpid(self.pid, 0)[1] if exit_code != 0: print('[E] Command "{}" exited with status code:'.format(self.cmd[0]), exit_code) -- cgit v1.2.3-70-g09d2