This repository was archived by the owner on May 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed
root/etc/services.d/endlessh Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:3.13
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:3.15
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.13
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.13
1
+ FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15
2
2
3
3
# set version label
4
4
ARG BUILD_DATE
Original file line number Diff line number Diff line change @@ -236,6 +236,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
236
236
237
237
## Versions
238
238
239
+ * ** 16.04.22:** - Rebase to Alpine 3.15.
239
240
* ** 07.10.21:** - Fix typo on MAXLINES var.
240
241
* ** 08.06.21:** - Add BINDFAMILY option.
241
242
* ** 16.04.21:** - Initial Release.
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ app_setup_block: |
54
54
55
55
# changelog
56
56
changelogs :
57
+ - { date: "16.04.22:", desc: "Rebase to Alpine 3.15." }
57
58
- { date: "07.10.21:", desc: "Fix typo on MAXLINES var." }
58
59
- { date: "08.06.21:", desc: "Add BINDFAMILY option." }
59
60
- { date: "16.04.21:", desc: "Initial Release." }
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ export \
4
4
MSDELAY=${MSDELAY:-10000} \
5
5
MAXLINES=${MAXLINES:-32} \
6
6
MAXCLIENTS=${MAXCLIENTS:-4096} \
7
- BINDFAMILY=$(test v4 = v${BINDFAMILY} -o v6 = v${BINDFAMILY} && echo -${BINDFAMILY})
7
+ BINDFAMILY=$(test v4 = v" ${BINDFAMILY}" -o v6 = v" ${BINDFAMILY}" && echo -" ${BINDFAMILY}" )
8
8
9
9
exec 2>&1 \
10
10
s6-setuidgid abc \
11
11
/app/endlessh/endlessh \
12
12
-v \
13
- -d ${MSDELAY} \
14
- -l ${MAXLINES} \
15
- -m ${MAXCLIENTS} \
13
+ -d " ${MSDELAY}" \
14
+ -l " ${MAXLINES}" \
15
+ -m " ${MAXCLIENTS}" \
16
16
-p 2222 \
17
17
${BINDFAMILY}
You can’t perform that action at this time.
0 commit comments