Skip to content

Commit 70ef8e8

Browse files
authored
update lua lib to last tag (#65)
1 parent 21a2558 commit 70ef8e8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile.lua-bouncer-plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BUILD_ENV=git
22

33
FROM docker.io/alpine:latest as git
44
ARG BUILD_ENV=git
5-
ARG LUA_LIB_VERSION=v1.0.0
5+
ARG LUA_LIB_VERSION=v1.0.1
66
RUN if [ "$BUILD_ENV" == "git" ]; then apk add --no-cache git; fi
77
RUN if [ "$BUILD_ENV" == "git" ]; then git clone -b "${LUA_LIB_VERSION}" https://github.com/crowdsecurity/lua-cs-bouncer.git ; fi
88

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LUA_DIR="${OUTDIR}lua"
44
CONFIG_DIR="${OUTDIR}config"
55
TEMPLATE_DIR="${OUTDIR}templates"
66
OUT_ARCHIVE="crowdsec-openresty-bouncer.tgz"
7-
LUA_BOUNCER_BRANCH?=v1.0.0
7+
LUA_BOUNCER_BRANCH?=v1.0.1
88
default: release
99
release:
1010
git clone -b "${LUA_BOUNCER_BRANCH}"" https://github.com/crowdsecurity/lua-cs-bouncer.git

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export DEB_VERSION=$(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
44
export 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 $@

rpm/SPECS/crowdsec-openresty-bouncer.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ mkdir -p %{buildroot}/usr/local/openresty/nginx/conf/conf.d/
3333
mkdir -p %{buildroot}/usr/local/openresty/lualib/plugins/crowdsec/
3434
mkdir -p %{buildroot}/var/lib/crowdsec/lua/templates/
3535
mkdir -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
3737
install -m 600 -D lua-cs-bouncer/config_example.conf %{buildroot}/etc/crowdsec/bouncers/%{name}.conf
3838
install -m 644 -D lua-cs-bouncer/lib/crowdsec.lua %{buildroot}/usr/local/openresty/lualib/
3939
install -m 644 -D lua-cs-bouncer/lib/plugins/crowdsec/* %{buildroot}/usr/local/openresty/lualib/plugins/crowdsec/

0 commit comments

Comments
 (0)