From a779646b7c4d3ca18165800844dcf669590c0e87 Mon Sep 17 00:00:00 2001 From: Dan Fuhry Date: Thu, 13 Nov 2025 18:58:02 -0500 Subject: [PATCH] utils/hostname: add Containerization for macos --- utils/hostname/hostname_macos.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/utils/hostname/hostname_macos.go b/utils/hostname/hostname_macos.go index c261853..721e718 100644 --- a/utils/hostname/hostname_macos.go +++ b/utils/hostname/hostname_macos.go @@ -56,6 +56,11 @@ func Fqdn() string { return "" } +func Containerization() ContainerType { + // FIXME implement properly on macos + return ContainerNone +} + func maybeAppendDefaultDomainName(name string) string { parts := strings.Split(name, ".") if len(parts) < 2 { -- 2.52.0