]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[4224] Addressed review comments.
authorMarcin Siodelski <marcin@isc.org>
Wed, 16 Dec 2015 17:40:23 +0000 (18:40 +0100)
committerMarcin Siodelski <marcin@isc.org>
Wed, 16 Dec 2015 17:40:23 +0000 (18:40 +0100)
Minor updates to the commentary for get_pid function.

src/lib/testutils/dhcp_test_lib.sh.in

index 44729aca83662078e56936b1e9fbb0ea1772127e..5e25f09b3b8650e2d235fa6530d3b885f2aeb36c 100644 (file)
@@ -170,8 +170,8 @@ set_logger() {
     export KEA_LOGGER_DESTINATION=${LOG_FILE}
 }
 
-# PID file path is by default var/kea, but can be overriden by the
-# environmental variable.
+# PID file path is by default <kea-install-dir>/var/kea, but can be
+# overriden by the environmental variable.
 PID_FILE_PATH=@localstatedir@/@PACKAGE@/
 if [ ! -z ${KEA_PIDFILE_DIR} ]; then
     PID_FILE_PATH="${KEA_PIDFILE_DIR}"
@@ -182,7 +182,7 @@ fi
 # This function uses PID file to obtain the PID and then calls
 # 'kill -0 <pid>' to check if the process is alive.
 # The PID files are expected to be located in the ${PID_FILE_PATH},
-# and their names are should follow the follwing pattern:
+# and their names should match the follwing pattern:
 # <cfg_file_name>.<proc_name>.pid. If the <cfg_file_name> is not
 # specified a 'test_config' is used by default.
 #