fixes #15 Teamspeak 6 unable to install - #16
Open
Multigestern wants to merge 1 commit into
Open
Conversation
Teamspeak server beta 6.0.0-beta9 and 6.0.0-beta10 are working.
Due to the bad release naming scheme of the ts6 server the pull cannot be completed correctly.
I fixed the Startup script.
The added script as oneliner:
```
set -euo pipefail
REPO="teamspeak/teamspeak6-server"
TARGET_DIR="/mnt/server"
gh_api() {
curl -sL "$1"
}
if [ -z "${TS_VERSION:-}" ] || [ "${TS_VERSION}" = "latest" ]; then
echo "► Fetching latest Teamspeak 6 release info from GitHub…"
RELEASE_JSON="$(gh_api "https://api.github.com/repos/${REPO}/releases/latest")"
else
echo "► Fetching release info for tag v${TS_VERSION}…"
RELEASE_JSON="$(gh_api "https://api.github.com/repos/${REPO}/releases/tags/v${TS_VERSION}")"
fi
ASSET_URL="$(echo "$RELEASE_JSON" \
| jq -r '.assets[]
| select(.name | test("linux-amd64\\.tar\\.xz$"))
| .browser_download_url')"
if [ -z "$ASSET_URL" ] || [ "$ASSET_URL" = "null" ]; then
echo "✗ No linux-amd64 tarball found in this release."
exit 1
fi
echo "► Downloading and extracting: $ASSET_URL"
echo "► Cleaning target directory…"
rm -f "$TARGET_DIR/tsserver"
cd "$TARGET_DIR"
gh_api "$ASSET_URL" | tar -xvJ
```
redthirten
requested changes
Jun 8, 2026
redthirten
left a comment
Contributor
There was a problem hiding this comment.
You said the egg was exported from the panel, but it was not.
Also, we are in the progress of upgrading all the Eggs to the new YAML format, so if you could export the Egg in this format, that would be great.
Finally, if you don't mind, please use Scramble to provide an updated Pterodactyl Egg as well.
Thank you for your contribution!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Teamspeak server beta 6.0.0-beta9 and 6.0.0-beta10 are working.
Due to the bad release naming scheme of the ts6 server the pull cannot be completed correctly. I fixed the Startup script.
The added script as oneliner:
Description
Checklist for all submissions
New egg Submissions