summaryrefslogtreecommitdiffstats
path: root/.github/scripts/run-updater-check.sh
blob: 264ed616a7bf13aca6fc5b93865485e25884a48c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

echo ">>> Installing Netdata..."
/netdata/packaging/installer/kickstart.sh --dont-wait --build-only --disable-telemetry || exit 1
echo ">>> Updating Netdata..."
export NETDATA_NIGHTLIES_BASEURL="http://localhost:8080/artifacts/" # Pull the tarball from the local web server.
/netdata/packaging/installer/netdata-updater.sh --not-running-from-cron --no-updater-self-update || exit 1
echo ">>> Checking if update was successful..."
/netdata/.github/scripts/check-updater.sh || exit 1