check for onionr exit when awaiting onboarding completion

This commit is contained in:
Kevin Froman 2020-02-11 16:47:30 -06:00
parent 7c7e5de091
commit 3bb51a16e1
1 changed files with 3 additions and 2 deletions

View File

@ -242,8 +242,9 @@ class OnionrCommunicatorDaemon:
'First run detected. Run openhome to get setup.',
terminal=True)
while not config.get('onboarding.done', True):
time.sleep(5)
while not config.get('onboarding.done', True) and \
not self.shutdown:
time.sleep(2)
# Main daemon loop, mainly for calling timers,
# don't do any complex operations here to avoid locking