hostinfo: fix a couple of logic simplification lints

Updates #cleanup
Signed-off-by: James Tucker <james@tailscale.com>
pull/10038/head
James Tucker 7 months ago committed by James Tucker
parent 37863205ec
commit 01604c06d2

@ -335,10 +335,7 @@ func inAzureAppService() bool {
}
func inAWSFargate() bool {
if os.Getenv("AWS_EXECUTION_ENV") == "AWS_ECS_FARGATE" {
return true
}
return false
return os.Getenv("AWS_EXECUTION_ENV") == "AWS_ECS_FARGATE"
}
func inFlyDotIo() bool {
@ -364,10 +361,7 @@ func inKubernetes() bool {
}
func inDockerDesktop() bool {
if os.Getenv("TS_HOST_ENV") == "dde" {
return true
}
return false
return os.Getenv("TS_HOST_ENV") == "dde"
}
func inHomeAssistantAddOn() bool {

Loading…
Cancel
Save