blob: 6aff890f64c5d26fb27656b72f59709bec1ef38b (
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.remotePackagesCsv):
os.remove(sisyphus.getfs.remotePackagesCsv)
if os.path.exists(sisyphus.getfs.remoteDescriptionsCsv):
os.remove(sisyphus.getfs.remoteDescriptionsCsv)
if os.path.exists(sisyphus.getfs.localPackagesCsv):
os.remove(sisyphus.getfs.localPackagesCsv)
if os.path.exists(sisyphus.getfs.localDatabase):
os.remove(sisyphus.getfs.localDatabase)
sisyphus.syncdb.remoteTable()
sisyphus.syncdb.localTable()
|