fruit-bowl/environments/production/thirdparty/docker/tasks/service_rm.rb
2025-04-01 17:40:03 +00:00

28 lines
564 B
Ruby
Executable file

#!/opt/puppetlabs/puppet/bin/ruby
# frozen_string_literal: true
require 'json'
require 'open3'
require 'puppet'
def service_rm(service)
cmd_string = 'docker service rm'
cmd_string += " #{service}" unless service.nil?
stdout, stderr, status = Open3.capture3(cmd_string)
raise Puppet::Error, "stderr: '#{stderr}'" if status != 0
stdout.strip
end
params = JSON.parse($stdin.read)
service = params['service']
begin
result = service_rm(service)
puts result
exit 0
rescue Puppet::Error => e
puts(status: 'failure', error: e.message)
exit 1
end