Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
(maint) correct seach-replace from module rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tkishel committed Jun 25, 2018
1 parent 2dcb2cb commit 5d3a721
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/run_puppet_device.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def read_device_certificate_fingerprints(cert_name)

# Run 'puppet device' for each device, or just the target device.

def run_device_manager(devices, noop, timeout)
def run_puppet_device(devices, noop, timeout)
os = Facter.value(:os) || {}
osfamily = os['family']
if osfamily == 'windows'
Expand Down Expand Up @@ -179,6 +179,6 @@ def return_results(params, results)
if devices.count.zero?
return_configuration_error(params)
else
results = run_device_manager(devices, noop, timeout)
results = run_puppet_device(devices, noop, timeout)
return_results(params, results)
end

0 comments on commit 5d3a721

Please sign in to comment.