diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-02-25 21:35:12 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-02-25 22:12:43 +0000 |
commit | 7d32051b5114160c66c354972f8a64a00d331c6c (patch) | |
tree | 06e6a60d9468d159cb4bd52a79581315ff8bcea8 /src/backend/update.py | |
parent | 17b776830e4468080c1b0f09685b4aa4f7b9eaf3 (diff) |
rename some functionsv6.2402.0
Diffstat (limited to 'src/backend/update.py')
-rw-r--r-- | src/backend/update.py | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/src/backend/update.py b/src/backend/update.py deleted file mode 100644 index d6db8ff..0000000 --- a/src/backend/update.py +++ /dev/null @@ -1,88 +0,0 @@ -#!/usr/bin/python3 - -import animation -import signal -import sys -import time -import sisyphus.checkenv -import sisyphus.getclr -import sisyphus.getenv -import sisyphus.purgeenv -import sisyphus.syncdb -import sisyphus.syncenv - - -def sigint_handler(signal, frame): - sys.exit(0) - - -signal.signal(signal.SIGINT, sigint_handler) - - -def sync_evrth(): - sisyphus.syncenv.g_repo() - sisyphus.syncenv.r_repo() - sisyphus.syncenv.p_cfg_repo() - sisyphus.syncdb.rmt_tbl() - - -@animation.wait('fetching updates') -def start(gfx_ui=False): - actv_brch = sisyphus.getenv.sys_brch() - bhst_addr = sisyphus.getenv.bhst_addr() - is_sane = sisyphus.checkenv.sanity() - is_online = sisyphus.checkenv.connectivity() - - if is_online != 1: - if gfx_ui: - print("\n\nNo internet connection; Aborting!\n") - for i in range(9, 0, -1): - print(f"Killing application in : {i} seconds!") - time.sleep(1) - - sys.exit(app.exec_()) # kill GUI window - else: - print(sisyphus.getclr.bright_red + - "\n\nNo internet connection; Aborting!\n" + sisyphus.getclr.reset) - sys.exit() - else: - if is_sane == 1: - sync_evrth() - else: - if gfx_ui: - if "packages-next" in bhst_addr: - print("\n\nActive branch:" + " " + "'" + - actv_brch + "'" + " " + "(stable)") - print("\n\nActive binhost:" + " " + "'" + - bhst_addr + "'" + " " + "(testing)") - else: - print("\n\nActive branch:" + " " + "'" + - actv_brch + "'" + " " + "(testing)") - print("\n\nActive binhost:" + " " + "'" + - bhst_addr + "'" + " " + "(stable)") - - print("\n\nInvalid configuration!") - print("\nUse 'sisyphus branch --help' for help\n") - for i in range(9, 0, -1): - print(f"Killing application in : {i} seconds!") - time.sleep(1) - - sys.exit(app.exec_()) # kill GUI window - else: - if "packages-next" in bhst_addr: - print(sisyphus.getclr.green + "\n\nActive branch:" + " " + - sisyphus.getclr.reset + "'" + actv_brch + "'" + " " + "(stable)") - print(sisyphus.getclr.green + "\nActive binhost:" + " " + - sisyphus.getclr.reset + "'" + bhst_addr + "'" + " " + "(testing)") - else: - print(sisyphus.getclr.green + "\n\nActive branch:" + " " + - sisyphus.getclr.reset + "'" + actv_brch + "'" + " " + "(testing)") - print(sisyphus.getclr.green + "\nActive binhost:" + " " + - sisyphus.getclr.reset + "'" + bhst_addr + "'" + " " + "(stable)") - - print(sisyphus.getclr.bright_red + - "\n\nInvalid configuration!" + sisyphus.getclr.reset) - print(sisyphus.getclr.bright_yellow + "\nUse" + sisyphus.getclr.reset + " " + "'" + - "sisyphus branch --help" + "'" + " " + sisyphus.getclr.bright_yellow + "for help" + sisyphus.getclr.reset) - time.sleep(1) - sys.exit() |