Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schaper <dschaper@users.noreply.github.com>2017-01-31 22:37:05 +0300
committerGitHub <noreply@github.com>2017-01-31 22:37:05 +0300
commit5333895a9fc4fa11e66d53c8669a7c3fe7ba8a2e (patch)
tree3710c3b2ced66cc6f15a1fa4b2afa60154cc616a
parent8cb4304c13c35d6183e60db7afcd82c01923558c (diff)
parentda0549199222451d1620bad0864b5852df35cd80 (diff)
Merge pull request #1201 from pi-hole/developmentv2.12.1
[RELEASE] Pi-hole Core 2.12.1
-rwxr-xr-xadvanced/Scripts/chronometer.sh2
-rwxr-xr-xadvanced/Scripts/list.sh2
-rwxr-xr-xadvanced/Scripts/update.sh10
-rw-r--r--advanced/logrotate1
-rwxr-xr-xautomated install/basic-install.sh2
-rwxr-xr-xgravity.sh17
6 files changed, 26 insertions, 8 deletions
diff --git a/advanced/Scripts/chronometer.sh b/advanced/Scripts/chronometer.sh
index 93b0cbb1..3dce9c3e 100755
--- a/advanced/Scripts/chronometer.sh
+++ b/advanced/Scripts/chronometer.sh
@@ -22,7 +22,7 @@ function GetJSONValue {
retVal=$(echo $1 | sed 's/\\\\\//\//g' | \
sed 's/[{}]//g' | \
awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}' | \
- sed 's/\"\:\"/\|/g' | \
+ sed 's/\"\:/\|/g' | \
sed 's/[\,]/ /g' | \
sed 's/\"//g' | \
grep -w $2)
diff --git a/advanced/Scripts/list.sh b/advanced/Scripts/list.sh
index c916e021..7cbe6beb 100755
--- a/advanced/Scripts/list.sh
+++ b/advanced/Scripts/list.sh
@@ -66,7 +66,7 @@ HandleOther(){
domain=$(sed -e "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/" <<< "$1")
#check validity of domain
- validDomain=$(echo "${domain}" | perl -lne 'print if /^(?!.*[^a-z0-9-\.].*)\b((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)*[a-z]{2,63}\b/')
+ validDomain=$(echo "${domain}" | perl -lne 'print if /(?!.*[^a-z0-9-\.].*)^((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9-]+\.)*[a-z]{2,63}/')
if [ -z "${validDomain}" ]; then
echo "::: $1 is not a valid argument or domain name"
else
diff --git a/advanced/Scripts/update.sh b/advanced/Scripts/update.sh
index df71e9a9..32fb712b 100755
--- a/advanced/Scripts/update.sh
+++ b/advanced/Scripts/update.sh
@@ -105,21 +105,21 @@ GitCheckUpdateAvail() {
# defaults to the current one.
REMOTE="$(git rev-parse @{upstream})"
- # Change back to original directory
- cd "${curdir}"
-
if [[ ${#LOCAL} == 0 ]]; then
- echo "::: Error: Local revision could not be optained, ask Pi-hole support."
+ echo "::: Error: Local revision could not be obtained, ask Pi-hole support."
echo "::: Additional debugging output:"
git status
exit
fi
if [[ ${#REMOTE} == 0 ]]; then
- echo "::: Error: Remote revision could not be optained, ask Pi-hole support."
+ echo "::: Error: Remote revision could not be obtained, ask Pi-hole support."
echo "::: Additional debugging output:"
git status
exit
fi
+
+ # Change back to original directory
+ cd "${curdir}"
if [[ "${LOCAL}" != "${REMOTE}" ]]; then
# Local branch is behind remote branch -> Update
diff --git a/advanced/logrotate b/advanced/logrotate
index e9be016d..570e7548 100644
--- a/advanced/logrotate
+++ b/advanced/logrotate
@@ -1,4 +1,5 @@
/var/log/pihole.log {
+ # su #
daily
copytruncate
rotate 5
diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh
index 9fed0bca..94f26be9 100755
--- a/automated install/basic-install.sh
+++ b/automated install/basic-install.sh
@@ -949,7 +949,7 @@ installLogrotate() {
# the local properties of the /var/log directory
logusergroup="$(stat -c '%U %G' /var/log)"
if [[ ! -z $logusergroup ]]; then
- echo "su ${logusergroup}" >> /etc/pihole/logrotate
+ sed -i "s/# su #/su ${logusergroup}/" /etc/pihole/logrotate
fi
echo " done!"
}
diff --git a/gravity.sh b/gravity.sh
index b1cd57a6..31bc6bd0 100755
--- a/gravity.sh
+++ b/gravity.sh
@@ -32,6 +32,7 @@ adListDefault=/etc/pihole/adlists.default
whitelistScript="pihole -w"
whitelistFile=/etc/pihole/whitelist.txt
blacklistFile=/etc/pihole/blacklist.txt
+readonly wildcardlist="/etc/dnsmasq.d/03-pihole-wildcard.conf"
#Source the setupVars from install script for the IP
setupVars=/etc/pihole/setupVars.conf
@@ -235,6 +236,21 @@ gravity_Blacklist() {
}
+gravity_Wildcard() {
+ # Return number of wildcards in output - don't actually handle wildcards
+ if [[ -f "${wildcardlist}" ]]; then
+ num=$(grep -c ^ "${wildcardlist}")
+ if [[ -n "${IPV4_ADDRESS}" && -n "${IPV6_ADDRESS}" ]];then
+ let num/=2
+ fi
+ plural=; [[ "$num" != "1" ]] && plural=s
+ echo "::: Wildcard blocked domain${plural}: $numBlacklisted"
+ else
+ echo "::: No wildcards used!"
+ fi
+
+}
+
gravity_Whitelist() {
#${piholeDir}/${eventHorizon})
echo ":::"
@@ -401,6 +417,7 @@ else
fi
gravity_Whitelist
gravity_Blacklist
+gravity_Wildcard
gravity_hostFormat
gravity_blackbody