blob: 7509052a44e582940bf14a04e71cc3ecc6b546a1 (
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.rmt_pcsv):
os.remove(sisyphus.getfs.rmt_pcsv)
if os.path.exists(sisyphus.getfs.rmt_dcsv):
os.remove(sisyphus.getfs.rmt_dcsv)
if os.path.exists(sisyphus.getfs.lcl_pcsv):
os.remove(sisyphus.getfs.lcl_pcsv)
if os.path.exists(sisyphus.getfs.lcl_db):
os.remove(sisyphus.getfs.lcl_db)
sisyphus.syncdb.rmt_tbl()
sisyphus.syncdb.lcl_tbl()
|