Move parse utility to be near other parsing functions.

This commit is contained in:
Dan Schaper 2016-10-28 03:53:53 -07:00
parent e3c7a1f31f
commit 42bff1ce1b
1 changed files with 15 additions and 15 deletions

View File

@ -88,6 +88,20 @@ block_parse() {
log_write "${1}" log_write "${1}"
} }
lsof_parse() {
local user
local process
local match
user=$(echo ${1} | cut -f 3 -d ' ' | cut -c 2-)
process=$(echo ${1} | cut -f 2 -d ' ' | cut -c 2-)
if [[ ${2} -eq ${process} ]]; then
match="as required."
else
match="incorrectly."
fi
log_echo -l "by ${user} for ${process} ${match}"
}
version_check() { version_check() {
header_write "Installed Package Versions" header_write "Installed Package Versions"
echo "::: Detecting Pi-hole installed versions." echo "::: Detecting Pi-hole installed versions."
@ -209,21 +223,7 @@ hostnameCheck() {
log_write "No hosts file found!" log_write "No hosts file found!"
printf ":::\tNo hosts file found!\n" printf ":::\tNo hosts file found!\n"
fi fi
} echo ":::"
lsof_parse() {
local user
local process
local match
user=$(echo ${1} | cut -f 3 -d ' ' | cut -c 2-)
process=$(echo ${1} | cut -f 2 -d ' ' | cut -c 2-)
if [[ ${2} -eq ${process} ]]; then
match="as required."
else
match="incorrectly."
fi
log_echo -l "by ${user} for ${process} ${match}"
} }