installer updates
This commit is contained in:
parent
0bdd62a7ae
commit
09e130e87b
|
@ -15,8 +15,8 @@ cp bash_completion.d/wp-cli /etc/bash_completion.d/
|
||||||
chmod 644 /etc/bash_completion.d/wp-cli
|
chmod 644 /etc/bash_completion.d/wp-cli
|
||||||
|
|
||||||
# install wp user scripts
|
# install wp user scripts
|
||||||
chmod 755 /usr/local/bin/wp-*
|
|
||||||
cp bin/wp-* /usr/local/bin
|
cp bin/wp-* /usr/local/bin
|
||||||
|
chmod 755 /usr/local/bin/wp-*
|
||||||
|
|
||||||
# install & enable wp systemd cron
|
# install & enable wp systemd cron
|
||||||
cp sbin/wp-cron.sh /usr/local/sbin/
|
cp sbin/wp-cron.sh /usr/local/sbin/
|
||||||
|
|
60
update.sh
60
update.sh
|
@ -3,6 +3,16 @@
|
||||||
# update repo
|
# update repo
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
|
# update wp-cli
|
||||||
|
if [ -f /usr/local/bin/wp ]; then
|
||||||
|
/usr/local/bin/wp cli update --yes --quiet --allow-root
|
||||||
|
else
|
||||||
|
# wp-cli not found, download & install
|
||||||
|
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
|
||||||
|
sudo mv wp-cli.phar /usr/local/bin/wp
|
||||||
|
chmod +x /usr/local/bin/wp
|
||||||
|
if
|
||||||
|
|
||||||
# update scripts in bin
|
# update scripts in bin
|
||||||
chmod 755 bin/*
|
chmod 755 bin/*
|
||||||
readarray -t bin_script_array < <(ls -1 bin/)
|
readarray -t bin_script_array < <(ls -1 bin/)
|
||||||
|
@ -20,28 +30,32 @@ for bin_script in "${bin_script_array[@]}"; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# check etc configs for diffs
|
# check bash completion config for update
|
||||||
readarray -t etc_configs_array < <(find etc/ -type f)
|
if ! diff -q bash_completion.d/wp-cli /etc/bash_completion.d/wp-cli ; then
|
||||||
for etc_config in "${etc_configs_array[@]}"; do
|
cp bash_completion.d/wp-cli /etc/bash_completion.d/wp-cli
|
||||||
if [ -f /$etc_config ]; then
|
chmod 644 /etc/bash_completion.d/wp-cli
|
||||||
if ! diff -q $etc_config /$etc_config ; then
|
echo "bash completion config updated"
|
||||||
echo To update run:
|
echo
|
||||||
echo diff $etc_config /$etc_config
|
fi
|
||||||
echo cp $etc_config /$etc_config
|
|
||||||
echo
|
# check wp-cron.sh for update
|
||||||
fi
|
if ! diff -q sbin/wp-cron.sh /usr/local/sbin/wp-cron.sh ; then
|
||||||
else
|
cp sbin/wp-cron.sh /usr/local/sbin/wp-cron.sh
|
||||||
echo "Adding new config file /$etc_config"
|
chmod 755 /etc/bash_completion.d/wp-cli
|
||||||
cp $etc_config /$etc_config
|
echo "sbin/wp-cron.sh updated"
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
done
|
|
||||||
|
# check systemd timer for update
|
||||||
# update libexec script
|
if ! diff -q systemd/wp-cron.service /usr/lib/systemd/system/wp-cron.service ; then
|
||||||
if ! diff -q libexec/vmail-quota-warning.sh /usr/libexec/vmail-quota-warning.sh ; then
|
cp systemd/wp-cron.service /usr/lib/systemd/system/wp-cron.service
|
||||||
cp libexec/vmail-quota-warning.sh /usr/libexec/vmail-quota-warning.sh
|
chmod 644 /usr/lib/systemd/system/wp-cron.service
|
||||||
chmod 750 /usr/libexec/vmail-quota-warning.sh
|
echo "systemd/wp-cron.service updated"
|
||||||
chown dovecot:mail /usr/libexec/vmail-quota-warning.sh
|
echo
|
||||||
echo "/usr/libexec/vmail-quota-warning.sh updated"
|
fi
|
||||||
|
if ! diff -q systemd/wp-cron.timer /usr/lib/systemd/system/wp-cron.timer ; then
|
||||||
|
cp systemd/wp-cron.timer /usr/lib/systemd/system/wp-cron.timer
|
||||||
|
chmod 644 /usr/lib/systemd/system/wp-cron.timer
|
||||||
|
echo "systemd/wp-cron.timer updated"
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user