From d03c1a3032d1f963d418e7f9819bc103222f8c96 Mon Sep 17 00:00:00 2001
From: Wolfgang Welz <welzwo@gmail.com>
Date: Wed, 31 Jul 2019 00:59:14 +0200
Subject: [PATCH] Disable dashboard by default

---
 plugins/dashboard/plugin.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/dashboard/plugin.go b/plugins/dashboard/plugin.go
index 02f687ea..a292f80a 100644
--- a/plugins/dashboard/plugin.go
+++ b/plugins/dashboard/plugin.go
@@ -16,7 +16,7 @@ var server *http.Server
 
 var router *http.ServeMux
 
-var PLUGIN = node.NewPlugin("Dashboard", node.Enabled, configure, run)
+var PLUGIN = node.NewPlugin("Dashboard", node.Disabled, configure, run)
 
 func configure(plugin *node.Plugin) {
 	router = http.NewServeMux()
-- 
GitLab