From 5a93b86524a1b77fab63ac85bd1d1752e7155f6d Mon Sep 17 00:00:00 2001 From: Terrtia Date: Tue, 23 Mar 2021 15:57:51 +0100 Subject: [PATCH] chg: [update] add v3.5 update --- update/v3.5/Update.py | 29 +++++++++++++++++++++++++++++ update/v3.5/Update.sh | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100755 update/v3.5/Update.py create mode 100755 update/v3.5/Update.sh diff --git a/update/v3.5/Update.py b/update/v3.5/Update.py new file mode 100755 index 00000000..3bccc0cd --- /dev/null +++ b/update/v3.5/Update.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 +# -*-coding:UTF-8 -* + +import os +import re +import sys +import time +import redis +import datetime + +sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib/')) +import ConfigLoader + +new_version = 'v3.5' + +if __name__ == '__main__': + + start_deb = time.time() + + config_loader = ConfigLoader.ConfigLoader() + r_serv = config_loader.get_redis_conn("ARDB_DB") + r_serv_onion = config_loader.get_redis_conn("ARDB_Onion") + config_loader = None + + #Set current ail version + r_serv.set('ail:version', new_version) + + #Set current ail version + r_serv.hset('ail:update_date', new_version, datetime.datetime.now().strftime("%Y%m%d")) diff --git a/update/v3.5/Update.sh b/update/v3.5/Update.sh new file mode 100755 index 00000000..40a5f9c0 --- /dev/null +++ b/update/v3.5/Update.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_REDIS" ] && echo "Needs the env var AIL_REDIS. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_ARDB" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_BIN" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1; +[ -z "$AIL_FLASK" ] && echo "Needs the env var AIL_FLASK. Run the script from the virtual environment." && exit 1; + +export PATH=$AIL_HOME:$PATH +export PATH=$AIL_REDIS:$PATH +export PATH=$AIL_ARDB:$PATH +export PATH=$AIL_BIN:$PATH +export PATH=$AIL_FLASK:$PATH + +GREEN="\\033[1;32m" +DEFAULT="\\033[0;39m" + +echo -e $GREEN"Shutting down AIL ..."$DEFAULT +bash ${AIL_BIN}/LAUNCH.sh -ks +wait + +# SUBMODULES # +git submodule update + +echo -e $GREEN"Installing D4 CLIENT ..."$DEFAULT +pip3 install -U d4-pyclient + +echo "" +echo -e $GREEN"Updating DomainClassifier ..."$DEFAULT +pip3 install -U DomainClassifier + +exit 0