summaryrefslogtreecommitdiff
path: root/src/backend/rescue.py
blob: 26e7c68606923c45c0b7a79c795b6828b32ce1fc (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.database
import sisyphus.filesystem

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

    sisyphus.database.syncRemote()
    sisyphus.database.syncLocal()