2016-08-08 10:40:14 +02:00
|
|
|
#!/bin/bash
|
2017-01-12 11:29:02 +01:00
|
|
|
set -e
|
2016-10-19 08:32:00 +02:00
|
|
|
cp tests/docker-compose.test.yml make/.
|
2016-06-15 05:19:10 +02:00
|
|
|
|
2018-09-12 08:38:29 +02:00
|
|
|
mkdir -p core
|
2019-03-18 08:07:19 +01:00
|
|
|
cp /data/secret/core/private_key.pem /etc/core/
|
2016-06-07 06:19:48 +02:00
|
|
|
|
2018-09-12 08:38:29 +02:00
|
|
|
mkdir src/core/conf
|
|
|
|
cp make/common/config/core/app.conf src/core/conf/
|
2018-04-19 07:52:18 +02:00
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
2019-04-02 14:08:26 +02:00
|
|
|
IP=`ifconfig en0 | grep "inet " | grep -Fv 127.0.0.1 | awk '{print $2}'`
|
2018-04-19 07:52:18 +02:00
|
|
|
else
|
|
|
|
IP=`ip addr s eth0 |grep "inet "|awk '{print $2}' |awk -F "/" '{print $1}'`
|
|
|
|
fi
|
2017-11-15 07:49:14 +01:00
|
|
|
echo "server ip is "$IP
|
2019-01-09 10:40:27 +01:00
|
|
|
|
2019-02-20 11:01:48 +01:00
|
|
|
echo "Current path is"
|
|
|
|
pwd
|
2019-05-09 11:26:56 +02:00
|
|
|
cat make/common/config/core/env
|
2019-02-20 11:01:48 +01:00
|
|
|
|
2017-11-15 07:49:14 +01:00
|
|
|
chmod 777 /data/
|