-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.sh
executable file
·51 lines (42 loc) · 1.15 KB
/
bootstrap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash
echo "start run bootstrap.sh ..."
ROLE=/workspace/startup/start.sh
ADMINFILE=/workspace/startup/fl_admin.sh
SERVER_CFG=/workspace/startup/fed_server.json
CLIENT_CFG=/workspace/startup/fed_client.json
chmod +x /workspace/startup/*.sh
if [[ -z "${FLSERVER}" ]]; then
echo "flserver not setting"
else
if [[ -z "${FLSERVERIP}" ]]; then
echo "flserver ip not setting"
else
echo "add /etc/hosts ..."
echo "${FLSERVERIP} ${FLSERVER}" >> /etc/hosts
fi
fi
if [ -f "$ADMINFILE" ]; then
echo "role: admin ..."
fi
if [ -f "$ROLE" ]; then
echo "role: server or client ..."
if [ -f "$SERVER_CFG" ]; then
echo "server: add FQDN to /etc/hosts"
sed '$s/$/ federated.oneai.twcc.ai/' /etc/hosts > tmp_.txt
cat tmp_.txt > /etc/hosts
rm tmp_.txt
fi
if [[ -z "${START}" ]]; then
echo "start.sh do not start ..."
else
if [ "$START" = "AUTO" ]; then
echo "start.sh auto start ..."
/workspace/startup/start.sh
else
echo "start.sh do not start ..."
fi
fi
fi
cd /workspace
echo "Init finish ..."
while true; do sleep 15 ; done