Sha256: 7d0e1880c8354c4ac645302588bef09fba9cf88b7d401d5e181f93b5bb726f16
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
require 'kitchen/provisioner/chef_zero' module Kitchen module Provisioner class ChefGithub < Kitchen::Provisioner::ChefZero default_config :refname, "master" default_config :github_owner, "chef" default_config :github_repo, "chef" def prepare_command gem_bin = remote_path_join(config[:ruby_bindir], "gem"). tap { |path| path.concat(".bat") if windows_os? } appbundle_updater_bin = remote_path_join(config[:ruby_bindir], "appbundle-updater"). tap { |path| path.concat(".bat") if windows_os? } vars = [ shell_var("refname", config[:refname]), shell_var("github_owner", config[:github_owner]), shell_var("github_repo", config[:github_repo]), shell_var("gem", sudo(gem_bin)), shell_var("appbundle_updater", sudo(appbundle_updater_bin)), ].join("\n").concat("\n") my_shell_code_from_file(vars, "chef_base_updater") end private # need to override and use __FILE__ relative to this plugin def my_shell_code_from_file(vars, file) src_file = File.join( File.dirname(__FILE__), %w[.. .. .. support], file + (powershell_shell? ? ".ps1" : ".sh") ) wrap_shell_code([vars, "", IO.read(src_file)].join("\n")) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kitchen-appbundle-updater-0.1.0 | lib/kitchen/provisioner/chef_github.rb |