Sha256: fde8bbb9ff6a8367ea464dd5e7b0e2c1a5511e811fd830e81386e216180e7a56
Contents?: true
Size: 548 Bytes
Versions: 41
Compression:
Stored size: 548 Bytes
Contents
require_relative "../../omnibus" module VagrantPlugins module Chef module Cap module Debian module ChefInstall def self.chef_install(machine, project, version, channel, omnibus_url, 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, omnibus_url, options) machine.communicate.sudo(command) end end end end end end
Version data entries
41 entries across 37 versions & 5 rubygems