mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 17:05:29 -05:00
14 lines
335 B
Ruby
14 lines
335 B
Ruby
module VagrantPlugins
|
|
module CFEngine
|
|
module Cap
|
|
module Linux
|
|
module CFEngineInstalled
|
|
def self.cfengine_installed(machine)
|
|
machine.communicate.test(
|
|
"test -d /var/cfengine && test -x /var/cfengine/bin/cf-agent", sudo: true)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|