Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restart rpc group as asked by in man pages #1044

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions jobs/nfsv3driver/monit
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,20 @@ check process statd matching rpc.statd
start program "/var/vcap/jobs/nfsv3driver/bin/statd_ctl start"
stop program "/var/vcap/jobs/nfsv3driver/bin/statd_ctl stop"
group vcap
group rpc
if failed
host 127.0.0.1
port <%= p("nfsv3driver.statd_port") %>
for 3 cycles
then restart
then exec "/var/vcap/bosh/bin/monit -g rpc restart"
check process rpcbind matching rpcbind
start program "/var/vcap/jobs/nfsv3driver/bin/rpcbind_ctl start"
stop program "/var/vcap/jobs/nfsv3driver/bin/rpcbind_ctl stop"
group vcap
group rpc
if failed
host 127.0.0.1
port 111
for 3 cycles
then restart
then exec "/var/vcap/bosh/bin/monit -g rpc restart"
<% end %>