Skip to content

Commit

Permalink
More explicit package dependencies for geoip-auto-updater.
Browse files Browse the repository at this point in the history
Also add in the dependencies for the `gunzip` and `mktemp` commands that
are likely installed on most linux distros, but perhaps not on more
minimal distros.
  • Loading branch information
GUI committed Sep 14, 2016
1 parent 362b917 commit 4a26913
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build/package_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ if [ -f /etc/redhat-release ]; then
core_package_dependencies=(
# General
bash
curl
glibc
libffi
libuuid
Expand All @@ -29,6 +28,11 @@ if [ -f /etc/redhat-release ]; then
pcre
zlib

# geoip-auto-updater
coreutils
curl
gzip

# TrafficServer
libxml2
tcl
Expand Down Expand Up @@ -94,7 +98,6 @@ elif [ -f /etc/debian_version ]; then
core_package_dependencies=(
# General
bash
curl
libc6
libffi$libffi_version
libncurses5
Expand All @@ -104,6 +107,11 @@ elif [ -f /etc/debian_version ]; then
openssl
zlib1g

# geoip-auto-updater
coreutils
curl
gzip

# TrafficServer
libxml2
tcl
Expand Down

0 comments on commit 4a26913

Please sign in to comment.