Added deamon modoe to main function

This commit is contained in:
merlink 2013-08-06 10:37:31 +02:00
parent c5442029b5
commit 86383f0a9f
1 changed files with 3 additions and 2 deletions

View File

@ -770,7 +770,7 @@ if shared.useVeryEasyProofOfWorkForTesting:
shared.networkDefaultPayloadLengthExtraBytes = int( shared.networkDefaultPayloadLengthExtraBytes = int(
shared.networkDefaultPayloadLengthExtraBytes / 7000) shared.networkDefaultPayloadLengthExtraBytes / 7000)
def main(): def main(deamon=False):
# is the application already running? If yes then exit. # is the application already running? If yes then exit.
thisapp = singleton.singleinstance() thisapp = singleton.singleinstance()
@ -823,7 +823,7 @@ def main():
singleListenerThread.daemon = True # close the main program even if there are threads left singleListenerThread.daemon = True # close the main program even if there are threads left
singleListenerThread.start() singleListenerThread.start()
if not shared.safeConfigGetBoolean('bitmessagesettings', 'daemon'): if deamon == False and shared.safeConfigGetBoolean('bitmessagesettings', 'daemon') == False:
try: try:
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
except Exception as err: except Exception as err:
@ -840,6 +840,7 @@ def main():
while True: while True:
time.sleep(20) time.sleep(20)
if __name__ == "__main__": if __name__ == "__main__":
main() main()