mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Add distribution Check
This commit is contained in:
parent
4657959790
commit
f45eb84d6b
1 changed files with 9 additions and 0 deletions
|
@ -67,6 +67,14 @@ function versionCheck {
|
|||
echo >> $DEBUG_LOG
|
||||
}
|
||||
|
||||
function distroCheck {
|
||||
echo "#######################################" >> $DEBUG_LOG
|
||||
echo "######## Distribution Section #########" >> $DEBUG_LOG
|
||||
echo "#######################################" >> $DEBUG_LOG
|
||||
|
||||
TMP=$(cat /etc/lsb-release/ || echo "Failed to find lsb")
|
||||
echo "Distribution Version: $TMP" >> $DEBUG_LOG
|
||||
|
||||
function compareWhitelist {
|
||||
if [ ! -f "$WHITELISTMATCHES" ]; then
|
||||
$SUDO touch $WHITELISTMATCHES
|
||||
|
@ -195,6 +203,7 @@ echo "$GATEWAY_CHECK" >> $DEBUG_LOG
|
|||
echo >> $DEBUG_LOG
|
||||
|
||||
versionCheck
|
||||
distroCheck
|
||||
compareWhitelist
|
||||
compareBlacklist
|
||||
testNslookup
|
||||
|
|
Loading…
Reference in a new issue