summaryrefslogtreecommitdiffstats
path: root/packaging/docker/run.sh
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-07-23 07:12:57 -0400
committerGitHub <noreply@github.com>2020-07-23 07:12:57 -0400
commit83bf2924aa63fdc132d76cd90828ec5699ffbb36 (patch)
treed6f13c3f53379bc8f9ca9e4f0918066920223bac /packaging/docker/run.sh
parent6152f365d0da86e0ad7566fc8d629fa0155a8cff (diff)
Removed runtime support for Polymorphic Linux from our Docker containers. (#9566)
* Remove runtime support for Polymorphic Linux from our Docker containers. This removes our runtime support for Polyverse's Polymorphic Linux from our Docker containers. The actual support is currently broken due to upstream changes, but we have decided to just remove it instead of fixing it due to it providing limited practical benefit to our users and not being supported across all of our supported platforms. We had previously removed build-time usage of this functionality for the same reasons to reduce the final image size for our 64-bit x86 Docker images. * Remove docs for Polyverse support.
Diffstat (limited to 'packaging/docker/run.sh')
-rwxr-xr-xpackaging/docker/run.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/packaging/docker/run.sh b/packaging/docker/run.sh
index ab4381b9bf..8a2ed8c6c6 100755
--- a/packaging/docker/run.sh
+++ b/packaging/docker/run.sh
@@ -12,16 +12,6 @@ if [ ! "${DO_NOT_TRACK:-0}" -eq 0 ] || [ -n "$DO_NOT_TRACK" ]; then
fi
echo "Netdata entrypoint script starting"
-if [ ${RESCRAMBLE+x} ] && [ "$(uname -m)" == "x86_64" ]; then
- echo "Injecting packages from Polymorphic Linux"
- apk update && apk upgrade
- curl https://sh.polyverse.io | sh -s install gcxce5byVQbtRz0iwfGkozZwy support+netdata@polyverse.io
- # shellcheck disable=SC2181
- if [ $? -eq 0 ]; then
- apk update && apk upgrade --available --no-cache && sed -in 's/^#//g' /etc/apk/repositories
- fi
-fi
-
if [ -n "${PGID}" ]; then
echo "Creating docker group ${PGID}"
addgroup -g "${PGID}" "docker" || echo >&2 "Could not add group docker with ID ${PGID}, its already there probably"