2020-03-30 17:41:49 -04:00

14 lines
271 B
Ruby

module VagrantPlugins
module PodmanProvisioner
module Cap
module Linux
module PodmanInstalled
def self.podman_installed(machine)
machine.communicate.test("command -v podman")
end
end
end
end
end
end