summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authordd <dd@wx.tnyzeq.icu>2024-10-04 07:00:11 +0200
committerdd <dd@wx.tnyzeq.icu>2024-10-04 07:00:11 +0200
commit6035df6539f50719a55d2611e94d4effb761f83f (patch)
tree9eff745731f1a3a3ce6a6550c42d19663c89901a /scripts
parentcd46cb58c03d2937709e8095a5ca64357cd66ec6 (diff)
parentc6231a51e80d371ccd9d6acf360feb211d28d1ac (diff)
downloadvyos-build-6035df6539f50719a55d2611e94d4effb761f83f.tar.gz
vyos-build-6035df6539f50719a55d2611e94d4effb761f83f.zip
Merge branch 'vyos:current' into current
Diffstat (limited to 'scripts')
-rw-r--r--scripts/package-build/node_exporter/.gitignore7
l---------scripts/package-build/node_exporter/build.py1
-rw-r--r--scripts/package-build/node_exporter/package.toml21
3 files changed, 29 insertions, 0 deletions
diff --git a/scripts/package-build/node_exporter/.gitignore b/scripts/package-build/node_exporter/.gitignore
new file mode 100644
index 00000000..0e010f4d
--- /dev/null
+++ b/scripts/package-build/node_exporter/.gitignore
@@ -0,0 +1,7 @@
+node_exporter/
+*.buildinfo
+*.build
+*.changes
+*.deb
+*.dsc
+
diff --git a/scripts/package-build/node_exporter/build.py b/scripts/package-build/node_exporter/build.py
new file mode 120000
index 00000000..3c76af73
--- /dev/null
+++ b/scripts/package-build/node_exporter/build.py
@@ -0,0 +1 @@
+../build.py \ No newline at end of file
diff --git a/scripts/package-build/node_exporter/package.toml b/scripts/package-build/node_exporter/package.toml
new file mode 100644
index 00000000..b0070278
--- /dev/null
+++ b/scripts/package-build/node_exporter/package.toml
@@ -0,0 +1,21 @@
+[[packages]]
+name = "node_exporter"
+commit_id = "v1.8.2"
+scm_url = "https://github.com/prometheus/node_exporter"
+
+build_cmd = """
+
+# Create the install directory
+mkdir -p debian/usr/sbin
+make build
+
+# Move the node_exporter binary to the install directory
+mv node_exporter debian/usr/sbin
+
+# Build the Debian package
+fpm --input-type dir --output-type deb --name node-exporter \
+ --version $(git describe --tags --always | cut -c2-) --deb-compression gz \
+ --maintainer "VyOS Package Maintainers <maintainers@vyos.net>" \
+ --description "Prometheus exporter for machine metrics" \
+ --license Apache-2.0 -C debian --package ..
+"""