From: Marcin Siodelski Date: Wed, 16 Dec 2015 17:40:23 +0000 (+0100) Subject: [4224] Addressed review comments. X-Git-Tag: trac4263_base~16^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a599d5c172ad50a67f95ab0d9f2d236bc6bbb06;p=thirdparty%2Fkea.git [4224] Addressed review comments. Minor updates to the commentary for get_pid function. --- diff --git a/src/lib/testutils/dhcp_test_lib.sh.in b/src/lib/testutils/dhcp_test_lib.sh.in index 44729aca83..5e25f09b3b 100644 --- a/src/lib/testutils/dhcp_test_lib.sh.in +++ b/src/lib/testutils/dhcp_test_lib.sh.in @@ -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 /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 ' 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: # ..pid. If the is not # specified a 'test_config' is used by default. #