class RuboCop::Cop::Chef::Modernize::ExecuteScExe

Chef Infra Client 14.0 and later includes :create, :delete, and :configure actions with the full idempotency of the windows_service resource. See the windows_service documentation at docs.chef.io/resources/windows_service for additional details on creating services with the windows_service resource.

@example

#### incorrect
execute "Delete chef-client service" do
  command "sc.exe delete chef-client"
  action :run
end

#### correct
windows_service 'chef-client' do
  action :delete
end

Constants

MSG
RESTRICT_ON_SEND

Public Instance Methods

on_block(node) click to toggle source

block execute resources

# File lib/rubocop/cop/chef/modernize/execute_sc_exe.rb, line 56
def on_block(node)
  match_property_in_resource?(:execute, 'command', node) do |code_property|
    property_data = method_arg_ast_to_string(code_property)
    return unless property_data && property_data.match?(/^sc.exe/i)
    add_offense(node, severity: :refactor)
  end
end
on_send(node) click to toggle source

non block execute resources

# File lib/rubocop/cop/chef/modernize/execute_sc_exe.rb, line 47
def on_send(node)
  # use a regex on source instead of .value in case there's string interpolation which adds a complex dstr type
  # with a nested string and a begin. Source allows us to avoid a lot of defensive programming here
  return unless node&.arguments.first&.source&.match?(/^("|')sc.exe/)

  add_offense(node, severity: :refactor)
end