diff options
author | Marcelo Araujo <araujo@FreeBSD.org> | 2019-12-02 09:52:41 +0000 |
---|---|---|
committer | Marcelo Araujo <araujo@FreeBSD.org> | 2019-12-02 09:52:41 +0000 |
commit | 62e2b2b815da7a6246ee429aa2fa7ab8c9a13701 (patch) | |
tree | a5a1462dd907547c20abc955fb2677f48c21cdf9 /net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in | |
parent | Update to 1.0.1 (diff) |
- Update to 1.19.0.
- Add option for LTO (enabled by default in older versions).
- Update configuration sample and remove irrelevant settings for initial setup.
Submitted by: Daniel Engberg <daniel.engberg.lists_pyret.net>
Approved by: maintainer timeout (> 2 weeks)
Differential Revision: https://reviews.freebsd.org/D22615
https://reviews.freebsd.org/D21969
https://reviews.freebsd.org/D22045
Diffstat (limited to 'net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in')
-rw-r--r-- | net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in b/net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in index 45164d19f085..c251bdbefb7b 100644 --- a/net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in +++ b/net-mgmt/netdata/files/patch-collectors_python.d.plugin_python.d.plugin.in @@ -1,9 +1,10 @@ ---- collectors/python.d.plugin/python.d.plugin.in.orig 2019-05-27 21:36:18 UTC +--- collectors/python.d.plugin/python.d.plugin.in.orig 2019-10-10 13:13:19 UTC +++ collectors/python.d.plugin/python.d.plugin.in -@@ -1,5 +1,5 @@ +@@ -1,6 +1,6 @@ #!/usr/local/bin/bash '''':; --exec "$(command -v python || command -v python3 || command -v python2 || -+exec "$(command -v python || command -v python3.6 || command -v python2.7 || - echo "ERROR python IS NOT AVAILABLE IN THIS SYSTEM")" "$0" "$@" # ''' - +-pybinary=$(which python || which python3 || which python2) ++pybinary=$(which python || which python3.6 || which python2.7) + filtered=() + for arg in "$@" + do |