summaryrefslogtreecommitdiff
path: root/src/backend/recoverdb.py
blob: 59675adb2188e73bdad8d75850d018b35b907edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python3

import animation
import os
import sisyphus.getfs
import sisyphus.syncdb


@animation.wait('recovering databases')
def start():
    if os.path.exists(sisyphus.getfs.rmt_pcsv):
        os.remove(sisyphus.getfs.rmt_pcsv)
    if os.path.exists(sisyphus.getfs.rmt_dcsv):
        os.remove(sisyphus.getfs.rmt_dcsv)
    if os.path.exists(sisyphus.getfs.lcl_pcsv):
        os.remove(sisyphus.getfs.lcl_pcsv)
    if os.path.exists(sisyphus.getfs.lcl_db):
        os.remove(sisyphus.getfs.lcl_db)

    sisyphus.syncdb.remoteTable()
    sisyphus.syncdb.localTable()