diff options
author | Ronnie Sahlberg <sahlberg@ronnie> | 2007-07-06 11:51:34 +1000 |
---|---|---|
committer | Ronnie Sahlberg <sahlberg@ronnie> | 2007-07-06 11:51:34 +1000 |
commit | 34e2c7302003d63cbb33a45d08d5323a1a03037b (patch) | |
tree | 3aa321b574409a9bf8126d737d9a33d508069638 | |
parent | 72265dd5bdf91577fa4340713438be760263c664 (diff) | |
download | samba-34e2c7302003d63cbb33a45d08d5323a1a03037b.tar.gz samba-34e2c7302003d63cbb33a45d08d5323a1a03037b.tar.xz samba-34e2c7302003d63cbb33a45d08d5323a1a03037b.zip |
use 'ctdb tickle' instead of sendip to tickle nfs clients.
(This used to be ctdb commit 2204cc77ce6b1dd6bb0118f57cfa05f0c8826c3e)
-rwxr-xr-x | ctdb/config/events.d/61.nfstickle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/config/events.d/61.nfstickle b/ctdb/config/events.d/61.nfstickle index ff953ea5c9..240bd3f3b0 100755 --- a/ctdb/config/events.d/61.nfstickle +++ b/ctdb/config/events.d/61.nfstickle @@ -34,7 +34,7 @@ case $cmd in # send three, in case of lost packets echo "`date` Sending NFS tickle ack for $ip to $dip:$dport" for i in `seq 1 3`; do - sendip -p ipv4 -p tcp -is $ip -ts 2049 -td $dport -tfa 1 $dip -tfs 0 -tw 1234 -tfp 0 -tn 0 + ctdb tickle $dip:$dport $ip:2049 done done done |