17 lines
340 B
Ruby
17 lines
340 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
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
|