add local config option

This commit is contained in:
Matthew Saunders Brown 2023-09-11 15:38:41 -07:00
parent 18e78a444a
commit 8bf288e2c7

View File

@ -10,13 +10,21 @@ if [ "$USER" != "root" ]; then
exec sudo $0
fi
# create empty virtualhostExclusionArray array (any domains added to this array will be skipped)
declare -a virtualhostExclusionArray
# optionally add virtualhosts to virtualhostExclusionArray to have them skipped
# create virtualhostArray
# create virtualhostArray listing all virtualhost on the server
cd /srv/www
virtualhostArray=(`ls -1|grep -v ^html$`)
# check for local config, which can be used to override either of the above arrays
if [[ -f /usr/local/etc/wp-cron.conf ]]; then
source /usr/local/etc/wp-cron.conf
# conf file could contain either one or both arrays, configured like this:
#virtualhostArray=("example.com" "example.net")
#virtualhostExclusionArray=("example.org")
fi
for VHOST in "${virtualhostArray[@]}"
do
# check if VHOST has been added to exclustion array