From 59baee2ef9d85e3284ecf47fc3c7bd16a3c08ac3 Mon Sep 17 00:00:00 2001 From: Maniack Crudelis Date: Wed, 18 Mar 2020 19:52:48 +0100 Subject: [PATCH] specify php version to use --- scripts/install | 4 ++-- scripts/upgrade | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install b/scripts/install index 3a0422b..e66ac45 100644 --- a/scripts/install +++ b/scripts/install @@ -68,7 +68,7 @@ ynh_app_setting_set --app=$app --key=admin_mail_html --value=1 #================================================= ynh_script_progression --message="Installing dependencies..." --weight=9 -ynh_install_app_dependencies php5-cli +ynh_install_app_dependencies php7.0-cli #================================================= # CREATE A MYSQL DATABASE @@ -174,7 +174,7 @@ done ynh_script_progression --message="Installing wordpress plugins..." --weight=20 wget --no-verbose https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar --output-document=$final_path/wp-cli.phar -wpcli_alias="php $final_path/wp-cli.phar --allow-root --path=$final_path" +wpcli_alias="php7.0 $final_path/wp-cli.phar --allow-root --path=$final_path" $wpcli_alias plugin install simple-ldap-login $wpcli_alias plugin install http-authentication diff --git a/scripts/upgrade b/scripts/upgrade index 277ae2c..f637896 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -131,7 +131,7 @@ 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="php7.0 $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 @@ -170,7 +170,7 @@ ynh_maintenance_mode_ON #================================================= ynh_script_progression --message="Upgrading dependencies..." --weight=11 -ynh_install_app_dependencies php5-cli +ynh_install_app_dependencies php7.0-cli #================================================= # NGINX CONFIGURATION @@ -239,7 +239,7 @@ 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" +# wpcli_alias="php7.0 $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 }