summaryrefslogtreecommitdiffstats
path: root/netdata-installer.sh
diff options
context:
space:
mode:
authorSteve8291 <hambling8@gmail.com>2019-05-23 03:45:44 -0400
committerChris Akritidis <43294513+cakrit@users.noreply.github.com>2019-05-23 09:45:44 +0200
commit9beb4f01b399f701faa259e31073c68638e629ca (patch)
treea24eff21879f3ecd08853f53ad69af1855d9fde7 /netdata-installer.sh
parent41e67b50e072d4bf50bf5e931c99d9a80ff5ad42 (diff)
Create missing /etc/netdata/custom-plugins.d (#6089)
Fix Error message in error.log: netdata ERROR : PLUGINSD : cannot open plugins directory '/etc/netdata/custom-plugins.d' (errno 2, No such file or directory)
Diffstat (limited to 'netdata-installer.sh')
-rwxr-xr-xnetdata-installer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/netdata-installer.sh b/netdata-installer.sh
index 4ed4050fd7..24e8fdf3b8 100755
--- a/netdata-installer.sh
+++ b/netdata-installer.sh
@@ -628,7 +628,7 @@ fi
# --- conf dir ----
-for x in "python.d" "charts.d" "node.d" "health.d" "statsd.d" "go.d"; do
+for x in "python.d" "charts.d" "node.d" "health.d" "statsd.d" "go.d" "custom-plugins.d"; do
if [ ! -d "${NETDATA_USER_CONFIG_DIR}/${x}" ]; then
echo >&2 "Creating directory '${NETDATA_USER_CONFIG_DIR}/${x}'"
run mkdir -p "${NETDATA_USER_CONFIG_DIR}/${x}" || exit 1