updater_checks.sh 396 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. #
  3. # Wrapper script that installs the required dependencies
  4. # for the BATS script to run successfully
  5. #
  6. # Copyright: SPDX-License-Identifier: GPL-3.0-or-later
  7. #
  8. # Author : Pavlos Emm. Katsoulakis <paul@netdata.cloud)
  9. #
  10. echo "Installing extra dependencies.."
  11. yum install -y epel-release
  12. yum install -y git bats
  13. echo "Running BATS file.."
  14. bats --tap tests/updater_checks.bats