summaryrefslogtreecommitdiff
path: root/packages/telegraf/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packages/telegraf/build.sh')
-rwxr-xr-xpackages/telegraf/build.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/telegraf/build.sh b/packages/telegraf/build.sh
new file mode 100755
index 00000000..77712412
--- /dev/null
+++ b/packages/telegraf/build.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+CWD=$(pwd)
+set -e
+
+SRC=telegraf
+if [ ! -d ${SRC} ]; then
+ echo "Source directory does not exists, please 'git clone'"
+ exit 1
+fi
+
+PLUGIN_DIR=${CWD}/plugins
+
+echo "I: Selecting Input plugins"
+cp ${PLUGIN_DIR}/inputs/all/all.go ${SRC}/plugins/inputs/all/all.go
+
+echo "I: Selecting Output plugins"
+cp ${PLUGIN_DIR}/outputs/all/all.go ${SRC}/plugins/outputs/all/all.go
+
+echo "I: Build Debian amd64 package"
+cd ${SRC}
+export PATH=/opt/go/bin:$PATH
+LDFLAGS=-w make amd64.deb