--- ./config/functions 2009-07-22 14:49:19.427871007 +0100 +++ ./config/functions 2009-07-22 14:49:37.167870966 +0100 @@ -10,6 +10,7 @@ . /etc/default/$name elif [ -f $CTDB_BASE/sysconfig/$name ]; then . $CTDB_BASE/sysconfig/$name + elif [ -f $CTDB_BASE/config.d/$name fi } @@ -21,6 +22,8 @@ if [ -x /sbin/startproc ]; then CTDB_INIT_STYLE="suse" + elif [ -x /bin/rc-status ]; then + CTDB_INIT_STYLE="gentoo" elif [ -x /sbin/start-stop-daemon ]; then CTDB_INIT_STYLE="ubuntu" else @@ -400,6 +403,9 @@ [ -x /etc/init.d/nfslock ] && { PLATFORM="rhel" } + [ -x etc/init.d/nfs ] && { + PLATFORM="gentoo" + } case $PLATFORM in sles) @@ -424,6 +430,16 @@ ;; esac ;; + gentoo) + case $1 in + start) + service nfs start + ;; + stop) + service nfs stop > /dev/null 2>&1 + ;; + esac + ;; *) echo "Unknown platform. NFS is not supported with ctdb" exit 1 @@ -442,6 +458,9 @@ [ -x /etc/init.d/nfslock ] && { PLATFORM="rhel" } + [ -x etc/init.d/nfs ] && { + PLATFORM="gentoo" + } case $PLATFORM in sles) @@ -466,6 +485,18 @@ ;; esac ;; + gentoo) + # for gentoo there is no service for lockmanager + # so we instead just shutdown/restart nfs + case $1 in + start) + service nfs start + ;; + stop) + service nfs stop > /dev/null 2>&1 + ;; + esac + ;; *) echo "Unknown platform. NFS locking is not supported with ctdb" exit 1