Skip to content

Commit 09d5fcc

Browse files
committed
Fix tarball path
1 parent 96b2404 commit 09d5fcc

File tree

2 files changed

+2
-2
lines changed
  • root/etc

2 files changed

+2
-2
lines changed

root/etc/cont-init.d/98-crowdsec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ curl -so \
3232

3333
mkdir -p /tmp/crowdsec
3434

35-
if ! tar -tzf /crowdsec.tar.gz >/dev/null 2>&1; then
35+
if ! tar -tzf /tmp/crowdsec.tar.gz >/dev/null 2>&1; then
3636
echo "**** Invalid tarball, could not download crowdsec bouncer ****"
3737
exit 1
3838
fi

root/etc/s6-overlay/s6-rc.d/init-mod-swag-crowdsec/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ curl -so \
3232

3333
mkdir -p /tmp/crowdsec
3434

35-
if ! tar -tzf /crowdsec.tar.gz >/dev/null 2>&1; then
35+
if ! tar -tzf /tmp/crowdsec.tar.gz >/dev/null 2>&1; then
3636
echo "**** Invalid tarball, could not download crowdsec bouncer ****"
3737
exit 1
3838
fi

0 commit comments

Comments
 (0)