Skip to content

Commit

Permalink
Merge pull request #45 from cytopia/fix-a-zone
Browse files Browse the repository at this point in the history
Refs #44 Do not get all hostname variations on Debian
  • Loading branch information
cytopia authored Jun 7, 2022
2 parents 6ee51e6 + 10d837c commit 61e04be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfiles/data/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if [ -f "/etc/alpine-release" ]; then
DEFAULT_MNAME="$( hostname -f | sed 's/\s$//g' | xargs -0 )"
else
# Debian
DEFAULT_MNAME="$( hostname -A | sed 's/\s$//g' | xargs -0 )"
DEFAULT_MNAME="$( hostname -f | sed 's/\s$//g' | xargs -0 )"
fi


Expand Down

0 comments on commit 61e04be

Please sign in to comment.