Innitial commit, core function is implemented

This commit is contained in:
2021-12-09 19:37:15 +01:00
commit 9aa7f6864d

47
main.py Normal file
View File

@@ -0,0 +1,47 @@
import os
import subprocess
import datetime
import sys
def run_daily():
try:
f = open('.backupdone', "r+")
except FileNotFoundError:
f = open('.backupdone', "w+")
olddate = f.read(10)
if (olddate == str(datetime.datetime.now().date())) and (len(olddate) > 0):
exit()
f.seek(0, 0)
f.write(str(datetime.datetime.now().date()))
f.close()
def list_pkgs():
f = open("packages.txt", "w")
subprocess.run(args=["dpkg", "--get-selections"], stdout=f)
f.close()
def save_settings():
f = open("dconf_out.txt", "w")
subprocess.run(args=["dconf", "dump", "/"], stdout=f)
f.close()
if __name__ == '__main__':
for i in sys.argv:
if i == "--help" or i == "-h":
print("usage: <name> [opts]\n\
Options:\n\
\t-h --help: show this\n\
\t-d --backup-dir [directory]: set the directory the backups go to")
backupdir = "/home/lacko/.backup"
try:
# os.chdir("/run/user/1000/gvfs/smb-share:server=ds_panni.local,share=lacko/Backup/T490")
os.chdir(backupdir)
except FileNotFoundError:
subprocess.call(["mkdir", backupdir])
run_daily()
list_pkgs()
save_settings()