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

update.sh « Scripts « advanced - github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2220d579dcb4525ba8caa3dd55820627dc97409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env bash
# Pi-hole: A black hole for Internet advertisements
# (c) 2015, 2016 by Jacob Salmela
# Network-wide ad blocking via your Raspberry Pi
# http://pi-hole.net
# Whitelists domains
#
# Pi-hole is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.

# Variables

webInterfaceGitUrl="https://github.com/pi-hole/AdminLTE.git"
webInterfaceDir="/var/www/html/admin"
piholeGitUrl="https://github.com/pi-hole/pi-hole.git"
piholeFilesDir="/etc/.pihole"

spinner() {
	local pid=${1}
	local delay=0.50
	local spinstr='/-\|'
	while [ "$(ps a | awk '{print $1}' | grep "${pid}")" ]; do
		local temp=${spinstr#?}
		printf " [%c]  " "${spinstr}"
		local spinstr=${temp}${spinstr%"$temp"}
		sleep ${delay}
		printf "\b\b\b\b\b\b"
	done
	printf "    \b\b\b\b"
}

getGitFiles() {
	# Setup git repos for directory and repository passed
	# as arguments 1 and 2
	echo ":::"
	echo "::: Checking for existing repository..."
	if is_repo "${1}"; then
		update_repo "${1}"
	else
		make_repo "${1}" "${2}"
	fi
}

is_repo() {
	# Use git to check if directory is currently under VCS
	echo -n ":::    Checking $1 is a repo..."
	cd "${1}" &> /dev/null || return 1
	git status &> /dev/null && echo " OK!"; return 0 || echo " not found!"; return 1
}

make_repo() {
	# Remove the non-repod interface and clone the interface
	echo -n ":::    Cloning $2 into $1..."
	rm -rf "${1}"
	git clone -q --depth 1 "${2}" "${1}" > /dev/null & spinner $!
	echo " done!"
}

update_repo() {
# Pull the latest commits
	echo -n ":::     Updating repo in $1..."
	cd "${1}" || exit 1
	git stash -q > /dev/null & spinner $!
	git pull -q > /dev/null & spinner $!
	echo " done!"
}

if [ ! -d "/etc/.pihole" ]; then #This is unlikely
	echo "::: Critical Error: Pi-Hole repo missing from system!"
	echo "::: Please re-run install script from https://github.com/pi-hole/pi-hole"
	exit 1;
fi
if [ ! -d "/var/www/html/admin" ]; then #This is unlikely
	echo "::: Critical Error: Pi-Hole repo missing from system!"
	echo "::: Please re-run install script from https://github.com/pi-hole/pi-hole"
	exit 1;
fi

echo "::: Checking for updates..."
piholeVersion=$(pihole -v -p -c)
piholeVersionLatest=$(pihole -v -p -l)

webVersion=$(pihole -v -a -c)
webVersionLatest=$(pihole -v -a -l)

echo ":::"
echo "::: Pi-hole version is $piholeVersion (Latest version is $piholeVersionLatest)"
echo "::: Web Admin version is $webVersion (Latest version is $webVersionLatest)"
echo ":::"

# Logic
# If latest versions are blank - we've probably hit Github rate limit (stop running `pihole -up so often!):
#            Update anyway
# If Core up to date AND web up to date:
#            Do nothing
# If Core up to date AND web NOT up to date:
#            Pull web repo
# If Core NOT up to date AND web up to date:
#            pull pihole repo, run install --unattended -- reconfigure
# if Core NOT up to date AND web NOT up to date:
#            pull pihole repo run install --unattended



if [[ ${piholeVersion} == ${piholeVersionLatest} && ${webVersion} == ${webVersionLatest} ]]; then
	echo "::: Everything is up to date!"
	echo ""
	exit 0

elif [[ ${piholeVersion} == ${piholeVersionLatest} && ${webVersion} != ${webVersionLatest} ]]; then
	echo "::: Pi-hole Web Admin files out of date"
	getGitFiles ${webInterfaceDir} ${webInterfaceGitUrl}
	echo ":::"
	webVersion=$(pihole -v -a -c)
	echo "::: Web Admin version is now at ${webVersion}"
	echo "::: If you had made any changes in '/var/www/html/admin', they have been stashed using 'git stash'"
	echo ""
elif [[ ${piholeVersion} != ${piholeVersionLatest} && ${webVersion} == ${webVersionLatest} ]]; then
	echo "::: Pi-hole core files out of date"
	getGitFiles ${piholeFilesDir} ${piholeGitUrl}
	/etc/.pihole/automated\ install/basic-install.sh --reconfigure --unattended
	echo ":::"
	piholeVersion=$(pihole -v -p -c)
	echo "::: Pi-hole version is now at ${piholeVersion}"
	echo "::: If you had made any changes in '/etc/.pihole', they have been stashed using 'git stash'"
	echo ""
elif [[ ${piholeVersion} != ${piholeVersionLatest} && ${webVersion} != ${webVersionLatest} ]]; then
	echo "::: Updating Everything"
	getGitFiles ${piholeFilesDir} ${piholeGitUrl}
	/etc/.pihole/automated\ install/basic-install.sh --unattended
	webVersion=$(pihole -v -a -c)
	piholeVersion=$(pihole -v -p -c)
	echo ":::"
	echo "::: Pi-hole version is now at ${piholeVersion}"
	echo "::: If you had made any changes in '/etc/.pihole', they have been stashed using 'git stash'"
	echo ":::"
	echo "::: Pi-hole version is now at ${piholeVersion}"
	echo "::: If you had made any changes in '/etc/.pihole', they have been stashed using 'git stash'"
	echo ""
fi