Files
podman/pkg/machine/e2e/config_unix_test.go
Matt Souza 090304a054 lint: reenable revive unused-parameter check
Signed-off-by: Matt Souza <medsouz99@gmail.com>
2025-10-01 10:42:08 -04:00

13 lines
235 B
Go

//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
package e2e_test
import (
"os/exec"
)
func pgrep(_ string) (string, error) {
out, err := exec.Command("pgrep", "gvproxy").Output()
return string(out), err
}