diff options
-rw-r--r-- | ctdb/config/ctdb.sysconfig | 4 | ||||
-rwxr-xr-x | ctdb/config/functions | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ctdb/config/ctdb.sysconfig b/ctdb/config/ctdb.sysconfig index 5115094673..163a0dd6ab 100644 --- a/ctdb/config/ctdb.sysconfig +++ b/ctdb/config/ctdb.sysconfig @@ -295,6 +295,10 @@ CTDB_DEBUGLEVEL=ERR # above 90% # CTDB_CHECK_FS_USE="/:90 /var:90" +# Should CTDB automatically start and stop services when it is told to +# newly manage or no longer manage them? +CTDB_SERVICE_AUTOSTARTSTOP=yes + # # # set any default tuning options for ctdb diff --git a/ctdb/config/functions b/ctdb/config/functions index f65690359b..f7ed58a26d 100755 --- a/ctdb/config/functions +++ b/ctdb/config/functions @@ -1072,6 +1072,9 @@ is_ctdb_managed_service () ctdb_start_stop_service () { + # Do nothing unless configured to... + [ "$CTDB_SERVICE_AUTOSTARTSTOP" = "yes" ] || return 0 + _service_name="${1:-${service_name}}" [ "$event_name" = "monitor" ] || return 0 |