File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARG BUILD_ENV=git
22
33FROM docker.io/alpine:latest as git
44ARG BUILD_ENV=git
5- ARG LUA_LIB_VERSION=v1.0.0
5+ ARG LUA_LIB_VERSION=v1.0.1
66RUN if [ "$BUILD_ENV" == "git" ]; then apk add --no-cache git; fi
77RUN if [ "$BUILD_ENV" == "git" ]; then git clone -b "${LUA_LIB_VERSION}" https://github.com/crowdsecurity/lua-cs-bouncer.git ; fi
88
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LUA_DIR="${OUTDIR}lua"
44CONFIG_DIR ="${OUTDIR}config"
55TEMPLATE_DIR ="${OUTDIR}templates"
66OUT_ARCHIVE ="crowdsec-openresty-bouncer.tgz"
7- LUA_BOUNCER_BRANCH? =v1.0.0
7+ LUA_BOUNCER_BRANCH? =v1.0.1
88default : release
99release :
1010 git clone -b " ${LUA_BOUNCER_BRANCH} " " https://github.com/crowdsecurity/lua-cs-bouncer.git
Original file line number Diff line number Diff line change 22
33export DEB_VERSION=$(shell dpkg-parsechangelog | egrep '^Version :' | cut -f 2 -d ' ')
44export BUILD_VERSION =v${DEB_VERSION}-debian-pragmatic
5- export LUA_BOUNCER_BRANCH? =v1.0.0
5+ export LUA_BOUNCER_BRANCH? =v1.0.1
66
77% :
88 dh $@
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ mkdir -p %{buildroot}/usr/local/openresty/nginx/conf/conf.d/
3333mkdir -p %{buildroot }/usr/local/openresty/lualib/plugins/crowdsec/
3434mkdir -p %{buildroot }/var/lib/crowdsec/lua/templates/
3535mkdir -p %{buildroot }/etc/crowdsec/bouncers/
36- git clone -b v1.0.0 https://github.com/crowdsecurity/lua-cs-bouncer.git
36+ git clone -b v1.0.1 https://github.com/crowdsecurity/lua-cs-bouncer.git
3737install -m 600 -D lua-cs-bouncer/config_example.conf %{buildroot }/etc/crowdsec/bouncers/%{name }.conf
3838install -m 644 -D lua-cs-bouncer/lib/crowdsec.lua %{buildroot }/usr/local/openresty/lualib/
3939install -m 644 -D lua-cs-bouncer/lib/plugins/crowdsec/* %{buildroot }/usr/local/openresty/lualib/plugins/crowdsec/
You can’t perform that action at this time.
0 commit comments