Added a exit condition for the subsystem

This commit is contained in:
Anton Hvornum 2019-04-11 23:01:22 +02:00
parent 9e8179d25b
commit 17de7d0ce4
1 changed files with 6 additions and 1 deletions

View File

@ -169,13 +169,18 @@ class sys_command():
if 'triggers' in self.opts:
for trigger in list(self.opts['triggers']):
if trigger.lower() in lower:
print('[N] Writing to subsystem: {}'.format(self.opts['triggers'][trigger]))
if 'debug' in self.opts and self.opts['debug']:
print('[N] Writing to subsystem: {}'.format(self.opts['triggers'][trigger]))
os.write(child_fd, self.opts['triggers'][trigger])
del(self.opts['triggers'][trigger])
## Adding a exit trigger:
if len(self.opts['triggers']) == 0:
if 'debug' in self.opts and self.opts['debug']:
print('[N] Waiting for last command to finish...')
if b'[root@arcinstall ~]#' in output:
if 'debug' in self.opts and self.opts['debug']:
print('[N] Last command finished, exiting subsystem.')
alive = False
break