summaryrefslogtreecommitdiff
path: root/src/backend/recoverDatabase.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/recoverDatabase.py')
-rw-r--r--src/backend/recoverDatabase.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/backend/recoverDatabase.py b/src/backend/recoverDatabase.py
new file mode 100644
index 0000000..c067815
--- /dev/null
+++ b/src/backend/recoverDatabase.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python3
+
+import animation
+import os
+import sisyphus.syncDatabase
+import sisyphus.getFilesystem
+
+@animation.wait('recovering databases')
+def start():
+ if os.path.exists(sisyphus.getFilesystem.remotePackagesCsv):
+ os.remove(sisyphus.getFilesystem.remotePackagesCsv)
+ if os.path.exists(sisyphus.getFilesystem.remoteDescriptionsCsv):
+ os.remove(sisyphus.getFilesystem.remoteDescriptionsCsv)
+ if os.path.exists(sisyphus.getFilesystem.localPackagesCsv):
+ os.remove(sisyphus.getFilesystem.localPackagesCsv)
+ if os.path.exists(sisyphus.getFilesystem.localDatabase):
+ os.remove(sisyphus.getFilesystem.localDatabase)
+
+ sisyphus.syncDatabase.syncRemote()
+ sisyphus.syncDatabase.syncLocal()