14 lines
271 B
Ruby
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
|