trabajo-afectivo/lib/tasks/zammad/ci/service/scheduler/stop.rake

31 lines
640 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2018-10-01 17:41:17 +00:00
namespace :zammad do
namespace :ci do
namespace :service do
namespace :scheduler do
desc 'Stops the scheduler'
task :stop do # rubocop:disable Rails/RakeEnvironment
2018-10-01 17:41:17 +00:00
command = [
'bundle',
'exec',
'script/scheduler.rb',
'stop',
]
2019-06-28 11:38:49 +00:00
_stdout, stderr, status = Open3.capture3(*command)
2018-10-01 17:41:17 +00:00
next if status.success?
abort("Error while stopping scheduler - error status #{status.exitstatus}: #{stderr}")
end
end
end
end
end