From 6c6f36c726386c81a2e9b230425833b6f923aa95 Mon Sep 17 00:00:00 2001
From: Georg Gadinger <nilsding@nilsding.org>
Date: Wed, 11 Apr 2018 21:24:09 +0200
Subject: [PATCH] temporarily disable restart stuffs as it's broken as fuck

---
 lib/capistrano/tasks/restart.rake | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/capistrano/tasks/restart.rake b/lib/capistrano/tasks/restart.rake
index f2e28009..de18b8b1 100644
--- a/lib/capistrano/tasks/restart.rake
+++ b/lib/capistrano/tasks/restart.rake
@@ -1,6 +1,8 @@
 namespace :deploy do
   task :start do
     on roles(:all) do
+puts "------- skip start"
+next
       rvm_prefix = "#{fetch(:rvm1_auto_script_path)}/rvm-auto.sh #{fetch(:rvm1_ruby_version)}"
       execute :tmux, 'new-session',
               '-d',
@@ -13,6 +15,8 @@ namespace :deploy do
 
   task :stop do
     on roles(:all) do
+puts "------- skip stop"
+next
       execute :sh, '-c', '\'tmux list-panes -t retrospring -F "#{pane_pid}" | xargs kill\''
     end
   end
@@ -20,6 +24,8 @@ namespace :deploy do
   desc 'Restart the server'
   task :restart do
     on roles(:all) do
+puts "------- skip restart"
+next
       info 'Restarting application server'
       invoke('deploy:stop')