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

import animation
import os
import sisyphus.getFilesystem
import sisyphus.syncDatabase

@animation.wait('recovering databases')
def start():
    if os.path.exists(sisyphus.getFilesystem.remotePackagesCsv):
        os.remove(sisyphus.getFilesystem.remotePackagesCsv)
    if os.path.exists(sisyphus.getFilesystem.remoteDescriptionsCsv):
        os.remove(sisyphus.getFilesystem.remoteDescriptionsCsv)
    if os.path.exists(sisyphus.getFilesystem.localPackagesCsv):
        os.remove(sisyphus.getFilesystem.localPackagesCsv)
    if os.path.exists(sisyphus.getFilesystem.localDatabase):
        os.remove(sisyphus.getFilesystem.localDatabase)

    sisyphus.syncDatabase.syncRemote()
    sisyphus.syncDatabase.syncLocal()