class ImageBuilder::Provisioners::Chef::Solo

Generic class doc comment

Attributes

data_bags_path[RW]
remote_cookbook_paths[RW]
roles_path[RW]

Public Class Methods

new() click to toggle source
# File lib/image_builder/provisioners/chef_solo.rb, line 14
def initialize
  super
  @type = 'chef-solo'
end

Public Instance Methods

packer_hash() click to toggle source
# File lib/image_builder/provisioners/chef_solo.rb, line 19
def packer_hash
  hash = super

  attr_to_hash(hash, :data_bags_path)
  attr_to_hash(hash, :remote_cookbook_paths)
  attr_to_hash(hash, :roles_path)
  attr_to_hash(hash, :cookbook_paths)
  attr_to_hash(hash, :encrypted_data_bag_secret_path)

  hash
end