RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: carnival
Site: eddie.im
FYI: If you look in the source, Capistrano::CLI.ui just links to a Highline object. So you can do Capistrano::CLI.ui.ask("Enter something") instead of CLI.password_prompt :)
Capistrano::CLI.ui.ask("Enter something")
If you check cat /etc/sudoers you might find that the "admin" group is there. In that case just run groupadd admin and continue as usual.
cat /etc/sudoers
groupadd admin
FYI: If you look in the source, Capistrano::CLI.ui just links to a Highline object. So you can do
Capistrano::CLI.ui.ask("Enter something")
instead of CLI.password_prompt :)If you check
cat /etc/sudoers
you might find that the "admin" group is there. In that case just rungroupadd admin
and continue as usual.