Skip to content

Instantly share code, notes, and snippets.

@sdieunidou
Last active October 5, 2015 09:26
Show Gist options
  • Save sdieunidou/090bd4cd5ea63584bd3a to your computer and use it in GitHub Desktop.
Save sdieunidou/090bd4cd5ea63584bd3a to your computer and use it in GitHub Desktop.
capistrano3_php5-fpm_reload

Task PHP5-reload for Capistrano3

tasks/php5.cap

namespace :php5 do
  desc 'Reload PHP5-FPM'
  task :reload do
      on release_roles :app do
        execute :sudo, "/usr/sbin/service php5-fpm", "reload"
      end
  end
end

deploy.rb

after 'deploy:updated', 'php5:reload'

/etc/sudoers

myuser ALL=(ALL) NOPASSWD: /usr/local/bin/bundle, /usr/sbin/service php5-fpm reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment