aboutsummaryrefslogtreecommitdiffstats
path: root/ranch_prometheus_example.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ranch_prometheus_example.sh')
-rwxr-xr-xranch_prometheus_example.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/ranch_prometheus_example.sh b/ranch_prometheus_example.sh
deleted file mode 100755
index a85a8a2..0000000
--- a/ranch_prometheus_example.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env sh
-
-set -e
-#set -x
-
-NAME=$1
-DIST=archlinux
-RELEASE=current
-ARCH=amd64
-PACKAGES="cronie git sudo erlang-nox make"
-
-for f in ci.d/*; do source "$f"; done
-
-lxc_destroy
-lxc_create $DIST $RELEASE $ARCH
-lxc_wait_for_ip
-pacman_upgrade
-pacman_install $PACKAGES
-archlinux_enable_cron
-
-lxc_do mkdir -p /home/ninenines
-lxc_do git clone https://github.com/juhlig/prometheus_ranch_example /home/ninenines/prometheus_ranch_example
-lxc_do make -C /home/ninenines/prometheus_ranch_example clean
-lxc_do make -C /home/ninenines/prometheus_ranch_example
-
-lxc_do sh -c 'echo "@reboot /home/ninenines/prometheus_ranch_example/_rel/prometheus_ranch_example_release/bin/prometheus_ranch_example_release start" >> tmpcron'
-lxc_do sh -c 'crontab tmpcron'
-lxc_do sh -c 'rm tmpcron'
-
-lxc_restart
-
-lxc_do /usr/bin/env sh -c "until curl http://localhost:8080/metrics ; do sleep 1 ; done"