Thanks Florian, source pulled and ready to rock!
I can start off the comments by providing some of my own...
1. I need to tighten up the regular expressions in some places, for example:
backup_rmtab ()
{
grep ${OCF_RESKEY_dir} /var/lib/nfs/rmtab > ${OCF_RESKEY_dir}/.rmtab
}
should probably be:
backup_rmtab ()
{
grep ^${OCF_RESKEY_dir}\s+ /var/lib/nfs/rmtab > ${OCF_RESKEY_dir}/.rmtab
}
to avoid matching sub-trees of other exports.
2. I need some input on sm-notify/rpc.statd for sending reboot
notifications for client lock renewal, I really don't know much about
this but what I have read. And like I said in my original post, my
application does not use locking, so I really don't know how to
create/release locks in the manner I need to for testing this.
I will try to post a patch tomorrow for item 1. above.
_______________________________________________________
Linux-HA-Dev: [email protected]
http://lists.linux-ha.org/mailman/listinfo/linux-ha-dev
Home Page: http://linux-ha.org/