Skip to content

Commit 22f7fde

Browse files
committed
Fix case
1 parent 818bcba commit 22f7fde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

root/docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

3-
if [[ $POST == 1 ]] && [[ $DISABLE_IPv6 == 1 ]]; then
3+
if [[ $POST == 1 ]] && [[ $DISABLE_IPV6 == 1 ]]; then
44
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_post_ipv4.template > /run/default.conf
5-
elif [[ $POST == 0 ]] && [[ $DISABLE_IPv6 == 1 ]]; then
5+
elif [[ $POST == 0 ]] && [[ $DISABLE_IPV6 == 1 ]]; then
66
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_nopost_ipv4.template > /run/default.conf
77
elif [[ $POST == 1 ]]; then
88
envsubst "$(printf '${%s} ' $(bash -c "compgen -A variable"))" < /templates/default_post.template > /run/default.conf

0 commit comments

Comments
 (0)