ctdb-scripts: Drop unnecessary function ctdb_check_tcp_init()
authorMartin Schwenke <martin@meltin.net>
Sat, 17 Dec 2016 11:48:57 +0000 (22:48 +1100)
committerMartin Schwenke <martins@samba.org>
Mon, 16 Jan 2017 10:57:08 +0000 (11:57 +0100)
The flag this sets is no longer used by ctdb_check_tcp_ports()

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
ctdb/config/functions

index b64443998eda1eec2fc7e2fa9c1b1b6ba2e59aae..d3866531de9add235ad719a812faba89473998ed 100755 (executable)
@@ -358,24 +358,6 @@ ctdb_check_directories()
 # usage: ctdb_check_tcp_ports <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 ()