vagrant/plugins/provisioners/chef/cap/suse/chef_install.rb

28 lines
703 B
Ruby

require_relative "../../omnibus"
module VagrantPlugins
module Chef
module Cap
module Suse
module ChefInstall
def self.chef_install(machine, project, version, channel, options = {})
unless curl?(machine)
machine.communicate.sudo("zypper -n -q update")
machine.communicate.sudo("zypper -n -q install curl")
end
command = Omnibus.sh_command(project, version, channel, options)
machine.communicate.sudo(command)
end
protected
def self.curl?(machine)
machine.communicate.test("/usr/bin/which -s curl")
end
end
end
end
end
end