check for onionr exit when awaiting onboarding completion
This commit is contained in:
parent
7c7e5de091
commit
3bb51a16e1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user