run-updater-check.sh 585 B

123456789101112
  1. #!/bin/sh
  2. echo ">>> Installing Netdata..."
  3. /netdata/packaging/installer/kickstart.sh --dont-wait --build-only --disable-telemetry || exit 1
  4. echo "::group::Environment File Contents"
  5. cat /etc/netdata/.environment
  6. echo "::endgroup::"
  7. echo ">>> Updating Netdata..."
  8. export NETDATA_NIGHTLIES_BASEURL="http://localhost:8080/artifacts/" # Pull the tarball from the local web server.
  9. /netdata/packaging/installer/netdata-updater.sh --not-running-from-cron --no-updater-self-update || exit 1
  10. echo ">>> Checking if update was successful..."
  11. /netdata/.github/scripts/check-updater.sh || exit 1