Skip to content

Commit e3fce96

Browse files
authored
Merge pull request #58 from graphite-project/DZ-statd-fix
Fixing statsd issue
2 parents 5228e94 + 6cbdb68 commit e3fce96

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ RUN if [ ! -z "${CONTAINER_TIMEZONE}" ]; \
9494
RUN apt-get update --fix-missing \
9595
&& apt-get -y upgrade \
9696
&& apt-get install --yes --no-install-recommends \
97+
git \
9798
nginx \
9899
python-flup \
99100
python-pip \

conf/etc/my_init.d/01_conf_init.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ fi
3333
# - /opt/statsd
3434
statsd_dir_contents=$(find /opt/statsd -mindepth 1 -print -quit)
3535
if [[ -z $statsd_dir_contents ]]; then
36-
apt-get install git && \
37-
cd /opt && \
38-
wget https://nodejs.org/download/release/v6.14.4/node-v6.14.4-linux-x64.tar.gz && \
39-
tar -xvpzf node-v6.14.4-linux-x64.tar.gz && rm node-v6.14.4-linux-x64.tar.gz && mv node-v6.14.4-linux-x64 nodejs && \
4036
git clone -b v0.8.0 https://github.com/etsy/statsd.git /opt/statsd && \
4137
cp $conf_dir/opt/statsd/config_*.js /opt/statsd/
4238
fi

0 commit comments

Comments
 (0)