mirror of https://github.com/CIRCL/AIL-framework
Merge pull request #229 from SteveClement/master
chg: [doc] Marked unmaintained efforts as such.pull/231/head
commit
60d798e6a8
|
@ -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
|
# AIL-framework-ansible
|
||||||
This Ansible role can be used to deploy the AIL-Framework on a host.
|
This Ansible role can be used to deploy the AIL-Framework on a host.
|
||||||
|
|
||||||
|
|
|
@ -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
|
source ./AILENV/bin/activate
|
||||||
cd bin
|
cd bin
|
||||||
|
|
||||||
|
@ -5,7 +8,11 @@ export PATH=$AIL_HOME:$PATH
|
||||||
export PATH=$AIL_REDIS:$PATH
|
export PATH=$AIL_REDIS:$PATH
|
||||||
export PATH=$AIL_LEVELDB:$PATH
|
export PATH=$AIL_LEVELDB:$PATH
|
||||||
export PATH=$AIL_ARDB:$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/"
|
conf_dir="${AIL_HOME}/configs/"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/bash
|
#!/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 -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue