From ff3d6e22ef3b55b6b941f9ee6d633f32533650fb Mon Sep 17 00:00:00 2001 From: Terrtia Date: Mon, 20 May 2019 14:48:20 +0200 Subject: [PATCH] chg: [update v1.7] add update scripts --- installing_deps.sh | 8 +++++++ update/v1.7/Update.py | 33 ++++++++++++++++++++++++++ update/v1.7/Update.sh | 54 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100755 update/v1.7/Update.py create mode 100755 update/v1.7/Update.sh diff --git a/installing_deps.sh b/installing_deps.sh index f3e1d7b9..e8de3fd6 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -67,6 +67,14 @@ sudo ldconfig popd popd +# pgpdump +test ! -d pgpdump && git clone https://github.com/kazu-yamamoto/pgpdump.git +pushd pgpdump/ +./configure +make +sudo make install +popd + # ARDB # test ! -d ardb/ && git clone https://github.com/yinqiwen/ardb.git pushd ardb/ diff --git a/update/v1.7/Update.py b/update/v1.7/Update.py new file mode 100755 index 00000000..d2a826e6 --- /dev/null +++ b/update/v1.7/Update.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +# -*-coding:UTF-8 -* + +import os +import sys +import time +import redis +import datetime +import configparser + +if __name__ == '__main__': + + start_deb = time.time() + + configfile = os.path.join(os.environ['AIL_BIN'], 'packages/config.cfg') + if not os.path.exists(configfile): + raise Exception('Unable to find the configuration file. \ + Did you set environment variables? \ + Or activate the virtualenv.') + cfg = configparser.ConfigParser() + cfg.read(configfile) + + r_serv = redis.StrictRedis( + host=cfg.get("ARDB_DB", "host"), + port=cfg.getint("ARDB_DB", "port"), + db=cfg.getint("ARDB_DB", "db"), + decode_responses=True) + + #Set current ail version + r_serv.set('ail:version', 'v1.7') + + #Set current ail version + r_serv.set('ail:update_date_v1.7', datetime.datetime.now().strftime("%Y%m%d")) diff --git a/update/v1.7/Update.sh b/update/v1.7/Update.sh new file mode 100755 index 00000000..8eb6c5a1 --- /dev/null +++ b/update/v1.7/Update.sh @@ -0,0 +1,54 @@ +#!/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 -k & +wait + +echo "" +echo -e $GREEN"Update DomainClassifier"$DEFAULT +echo "" + +cd $AIL_HOME +git clone https://github.com/kazu-yamamoto/pgpdump.git +cd pgpdump +./configure +make +sudo make install +wait +echo "" + +bash ${AIL_BIN}LAUNCH.sh -lav & +wait +echo "" + +echo "" +echo -e $GREEN"Updating AIL VERSION ..."$DEFAULT +echo "" +python ${AIL_HOME}/update/v1.7/Update.py & +wait +echo "" +echo "" + +echo "" +echo -e $GREEN"Shutting down ARDB ..."$DEFAULT +bash ${AIL_BIN}/LAUNCH.sh -k & +wait + +echo "" + +exit 0