summaryrefslogtreecommitdiffstats
path: root/packaging/scripts/install.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-01 06:15:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-01 06:15:04 +0000
commite970e0b37b8bd7f246feb3f70c4136418225e434 (patch)
tree0b67c0ca45f56f2f9d9c5c2e725279ecdf52d2eb /packaging/scripts/install.sh
parentAdding upstream version 1.31.0. (diff)
downloadnetdata-e970e0b37b8bd7f246feb3f70c4136418225e434.tar.xz
netdata-e970e0b37b8bd7f246feb3f70c4136418225e434.zip
Adding upstream version 1.32.0.upstream/1.32.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/scripts/install.sh')
-rwxr-xr-xpackaging/scripts/install.sh83
1 files changed, 0 insertions, 83 deletions
diff --git a/packaging/scripts/install.sh b/packaging/scripts/install.sh
deleted file mode 100755
index b14ca11e5..000000000
--- a/packaging/scripts/install.sh
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/sh
-
-install_debian_like() {
- # This is needed to ensure package installs don't prompt for any user input.
- export DEBIAN_FRONTEND=noninteractive
-
- apt-get update
-
- # Install NetData
- apt-get install -y "/packages/netdata_${VERSION}_${ARCH}.deb"
-
- # Install testing tools
- apt-get install -y --no-install-recommends \
- curl netcat jq
-}
-
-install_fedora_like() {
- # Using a glob pattern here because I can't reliably determine what the
- # resulting package name will be (TODO: There must be a better way!)
-
- PKGMGR="$( (command -v dnf > /dev/null && echo "dnf") || echo "yum")"
-
- pkg_version="$(echo "${VERSION}" | tr - .)"
-
- # Install NetData
- "$PKGMGR" install -y /packages/netdata-"${pkg_version}"-*.rpm
-
- # Install testing tools
- "$PKGMGR" install -y curl nc jq
-}
-
-install_centos() {
- # Using a glob pattern here because I can't reliably determine what the
- # resulting package name will be (TODO: There must be a better way!)
-
- PKGMGR="$( (command -v dnf > /dev/null && echo "dnf") || echo "yum")"
-
- pkg_version="$(echo "${VERSION}" | tr - .)"
-
- # Install EPEL (needed for `jq`
- "$PKGMGR" install -y epel-release
-
- # Install NetData
- "$PKGMGR" install -y /packages/netdata-"${pkg_version}"-*.rpm
-
- # Install testing tools
- "$PKGMGR" install -y curl nc jq
-}
-
-install_suse_like() {
- # Using a glob pattern here because I can't reliably determine what the
- # resulting package name will be (TODO: There must be a better way!)
-
- pkg_version="$(echo "${VERSION}" | tr - .)"
-
- # Install NetData
- # FIXME: Allow unsigned packages (for now) #7773
- zypper install -y --allow-unsigned-rpm \
- /packages/netdata-"${pkg_version}"-*.rpm
-
- # Install testing tools
- zypper install -y --no-recommends \
- curl gnu-netcat jq
-}
-
-case "${DISTRO}" in
- debian | ubuntu)
- install_debian_like
- ;;
- fedora)
- install_fedora_like
- ;;
- centos)
- install_centos
- ;;
- opensuse)
- install_suse_like
- ;;
- *)
- printf "ERROR: unsupported distro: %s_%s\n" "${DISTRO}" "${DISTRO_VERSION}"
- exit 1
- ;;
-esac