diff --git a/base/alpine/box.rb b/base/alpine/box.rb index 069f35b..44b1308 100644 --- a/base/alpine/box.rb +++ b/base/alpine/box.rb @@ -17,13 +17,6 @@ run %q[ apk add -U --no-cache wget ca-certificates \ && rm backplane-stable-linux-amd64.tgz \ && apk del wget ] -run %q[ apk add -U --no-cache curl \ - && cd /usr/bin && curl https://xena.greedo.xeserv.us/files/httpagent.gz -o httpagent.gz \ - && gunzip httpagent.gz \ - && chmod +x httpagent \ - && ./httpagent -help > /dev/null 2>&1 \ - ; apk del curl && echo upd: 2017-02-05 ] - # Add glue and vardene run %q[ apk add -U --no-cache wget \ && cd /usr/bin && wget https://xena.greedo.xeserv.us/files/glue \ diff --git a/base/alpine/runit/httpagent/run b/base/alpine/runit/httpagent/run deleted file mode 100755 index c866312..0000000 --- a/base/alpine/runit/httpagent/run +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -if [ -n "$ROUTE_TOKEN" ] -then - /usr/bin/httpagent -token "$ROUTE_TOKEN" -backend "$ROUTE_BACKEND" -server "$ROUTE_FRONTEND" -else - sleep 999d -fi