Replace removed Puma systemd tasks by supported equivalents

capistrano3-puma 6.0.0 removed the `puma:systemd:config` and
`puma:systemd:enable` tasks. This commit updates the deploy script to use
the new `puma:install` and `puma:enable` tasks instead.
This commit is contained in:
taitus
2025-05-13 16:02:16 +02:00
parent cd72bf42da
commit cd61228790

View File

@@ -170,6 +170,6 @@ task :setup_puma do
end
end
after "setup_puma", "puma:systemd:config"
after "setup_puma", "puma:systemd:enable"
after "setup_puma", "puma:install"
after "setup_puma", "puma:enable"
end