Sha256: d8f2ca1495ed9e8419af2e6b2d5f9ade414852a4273c29fc1775e8b35241458f
Contents?: true
Size: 763 Bytes
Versions: 58
Compression:
Stored size: 763 Bytes
Contents
module VagrantPlugins module CFEngine module Cap module Debian module CFEngineInstall def self.cfengine_install(machine, config) machine.communicate.tap do |comm| comm.sudo("mkdir -p #{File.dirname(config.deb_repo_file)} && /bin/echo #{config.deb_repo_line} > #{config.deb_repo_file}") comm.sudo("GPGFILE=`tempfile`; wget -O $GPGFILE #{config.repo_gpg_key_url} && apt-key add $GPGFILE; rm -f $GPGFILE") comm.sudo("apt-get install -y --force-yes apt-transport-https"); comm.sudo("apt-get update") comm.sudo("apt-get install -y #{config.package_name}") end end end end end end end
Version data entries
58 entries across 54 versions & 6 rubygems