SSHKit::Sudo
SSHKit extension, for sudo operation with password input.
Installation
Add this line to your application's Gemfile:
gem 'sshkit-sudo'
And then execute:
$ bundle
If you're using Capistrano, add the following to your Capfile:
require 'sshkit/sudo'
Usage
This gem adds sudo command to SSHKit backends.
To execute a command with sudo, call sudo instead of execute.
# Executing a command with sudo in Capistrano task
desc 'hello'
task :hello do
on roles(:all) do
sudo :cp, '~/something', '/something'
end
end
Contributing
- Fork it ( https://github.com/[my-github-username]/sshkit-sudo/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request