From a9e3b6353892b7ffbe37740d8677274dfb70d62b Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Sat, 17 Dec 2016 22:48:57 +1100 Subject: [PATCH] ctdb-scripts: Drop unnecessary function ctdb_check_tcp_init() The flag this sets is no longer used by ctdb_check_tcp_ports() Signed-off-by: Martin Schwenke Reviewed-by: Amitay Isaacs --- ctdb/config/functions | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/ctdb/config/functions b/ctdb/config/functions index b64443998ed..d3866531de9 100755 --- a/ctdb/config/functions +++ b/ctdb/config/functions @@ -358,24 +358,6 @@ ctdb_check_directories() # usage: ctdb_check_tcp_ports ###################################################### -# This flag file is created when a service is initially started. It -# is deleted the first time TCP port checks for that service succeed. -# Until then ctdb_check_tcp_ports() prints a more subtle "error" -# message if a port check fails. -_ctdb_check_tcp_common () -{ - assert_service_name - _d="${CTDB_SCRIPT_VARDIR}/failcount" - _ctdb_service_started_file="${_d}/${service_name}.started" -} - -ctdb_check_tcp_init () -{ - _ctdb_check_tcp_common - mkdir -p "${_ctdb_service_started_file%/*}" # dirname - touch "$_ctdb_service_started_file" -} - # Check whether something is listening on all of the given TCP ports # using the "ctdb checktcpport" command. ctdb_check_tcp_ports() @@ -896,7 +878,6 @@ ctdb_service_start () # Intentionally have this use $service_name as default # shellcheck disable=SC2119 ctdb_counter_init - ctdb_check_tcp_init } ctdb_service_stop () -- 2.47.2