1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

add possibility to provide site local modifications to the event system

through a /etc/ctdb/rc.local script that is sources by /etc/ctdb/functions

(This used to be ctdb commit a5b7dd97e3faf0c4f289240307d0e22a67cf2353)
This commit is contained in:
Ronnie Sahlberg 2008-04-10 06:50:12 +10:00
parent 416409d31b
commit b902e09350

View File

@ -323,3 +323,11 @@ startstop_nfslock() {
;;
esac
}
########################################################
# load a site local config file
########################################################
[ -x $CTDB_BASE/rc.local] && {
. $CTDB_BASE/rc.local
}