From d633bb73969c614beb8c067ef09fc5ecb600da07 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Wed, 31 Mar 2021 18:23:32 -0700 Subject: [PATCH] Add script to install node_exporter for the system --- .../.local/bin/install-node-exporter-system | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 install-scripts/.local/bin/install-node-exporter-system diff --git a/install-scripts/.local/bin/install-node-exporter-system b/install-scripts/.local/bin/install-node-exporter-system new file mode 100755 index 0000000..271575a --- /dev/null +++ b/install-scripts/.local/bin/install-node-exporter-system @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +set -e +set -x + +# shellcheck disable=SC1090 +source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" + +APP=node_exporter +VERSION=${VERSION:-1.1.2} +APPS_DIR=/usr/local/apps/${APP} +URL=https://github.com/prometheus/node_exporter/releases/download/v${VERSION}/node_exporter-${VERSION}.$(get_os)-$(get_arch).tar.gz + +extract_tarball "${URL}" "${APPS_DIR}/${VERSION}" "--strip-components 1" sudo +set_current_link "${APPS_DIR}" "${VERSION}" sudo + +apps=$(find ${APPS_DIR}/current/ -maxdepth 1 -executable -type f -exec basename {} \;) +cd /usr/local/bin +for bin in $apps; do + if [[ ! -s $bin ]]; then + sudo ln --symbolic \ + "$(relative_path "/usr/local/bin" "${APPS_DIR}/current/${bin}")" \ + "${bin}" + fi +done