Skip to content

Commit 14aace8

Browse files
authored
Merge pull request #8 from linuxserver/token
2 parents 61efb20 + 0748351 commit 14aace8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

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

252252
## Versions
253253

254+
* **10.12.21:** - Update deprecated connectionToken arg.
254255
* **30.11.21:** - Fix app folder permissions, add the optional sudo password vars.
255256
* **29.11.21:** - Create `.profile` and `.bashrc` for the user.
256257
* **29.11.21:** - Release `insiders` tag.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ app_setup_block: |
6161
6262
# changelog
6363
changelogs:
64+
- { date: "10.12.21:", desc: "Update deprecated connectionToken arg." }
6465
- { date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars." }
6566
- { date: "29.11.21:", desc: "Create `.profile` and `.bashrc` for the user." }
6667
- { date: "29.11.21:", desc: "Release `insiders` tag." }

root/etc/services.d/openvscode-server/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ -n "$CONNECTION_SECRET" ]; then
44
CODE_ARGS="${CODE_ARGS} --connection-secret ${CONNECTION_SECRET}"
55
echo "Using connection secret from ${CONNECTION_SECRET}"
66
elif [ -n "$CONNECTION_TOKEN" ]; then
7-
CODE_ARGS="${CODE_ARGS} --connectionToken ${CONNECTION_TOKEN}"
7+
CODE_ARGS="${CODE_ARGS} --connection-token ${CONNECTION_TOKEN}"
88
echo "Using connection token ${CONNECTION_TOKEN}"
99
else
1010
if [ ! -f "/config/.secretkey" ]; then

0 commit comments

Comments
 (0)