From f671eef3f089da4d061f1722d20321fbb758ad97 Mon Sep 17 00:00:00 2001 From: Promofaux Date: Fri, 8 Apr 2016 23:43:31 +0100 Subject: [PATCH] ground work on secondary update script --- advanced/Scripts/updatePiholeSecondary.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/advanced/Scripts/updatePiholeSecondary.sh b/advanced/Scripts/updatePiholeSecondary.sh index e69de29b..88870e77 100644 --- a/advanced/Scripts/updatePiholeSecondary.sh +++ b/advanced/Scripts/updatePiholeSecondary.sh @@ -0,0 +1,20 @@ +#!/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 +# Checks if Pi-hole needs updating and then +# +# 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. + +function updateDependencies(){ + newDependencies=() + echo "::: Installing any new dependencies..." + for i in "${newDependencies[@]}"; do + echo "checking for $i" + done + } +} \ No newline at end of file