Sha256: 18f9f9adbfb95948334775787b85fba10472ed7bd2ebf15e4a27e61e472be5e9
Contents?: true
Size: 522 Bytes
Versions: 17
Compression:
Stored size: 522 Bytes
Contents
require_relative "../../omnibus" module VagrantPlugins module Chef module Cap module Debian module ChefInstall def self.chef_install(machine, project, version, channel, options = {}) machine.communicate.sudo("apt-get update -y -qq") machine.communicate.sudo("apt-get install -y -qq curl") command = Omnibus.sh_command(project, version, channel, options) machine.communicate.sudo(command) end end end end end end
Version data entries
17 entries across 17 versions & 3 rubygems