blob: 96d347f115cf783d0bec4c22bd92b8c9cffad74d (
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.remotePkgsDB):
os.remove(sisyphus.filesystem.remotePkgsDB)
if os.path.exists(sisyphus.filesystem.remoteDscsDB):
os.remove(sisyphus.filesystem.remoteDscsDB)
if os.path.exists(sisyphus.filesystem.localPkgsDB):
os.remove(sisyphus.filesystem.localPkgsDB)
if os.path.exists(sisyphus.filesystem.sisyphusDB):
os.remove(sisyphus.filesystem.sisyphusDB)
sisyphus.database.syncRemote()
sisyphus.database.syncLocal()
|