From b861edf8305f49a88b0b1f1ef6052945f235b2d1 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.50.1