Compare commits

...

6 Commits

Author SHA1 Message Date
LinuxServer-CI
b419ebcce8 Bot Updating Package Versions 2022-01-23 13:33:34 +01:00
LinuxServer-CI
5724f5ad54 Bot Updating Package Versions 2022-01-16 13:34:14 +01:00
LinuxServer-CI
e522af0d30 Bot Updating Package Versions 2022-01-09 13:35:17 +01:00
aptalca
0a12acb21e Merge pull request #95 from linuxserver/mod-helper
Add helper for mods
2021-12-29 16:18:57 -05:00
Roxedus
237f55187a Add helper for mods 2021-12-29 21:01:59 +01:00
LinuxServer-CI
7163312453 Bot Updating Package Versions 2021-12-26 13:32:43 +01:00
4 changed files with 17 additions and 5 deletions

View File

@@ -266,6 +266,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **29.12.21:** - Add `install-extension` as a helper for mods to install extensions.
* **06.12.21:** - Add `DEFAULT_WORKSPACE` env var.
* **29.11.21:** - Rebase to Ubuntu focal.
* **16.09.21:** - Fix slow `chown` on large workspace (contents of workspace folder no longer chowned).

View File

@@ -122,7 +122,7 @@ librtmp12.4+20151223.gitfa8646d.1-2build1
libsasl2-22.1.27+dfsg-2
libsasl2-modules2.1.27+dfsg-2
libsasl2-modules-db2.1.27+dfsg-2
libseccomp22.5.1-1ubuntu1~20.04.1
libseccomp22.5.1-1ubuntu1~20.04.2
libselinux13.0-1build2
libsemanage13.0-1build2
libsemanage-common3.0-1build2
@@ -133,10 +133,10 @@ libss21.45.5-2ubuntu1
libssh-40.9.3-2ubuntu2.2
libssl1.11.1.1f-1ubuntu2.10
libstdc++610.3.0-1ubuntu1~20.04
libsystemd0245.4-4ubuntu3.13
libsystemd0245.4-4ubuntu3.15
libtasn1-64.16.0-2
libtinfo66.2-0ubuntu2
libudev1245.4-4ubuntu3.13
libudev1245.4-4ubuntu3.15
libunistring20.9.10-2
libuuid12.34-0.1ubuntu9.1
libwind0-heimdal7.7.0+dfsg-1ubuntu1
@@ -160,8 +160,8 @@ ncurses-base6.2-0ubuntu2
ncurses-bin6.2-0ubuntu2
netbase6.1
net-tools1.60+git20180626.aebd88e-1ubuntu1
nodejs14.18.2-deb-1nodesource1
openssh-client1:8.2p1-4ubuntu0.3
nodejs14.18.3-deb-1nodesource1
openssh-client1:8.2p1-4ubuntu0.4
openssl1.1.1f-1ubuntu2.10
passwd1:4.8.1-1ubuntu5.20.04.1
patch2.7.6-6

View File

@@ -77,6 +77,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }
- { date: "06.12.21:", desc: "Add `DEFAULT_WORKSPACE` env var." }
- { date: "29.11.21:", desc: "Rebase to Ubuntu focal." }
- { date: "16.09.21:", desc: "Fix slow `chown` on large workspace (contents of workspace folder no longer chowned)." }

View File

@@ -0,0 +1,10 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash
_install=(/usr/local/bin/code-server "--extensions-dir" "/config/extensions" "--install-extension")
if [ "$(whoami)" == "abc" ]; then
"${_install[@]}" "$@"
else
s6-setuidgid abc "${_install[@]}" "$@"
fi