diff --git a/include/functions b/include/functions index f5b67fba..140e7d9d 100644 --- a/include/functions +++ b/include/functions @@ -254,6 +254,7 @@ ################################################################################ # Name : CheckUpdates() # Description : Determine if there is an update available + # # Returns : # Usage : CheckUpdates # Use PROGRAM_LV (latest version) and compare it with actual version (PROGRAM_AC) @@ -288,8 +289,9 @@ ################################################################################ # Name : CleanUp() - # Description : Cleanup service - # Returns : + # Description : Delete PID and temporary files, stop execution (exit code 1) + # + # Usage : this function is triggered by a manual break by user ################################################################################ CleanUp() { @@ -304,7 +306,8 @@ ################################################################################ # Name : ContainsString() # Description : Search a specific string (or regular expression) in another - # Returns : (0 - True, 1 - False) + # + # Returns : True (0) or False (1) # Usage : if ContainsString "needle" "there is a needle in the haystack"; echo "Found"; else "Not found"; fi ################################################################################ @@ -319,11 +322,9 @@ ################################################################################ # Name : CountTests() - # Description : Count the number of tests performed + # Description : Counter for the number of tests performed # - # Input : - # Returns : - # Usage : CountTests + # Usage : Call CountTests to increase number by 1 ################################################################################ CountTests() { @@ -335,7 +336,6 @@ # Name : CreateTempFile() # Description : Creates a temporary file # - # Input : # Returns : TEMP_FILE (variable) # Usage : CreateTempFile # if [ ! "${TEMP_FILE}" = "" ]; then @@ -367,7 +367,7 @@ # Name : DirectoryExists() # Description : Check if a directory exists # - # Returns : 0 (directory exists), 1 (directory does not exist) + # Returns : True (0) or False (1) # Usage : if DirectoryExists; then echo "it exists"; else echo "It does not exist"; fi ################################################################################