1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/prestashop_ynh.git synced 2024-09-03 20:06:39 +02:00

with_mysql fait planter linter

This commit is contained in:
magikcypress 2017-03-11 22:39:09 +01:00
parent 89cfdff4da
commit 3e70209b47

View file

@ -14,7 +14,7 @@ source /usr/share/yunohost/helpers
domain=$(ynh_app_setting_get $app domain) domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path) path=$(ynh_app_setting_get $app path)
is_public=$(ynh_app_setting_get $app is_public) is_public=$(ynh_app_setting_get $app is_public)
with_mysql=$(ynh_app_setting_get "$app" with_mysql) # with_mysql=$(ynh_app_setting_get "$app" with_mysql)
# Check domain/path availability # Check domain/path availability
sudo yunohost app checkurl "${domain}${path}" -a "$app" \ sudo yunohost app checkurl "${domain}${path}" -a "$app" \
@ -49,13 +49,13 @@ sudo cp -a ./sources "$final_path"
sudo chown -R www-data: $final_path sudo chown -R www-data: $final_path
# Restore db # Restore db
if [[ $with_mysql -eq 1 ]]; then # if [[ $with_mysql -eq 1 ]]; then
db_pwd=$(ynh_app_setting_get $app mysqlpwd) db_pwd=$(ynh_app_setting_get $app mysqlpwd)
db_user=$app db_user=$app
ynh_mysql_create_db $db_user $db_user $db_pwd ynh_mysql_create_db $db_user $db_user $db_pwd
sudo su -c "mysql -u $db_user -p$db_pwd $app < ./db.sql" sudo su -c "mysql -u $db_user -p$db_pwd $app < ./db.sql"
sudo rm -f "./db.sql" sudo rm -f "./db.sql"
fi #fi
# Restore nginx configuration files # Restore nginx configuration files
sudo cp -a ./nginx.conf "$nginx_conf" sudo cp -a ./nginx.conf "$nginx_conf"