From d8882042d122914155c358817b8529ea4341e4b8 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 23 Mar 2021 14:41:42 +0100 Subject: [PATCH] Implement review suggestion --- process/profile.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/process/profile.go b/process/profile.go index 8639c39a..8f64b91e 100644 --- a/process/profile.go +++ b/process/profile.go @@ -65,7 +65,9 @@ func (p *Process) GetProfile(ctx context.Context) (changed bool, err error) { case "linux": switch p.Path { case "/lib/systemd/systemd-resolved", - "/usr/lib/systemd/systemd-resolved": + "/usr/lib/systemd/systemd-resolved", + "/lib64/systemd/systemd-resolved", + "/usr/lib64/systemd/systemd-resolved": profileID = profile.SystemResolverProfileID } }