Skip to content

Commit fe7cc30

Browse files
authored
update lua-resty-http (#67)
1 parent 138dd1f commit fe7cc30

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG BUILD_ENV=git
22
FROM docker.io/openresty/openresty:alpine-fat as with_deps
3-
RUN luarocks install lua-resty-http
3+
RUN luarocks install lua-resty-http 0.17.1-0
44

55
FROM with_deps as git
66
ARG BUILD_ENV=git

debian/postinst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LAPI_DEFAULT_PORT="8080"
1010

1111
check_lua_dependency() {
1212
DEPENDENCY=(
13-
"pintsized/lua-resty-http"
13+
"ledgetech/lua-resty-http=0.17.1"
1414
)
1515
for dep in ${DEPENDENCY[@]};
1616
do

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ check_openresty_dependency() {
125125

126126
check_lua_dependency() {
127127
DEPENDENCY=( \
128-
"pintsized/lua-resty-http" \
128+
"ledgetech/lua-resty-http=0.17.1" \
129129
)
130130
for dep in "${DEPENDENCY[@]}";
131131
do

rpm/SPECS/crowdsec-openresty-bouncer.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ CERTS=(
7474

7575
check_lua_dependency() {
7676
DEPENDENCY=(
77-
"pintsized/lua-resty-http"
77+
"ledgetech/lua-resty-http=0.17.1"
7878
)
7979
for dep in ${DEPENDENCY[@]};
8080
do

uninstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ check_pkg_manager(){
3838

3939
remove_lua_dependency() {
4040
DEPENDENCY=(
41-
"pintsized/lua-resty-http"
41+
"ledgetech/lua-resty-http"
4242
)
4343
for dep in ${DEPENDENCY[@]};
4444
do

0 commit comments

Comments
 (0)