From 8657c67302f03bf0c9985f44e355f4b4656d7ba5 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Thu, 8 Sep 2022 10:40:18 +0200 Subject: [PATCH] chg: [v4.2.1] add pubsublogger update --- update/v4.2.1/Update.py | 26 ++++++++++++++++++++++++++ update/v4.2.1/Update.sh | 29 +++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100755 update/v4.2.1/Update.py create mode 100755 update/v4.2.1/Update.sh diff --git a/update/v4.2.1/Update.py b/update/v4.2.1/Update.py new file mode 100755 index 00000000..19085e78 --- /dev/null +++ b/update/v4.2.1/Update.py @@ -0,0 +1,26 @@ +#!/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 + +sys.path.append(os.path.join(os.environ['AIL_HOME'], 'update', 'bin')) +from ail_updater import AIL_Updater + +class Updater(AIL_Updater): + """default Updater.""" + + def __init__(self, version): + super(Updater, self).__init__(version) + +if __name__ == '__main__': + + updater = Updater('v4.2.1') + updater.run_update() diff --git a/update/v4.2.1/Update.sh b/update/v4.2.1/Update.sh new file mode 100755 index 00000000..bf04638b --- /dev/null +++ b/update/v4.2.1/Update.sh @@ -0,0 +1,29 @@ +#!/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 "" +echo -e $GREEN"Updating pusblogger ..."$DEFAULT +pip3 install -U pubsublogger + +exit 0