I am using monit at production server. I have installed rbenv and bundler in a user which is in sudo group. Monit is unable to start unicorn server because it uses sudo by default and bundle command is not present in sudo.
`$ /etc/init.d/unicorn_demo_app start`
is working fine. When I say
`$ sudo /etc/init.d/unicorn_demo_app start`
Giving error as su: bundle command not found.
So monit using sudo to start the unicorn server. How can I make Monit NOT TO use sudo
.?