We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 818bcba commit 22f7fdeCopy full SHA for 22f7fde
root/docker-entrypoint.sh
@@ -1,8 +1,8 @@
1
#!/bin/bash
2
3
-if [[ $POST == 1 ]] && [[ $DISABLE_IPv6 == 1 ]]; then
+if [[ $POST == 1 ]] && [[ $DISABLE_IPV6 == 1 ]]; then
4
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_post_ipv4.template > /run/default.conf
5
-elif [[ $POST == 0 ]] && [[ $DISABLE_IPv6 == 1 ]]; then
+elif [[ $POST == 0 ]] && [[ $DISABLE_IPV6 == 1 ]]; then
6
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_nopost_ipv4.template > /run/default.conf
7
elif [[ $POST == 1 ]]; then
8
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_post.template > /run/default.conf
0 commit comments