|
|
|
@ -105,6 +105,12 @@ if [ -z "$overwrite_phpfpm" ]; then |
|
|
|
ynh_app_setting_set --app=$app --key=overwrite_phpfpm --value=$overwrite_phpfpm |
|
|
|
fi |
|
|
|
|
|
|
|
# Replace wp-fail2ban by wp-fail2ban-redux |
|
|
|
wget -nv https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -O $final_path/wp-cli.phar |
|
|
|
wpcli_alias="php $final_path/wp-cli.phar --allow-root --path=$final_path" |
|
|
|
$wpcli_alias plugin is-installed wp-fail2ban && $wpcli_alias plugin deactivate wp-fail2ban && $wpcli_alias plugin uninstall wp-fail2ban |
|
|
|
$wpcli_alias plugin is-installed wp-fail2ban-redux || $wpcli_alias plugin install wp-fail2ban-redux |
|
|
|
|
|
|
|
#================================================= |
|
|
|
# STANDARD UPGRADE STEPS |
|
|
|
#================================================= |
|
|
|
@ -208,8 +214,8 @@ ynh_app_setting_set --app=$app --key=multisite --value=$multisite |
|
|
|
#================================================= |
|
|
|
ynh_script_progression --message="Updating plugins" --weight=11 |
|
|
|
|
|
|
|
wget -nv https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -O $final_path/wp-cli.phar |
|
|
|
wpcli_alias="php $final_path/wp-cli.phar --allow-root --path=$final_path" |
|
|
|
# wget -nv https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -O $final_path/wp-cli.phar |
|
|
|
# wpcli_alias="php $final_path/wp-cli.phar --allow-root --path=$final_path" |
|
|
|
update_plugin () { |
|
|
|
( $wpcli_alias plugin is-installed $1 && $wpcli_alias plugin update $1 ) || $wpcli_alias plugin install $1 |
|
|
|
} |
|
|
|
@ -217,8 +223,8 @@ update_plugin simple-ldap-login |
|
|
|
$wpcli_alias plugin activate simple-ldap-login $plugin_network |
|
|
|
update_plugin companion-auto-update |
|
|
|
$wpcli_alias plugin activate companion-auto-update $plugin_network |
|
|
|
update_plugin wp-fail2ban |
|
|
|
$wpcli_alias plugin activate wp-fail2ban $plugin_network |
|
|
|
update_plugin wp-fail2ban-redux |
|
|
|
$wpcli_alias plugin activate wp-fail2ban-redux $plugin_network |
|
|
|
|
|
|
|
# Disable broken plugin http-authentication |
|
|
|
$wpcli_alias plugin is-installed http-authentication && $wpcli_alias plugin deactivate http-authentication $plugin_network |
|
|
|
|