summaryrefslogtreecommitdiffstats
path: root/debian/patches/0005-debian-use-sh.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0005-debian-use-sh.patch')
-rw-r--r--debian/patches/0005-debian-use-sh.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/debian/patches/0005-debian-use-sh.patch b/debian/patches/0005-debian-use-sh.patch
new file mode 100644
index 000000000..2be92d2d3
--- /dev/null
+++ b/debian/patches/0005-debian-use-sh.patch
@@ -0,0 +1,21 @@
+Author: Daniel Baumann <daniel.baumann@progress-linux.org>
+Description: Fix shebang hack to not depend on bash.
+
+diff -Naurp netdata.orig/collectors/node.d.plugin/node.d.plugin netdata/collectors/node.d.plugin/node.d.plugin
+--- netdata.orig/collectors/node.d.plugin/node.d.plugin
++++ netdata/collectors/node.d.plugin/node.d.plugin
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env bash
++#!/bin/sh
+ ':' //; exec "$(command -v nodejs || command -v node || echo "ERROR node IS NOT AVAILABLE IN THIS SYSTEM")" "$0" "$@"
+
+ // shebang hack from:
+diff -Naurp netdata.orig/collectors/node.d.plugin/node.d.plugin.in netdata/collectors/node.d.plugin/node.d.plugin.in
+--- netdata.orig/collectors/node.d.plugin/node.d.plugin.in
++++ netdata/collectors/node.d.plugin/node.d.plugin.in
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env bash
++#!/bin/sh
+ ':' //; exec "$(command -v nodejs || command -v node || echo "ERROR node IS NOT AVAILABLE IN THIS SYSTEM")" "$0" "$@"
+
+ // shebang hack from: