From 275023f64c3cbf01206a8dcf2674d1897bf3366e Mon Sep 17 00:00:00 2001 From: Justin Kolberg Date: Tue, 20 Jun 2023 09:48:12 -0700 Subject: [PATCH] fix(pkg/scripts_test): missing _ in systemGroup Signed-off-by: Justin Kolberg --- pkg/scripts_test/consts_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scripts_test/consts_darwin.go b/pkg/scripts_test/consts_darwin.go index 02460cfa41..982e3af4d5 100644 --- a/pkg/scripts_test/consts_darwin.go +++ b/pkg/scripts_test/consts_darwin.go @@ -9,6 +9,6 @@ const ( rootGroup string = "wheel" rootUser string = "root" - systemGroup string = "otelcol-sumo" + systemGroup string = "_otelcol-sumo" systemUser string = "_otelcol-sumo" )