From ac0efd1bd6c703147bd8d3caedf489fab87d6131 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 6 Jun 2020 16:22:04 +0100 Subject: big rewrite : split the backend in smaller pieces, rework the cli frontend to work with the new backend ... gui frontend wip --- src/backend/rescue.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/backend/rescue.py (limited to 'src/backend/rescue.py') 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() -- cgit v1.2.3