summaryrefslogtreecommitdiffstats
path: root/debian/patches/0007-debian-use-sh.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-01-01 15:59:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-01-27 20:49:02 +0000
commit543d32c38eeba6f16fb17c5d8dda9318247b537c (patch)
treed769f71a2c9298945183c761577816a48db0905c /debian/patches/0007-debian-use-sh.patch
parentRenaming netdata to netdata-core, making netdata a meta package depending on ... (diff)
downloadnetdata-543d32c38eeba6f16fb17c5d8dda9318247b537c.tar.xz
netdata-543d32c38eeba6f16fb17c5d8dda9318247b537c.zip
Renumbering patches.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/0007-debian-use-sh.patch')
-rw-r--r--debian/patches/0007-debian-use-sh.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/0007-debian-use-sh.patch b/debian/patches/0007-debian-use-sh.patch
deleted file mode 100644
index 2be92d2d3..000000000
--- a/debian/patches/0007-debian-use-sh.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-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: