We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 457afa4 + 18357fc commit 93f4192Copy full SHA for 93f4192
scripts/start-swarm.sh
@@ -30,11 +30,14 @@ echo "starting netplugin"
30
nohup /opt/gopath/bin/netplugin -native-integration=true > /tmp/netplugin.log 2>&1 &
31
32
if [[ $mode == "master" ]]; then
33
+ echo "starting netmaster"
34
+ #start netmaster
35
+ nohup /opt/gopath/bin/netmaster > /tmp/netmaster.log 2>&1 &
36
+
37
+ unset http_proxy
38
+ unset https_proxy
39
echo "starting swarm manager"
40
# Start swarm manager
41
nohup /usr/bin/swarm manage -H tcp://$node_addr:2375 etcd://localhost:2379 > /tmp/swarm-manage.log 2>&1 &
42
- echo "starting netmaster"
- #start netmaster
- nohup /opt/gopath/bin/netmaster > /tmp/netmaster.log 2>&1 &
43
fi
0 commit comments