summaryrefslogtreecommitdiff
path: root/src/launcher.py
blob: 61e2a7fae019d63ce1adbcc7479cf6a67c891efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import time
import threading

from leap.app import main as leap_client
from thandy.ClientCLI import update as thandy_update


class Thandy(threading.Thread):
    def run(self):
        while True:
            try:
                args = [
                    "--repo=/home/chiiph/Code/leap/repo/",
                    "--debug",
                    "--install",
                    "/bundleinfo/LEAPClient/"
                ]
                thandy_update(args)
            except Exception as e:
                print "ERROR1:", e
            finally:
                time.sleep(60)


if __name__ == "__main__":
    thandy_thread = Thandy()
    thandy_thread.daemon = True
    thandy_thread.start()

    leap_client()