Class: Chef::Provider::Script

Inherits:
Execute show all
Extended by:
Forwardable
Defined in:
lib/chef/provider/script.rb

Direct Known Subclasses

WindowsScript

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary collapse

Attributes inherited from Chef::Provider

#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods inherited from Execute

#define_resource_requirements, #timeout, #whyrun_supported?

Methods inherited from Chef::Provider

#action_nothing, #check_resource_semantics!, #cleanup_after_converge, #converge_by, #converge_if_changed, #define_resource_requirements, #events, include_resource_dsl, include_resource_dsl_module, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, use_inline_resources, #whyrun_mode?, #whyrun_supported?

Methods included from Mixin::Provides

#provided_as, #provides, #provides?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from DeprecatedLWRPClass

#const_missing, #deprecated_constants, #register_deprecated_lwrp_class

Methods included from Mixin::LazyModuleInclude

#descendants, #include, #included

Methods included from Mixin::NotifyingBlock

#notifying_block, #subcontext_block

Methods included from DSL::DeclareResource

#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #with_run_context

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!

Methods included from Mixin::PowershellOut

#powershell_out, #powershell_out!

Methods included from Mixin::WindowsArchitectureHelper

#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory

Methods included from DSL::PlatformIntrospection

#docker?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family

Constructor Details

#initialize(new_resource, run_context) ⇒ Script

Returns a new instance of Script.



40
41
42
43
# File 'lib/chef/provider/script.rb', line 40

def initialize(new_resource, run_context)
  super
  self.code = new_resource.code
end

Instance Attribute Details

#codeObject

Returns the value of attribute code.



38
39
40
# File 'lib/chef/provider/script.rb', line 38

def code
  @code
end

Instance Method Details

#action_runObject



57
58
59
60
61
62
63
64
65
66
# File 'lib/chef/provider/script.rb', line 57

def action_run
  script_file.puts(code)
  script_file.close

  set_owner_and_group

  super

  unlink_script_file
end

#commandObject



45
46
47
# File 'lib/chef/provider/script.rb', line 45

def command
  "\"#{interpreter}\" #{flags} \"#{script_file.path}\""
end

#load_current_resourceObject



49
50
51
52
53
54
55
# File 'lib/chef/provider/script.rb', line 49

def load_current_resource
  super
  # @todo Chef-13: change this to an exception
  if code.nil?
    Chef::Log.warn "#{@new_resource}: No code attribute was given, resource does nothing, this behavior is deprecated and will be removed in Chef-13"
  end
end

#script_fileObject



75
76
77
# File 'lib/chef/provider/script.rb', line 75

def script_file
  @script_file ||= Tempfile.open("chef-script")
end

#set_owner_and_groupObject



68
69
70
71
72
73
# File 'lib/chef/provider/script.rb', line 68

def set_owner_and_group
  # FileUtils itself implements a no-op if +user+ or +group+ are nil
  # You can prove this by running FileUtils.chown(nil,nil,'/tmp/file')
  # as an unprivileged user.
  FileUtils.chown(new_resource.user, new_resource.group, script_file.path)
end


79
80
81
# File 'lib/chef/provider/script.rb', line 79

def unlink_script_file
  script_file && script_file.close!
end