From d079b656b4719739b2247dcd9d46e9bec793095a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 Feb 2023 17:11:34 +0100 Subject: Merging upstream version 1.38.0. Signed-off-by: Daniel Baumann --- tests/updater_checks.sh | 71 ------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100755 tests/updater_checks.sh (limited to 'tests/updater_checks.sh') diff --git a/tests/updater_checks.sh b/tests/updater_checks.sh deleted file mode 100755 index 1c8d7b028..000000000 --- a/tests/updater_checks.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env sh -# -# Wrapper script that installs the required dependencies -# for the BATS script to run successfully -# -# Copyright: SPDX-License-Identifier: GPL-3.0-or-later -# -# Author : Pavlos Emm. Katsoulakis /dev/null 2>&1; then - echo "Executing grep installation" - pacman -Sy - pacman --noconfirm --needed -S grep - fi -} -blind_arch_grep_install || echo "Workaround failed, proceed as usual" - -running_os="$(grep '^ID=' /etc/os-release | cut -d'=' -f2 | sed -e 's/"//g')" - -case "${running_os}" in -"centos"|"fedora"|"CentOS") - echo "Running on CentOS, updating YUM repository.." - yum clean all - yum update -y - - echo "Installing extra dependencies.." - yum install -y epel-release - yum install -y bats curl - ;; -"debian"|"ubuntu") - echo "Running ${running_os}, updating APT repository" - apt-get update -y - apt-get install -y bats curl - ;; -"opensuse-leap"|"opensuse-tumbleweed") - zypper update -y - zypper install -y bats curl - - # Fixes curl: (60) SSL certificate problem: unable to get local issuer certificate - # https://travis-ci.com/netdata/netdata/jobs/267573805 - update-ca-certificates - ;; -"arch") - pacman --noconfirm -Syu - pacman --noconfirm --needed -S bash-bats curl libffi - ;; -"alpine") - apk update - apk add bash curl bats - ;; -*) - echo "Running on ${running_os}, no repository preparation done" - ;; -esac - -# Run dependency scriptlet, before anything else -# -./packaging/installer/install-required-packages.sh --non-interactive netdata - -echo "Running BATS file.." -bats --tap tests/updater_checks.bats -- cgit v1.2.3