Skip to content
This repository was archived by the owner on May 25, 2024. It is now read-only.

Commit 9d509e1

Browse files
authored
Merge pull request #7 from linuxserver/maxlines
fix typo on MAXLINES var
2 parents ca33de4 + 1d8344a commit 9d509e1

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,5 +235,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
235235

236236
## Versions
237237

238+
* **07.10.21:** - Fix typo on MAXLINES var.
238239
* **08.06.21:** - Add BINDFAMILY option.
239240
* **16.04.21:** - Initial Release.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,6 @@ app_setup_block: |
5454
5555
# changelog
5656
changelogs:
57+
- { date: "07.10.21:", desc: "Fix typo on MAXLINES var." }
5758
- { date: "08.06.21:", desc: "Add BINDFAMILY option." }
5859
- { date: "16.04.21:", desc: "Initial Release." }

root/etc/services.d/endlessh/run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export \
44
MSDELAY=${MSDELAY:-10000} \
5-
MAXLINE=${MAXLINE:-32} \
5+
MAXLINES=${MAXLINES:-32} \
66
MAXCLIENTS=${MAXCLIENTS:-4096} \
77
BINDFAMILY=$(test v4 = v${BINDFAMILY} -o v6 = v${BINDFAMILY} && echo -${BINDFAMILY})
88

@@ -11,7 +11,7 @@ exec 2>&1 \
1111
/app/endlessh/endlessh \
1212
-v \
1313
-d ${MSDELAY} \
14-
-l ${MAXLINE} \
14+
-l ${MAXLINES} \
1515
-m ${MAXCLIENTS} \
1616
-p 2222 \
1717
${BINDFAMILY}

0 commit comments

Comments
 (0)