mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 15:13:42 +00:00
Improved installer and updated scripts
This commit is contained in:
parent
2a34daafb9
commit
9e8ffc48da
7 changed files with 40 additions and 60 deletions
|
@ -10,8 +10,6 @@
|
|||
# the Free Software Foundation, either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
source pihole.var
|
||||
|
||||
RootCheck(){
|
||||
echo ":::"
|
||||
if [[ $EUID -eq 0 ]];then
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
# the Free Software Foundation, either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
source /etc/pihole/Functions/pihole.var
|
||||
source /etc/pihole/Functions/pihole.funcs
|
||||
|
||||
if [[ $# = 0 ]]; then
|
||||
|
|
|
@ -10,19 +10,19 @@
|
|||
# the Free Software Foundation, either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
WEB_INTERFACE_GIT_URL="https://github.com/pi-hole/AdminLTE.git"
|
||||
WEB_INTERFACE_DIR="/var/www/html/admin"
|
||||
source /etc/pihole/Functions/pihole.var
|
||||
source /etc/pihole/Functions/pihole.funcs
|
||||
source /etc/pihole/Functions/git.funcs
|
||||
|
||||
main() {
|
||||
prerequisites
|
||||
if ! is_repo; then
|
||||
make_repo
|
||||
if ! is_repo $webInterfaceDir; then
|
||||
make_repo $webInterfaceDir $webInterfaceGitUrl
|
||||
fi
|
||||
update_repo
|
||||
update_repo $webInterfaceDir
|
||||
}
|
||||
|
||||
prerequisites() {
|
||||
|
||||
# must be root to update
|
||||
if [[ $EUID -ne 0 ]]; then
|
||||
sudo bash "$0" "$@"
|
||||
|
@ -31,8 +31,8 @@ prerequisites() {
|
|||
|
||||
# web interface must already exist. this is a (lazy)
|
||||
# check to make sure pihole is actually installed.
|
||||
if [ ! -d "$WEB_INTERFACE_DIR" ]; then
|
||||
echo "$WEB_INTERFACE_DIR not found. Exiting."
|
||||
if [ ! -d "$webInterfaceDir" ]; then
|
||||
echo "$webInterfaceDir not found. Exiting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -41,29 +41,4 @@ prerequisites() {
|
|||
fi
|
||||
}
|
||||
|
||||
is_repo() {
|
||||
# if the web interface directory does not have a .git folder
|
||||
# it means its using the master.zip archive from the install
|
||||
# script.
|
||||
if [ ! -d "$WEB_INTERFACE_DIR/.git" ]; then
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
# removes the web interface installed from the master.zip archive and
|
||||
# replaces it with the current master branch from github
|
||||
make_repo() {
|
||||
# remove the non-repod interface and clone the interface
|
||||
rm -rf $WEB_INTERFACE_DIR
|
||||
git clone "$WEB_INTERFACE_GIT_URL" "$WEB_INTERFACE_DIR"
|
||||
}
|
||||
|
||||
# pulls the latest master branch from github
|
||||
update_repo() {
|
||||
# pull the latest commits
|
||||
cd "$WEB_INTERFACE_DIR"
|
||||
git pull
|
||||
}
|
||||
|
||||
main
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
# the Free Software Foundation, either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
source /etc/pihole/Functions/pihole.var
|
||||
source /etc/pihole/Functions/pihole.funcs
|
||||
|
||||
if [[ $# = 0 ]]; then
|
||||
|
|
|
@ -11,14 +11,19 @@
|
|||
# (at your option) any later version.
|
||||
|
||||
# Get files, as they might have changed
|
||||
curl -o $HOME/piholeInstall/pihole.var https://raw.githubusercontent.com/pi-hole/pi-hole/master/advanced/Functions/pihole.var
|
||||
curl -o $HOME/piholeInstall/pihole.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/master/advanced/Functions/pihole.funcs
|
||||
curl -o $HOME/piholeInstall/install.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/master/advanced/Functions/install.funcs
|
||||
curl -o $HOME/piholeInstall/git.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/master/advanced/Functions/git.funcs
|
||||
if [ ! -d /tmp/piholeInstall ]; then
|
||||
mkdir -p /tmp/piholeInstall
|
||||
fi
|
||||
|
||||
source $HOME/piholeInstall/pihole.funcs
|
||||
source $HOME/piholeInstall/install.funcs
|
||||
source $HOME/piholeInstall/git.funcs
|
||||
curl -o /tmp/piholeInstall/pihole.var https://raw.githubusercontent.com/pi-hole/pi-hole/ExportVariables/advanced/Functions/pihole.var
|
||||
#curl -o /tmp/piholeInstall/pihole.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/ExportVariables/advanced/Functions/pihole.funcs
|
||||
curl -o /tmp/piholeInstall/install.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/ExportVariables/advanced/Functions/install.funcs
|
||||
curl -o /tmp/piholeInstall/git.funcs https://raw.githubusercontent.com/pi-hole/pi-hole/ExportVariables/advanced/Functions/git.funcs
|
||||
|
||||
source /tmp/piholeInstall/pihole.var
|
||||
source /tmp/piholeInstall/pihole.funcs
|
||||
source /tmp/piholeInstall/install.funcs
|
||||
source /tmp/piholeInstall/git.funcs
|
||||
|
||||
###########Begin Script
|
||||
RootCheck
|
||||
|
|
Loading…
Reference in a new issue