2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-01-05 18:02:03 +00:00
|
|
|
//go:build openbsd && arm
|
2021-06-02 17:17:52 +00:00
|
|
|
|
|
|
|
package diagnose
|
|
|
|
|
2021-06-07 16:29:15 +00:00
|
|
|
import "context"
|
|
|
|
|
2021-06-02 17:17:52 +00:00
|
|
|
func diskUsage(ctx context.Context) error {
|
2021-07-11 22:44:19 +00:00
|
|
|
SpotSkipped(ctx, "Check Disk Usage", "Disk Usage diagnostics are unsupported on this platform.")
|
2021-06-07 22:19:47 +00:00
|
|
|
return nil
|
2021-06-02 17:17:52 +00:00
|
|
|
}
|