Browse Source

Fix multiple network join from environment entrypoint.sh.release (#1961)

pull/4/head
Leonardo Amaral 3 years ago committed by GitHub
parent
commit
7f63d896f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      entrypoint.sh.release

2
entrypoint.sh.release

@ -81,7 +81,7 @@ done
if [ "x$ZEROTIER_JOIN_NETWORKS" != "x" ]
then
log_params "Joining networks from environment:" $ZEROTIER_JOIN_NETWORKS
for i in "$ZEROTIER_JOIN_NETWORKS"
for i in $ZEROTIER_JOIN_NETWORKS
do
log_detail_params "Configuring join:" "$i"
touch "/var/lib/zerotier-one/networks.d/${i}.conf"

Loading…
Cancel
Save