From b5d50b2a8111927c7ab4f35647e0511aae1a2323 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Mon, 23 Jul 2018 10:41:44 +0200 Subject: [PATCH 1/2] chg: [docker] allow arg as a parameter --- docker_start.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker_start.sh b/docker_start.sh index 52f40338..e4dd5f21 100755 --- a/docker_start.sh +++ b/docker_start.sh @@ -5,7 +5,11 @@ export PATH=$AIL_HOME:$PATH export PATH=$AIL_REDIS:$PATH export PATH=$AIL_LEVELDB:$PATH export PATH=$AIL_ARDB:$PATH -export AILENV=/opt/AIL +if [ -z $1 ]; then + export AILENV=/opt/AIL + else + export AILENV=$1 +fi conf_dir="${AIL_HOME}/configs/" From 42855571a423a60b6524536f023988b8eedc0f76 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Mon, 23 Jul 2018 18:27:23 +0200 Subject: [PATCH 2/2] chg: [doc] Marked unmaintained efforts as such. --- ansible/README.md | 8 ++++++++ docker_start.sh | 3 +++ installing_deps_archlinux.sh | 4 ++++ 3 files changed, 15 insertions(+) diff --git a/ansible/README.md b/ansible/README.md index 36fc3fa7..16fbaa14 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -1,3 +1,11 @@ +:warning: +Not maintained at the moment. +If you are interested to get this running, please: + +Fork -> Branch -> PR + +In case of questions please Join our (GITTER](https://gitter.im/SteveClement/AIL-framework) chat. + # AIL-framework-ansible This Ansible role can be used to deploy the AIL-Framework on a host. diff --git a/docker_start.sh b/docker_start.sh index e4dd5f21..1f80ecae 100755 --- a/docker_start.sh +++ b/docker_start.sh @@ -1,3 +1,6 @@ +echo "Currently unmaintained, continue at your own risk of not having a working AIL at the end :(" +exit 1 + source ./AILENV/bin/activate cd bin diff --git a/installing_deps_archlinux.sh b/installing_deps_archlinux.sh index d19561c6..38ac4ca7 100644 --- a/installing_deps_archlinux.sh +++ b/installing_deps_archlinux.sh @@ -1,5 +1,9 @@ #!/bin/bash + +echo "Currently unmaintained, continue at your own risk of not having a working AIL at the end :( Will be merged into main install deps later on." +exit 1 + set -e set -x