1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/lib/capistrano/tasks/puma.rake

14 lines
316 B
Ruby
Raw Normal View History

2018-12-08 23:24:08 -05:00
# frozen_string_literal: true
namespace :puma do
desc 'Stop Puma web server'
task :stop do
on roles(:web) do
within release_path do
statefile = File.join shared_path, 'tmp', 'pids', 'puma.state'
execute :bundle, :exec, :pumactl, '--state', statefile, :stop
end
end
end
end