mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-03-02 05:10:25 -05:00
15 lines
335 B
Ruby
15 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
|