diff options
Diffstat (limited to 'src/backend/rescue.py')
-rw-r--r-- | src/backend/rescue.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/backend/rescue.py b/src/backend/rescue.py new file mode 100644 index 0000000..18523d4 --- /dev/null +++ b/src/backend/rescue.py @@ -0,0 +1,24 @@ +#!/usr/bin/python3 + +import animation +import os +import sisyphus.database + +remotePkgsDB = '/var/lib/sisyphus/csv/remotePackagesPre.csv' +remoteDscsDB = '/var/lib/sisyphus/csv/remoteDescriptionsPre.csv' +localPkgsDB = '/var/lib/sisyphus/csv/localPackagesPre.csv' +sisyphusDB = '/var/lib/sisyphus/db/sisyphus.db' + +@animation.wait('recovering databases') +def start(): + if os.path.exists(remotePkgsDB): + os.remove(remotePkgsDB) + if os.path.exists(remoteDscsDB): + os.remove(remoteDscsDB) + if os.path.exists(localPkgsDB): + os.remove(localPkgsDB) + if os.path.exists(sisyphusDB): + os.remove(sisyphusDB) + + sisyphus.database.syncRemote() + sisyphus.database.syncLocal() |