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