From ae0889ef6a762d07fdc87943e4d4d2b6911793a7 Mon Sep 17 00:00:00 2001 From: Stephen Levine Date: Fri, 24 Jan 2025 17:16:13 -0500 Subject: [PATCH] lint --- lib/autoupdate/agent/updater.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/autoupdate/agent/updater.go b/lib/autoupdate/agent/updater.go index fa989dd2ec556..0591956ec1111 100644 --- a/lib/autoupdate/agent/updater.go +++ b/lib/autoupdate/agent/updater.go @@ -795,17 +795,17 @@ func (u *Updater) notices(ctx context.Context) error { if !enabled && active { u.Log.WarnContext(ctx, "Teleport is installed and started, but not configured to start on boot.\n"+ "After configuring teleport.yaml, you can enable it with:\n"+ - "\tsystemctl enable teleport") + "\tsystemctl enable teleport") //nolint:sloglint // sum of constants } if !active && enabled { u.Log.WarnContext(ctx, "Teleport is installed and enabled at boot, but not running.\n"+ "After configuring teleport.yaml, you can start it with:\n"+ - "\tsystemctl start teleport") + "\tsystemctl start teleport") //nolint:sloglint // sum of constants } if !active && !enabled { u.Log.WarnContext(ctx, "Teleport is installed, but not running or enabled at boot.\n"+ "After configuring teleport.yaml, you can enable and start it with:\n"+ - "\tsystemctl enable teleport --now") + "\tsystemctl enable teleport --now") //nolint:sloglint // sum of constants } return nil }