1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/scripts/install

64 lines
1.9 KiB
Text
Raw Normal View History

#!/bin/bash
2017-02-02 03:37:01 +01:00
source /usr/share/yunohost/helpers
source _common.sh
2017-02-02 03:37:01 +01:00
ynh_trap_on
2017-02-02 03:37:01 +01:00
export app=$YNH_APP_INSTANCE_NAME
user=$app
2017-02-02 03:37:01 +01:00
# Retrieve arguments
ynh_export domain path admin is_public language
export local_path=/var/www/$app
export data_path=/home/yunohost.app/$app
2017-02-02 03:37:01 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
#=================================================
ynh_check_var "$app" "app name not set"
ynh_user_exists "$admin" || ynh_die "User does not exist: $admin"
ynh_normalize_url_path "$path"
ynh_path_validity "$domain$path"
ynh_local_path_available "$local_path"
ynh_local_path_available "$data_path"
2017-02-02 03:37:01 +01:00
#=================================================
# SETUP THE APP BY MODIFYING THE SYSTEM
#=================================================
2017-02-02 03:37:01 +01:00
ynh_save_args domain path admin is_public language local_path
2017-02-02 03:37:01 +01:00
ynh_package_install php5-imap
2017-02-02 03:37:01 +01:00
ynh_mysql_generate_db "$user" "$app"
2017-02-02 03:37:01 +01:00
ynh_system_user_create "$user" "$local_path"
2017-02-02 03:37:01 +01:00
ynh_setup_source "$local_path" "$user"
2017-02-02 03:37:01 +01:00
# Move upload directory in yunohost.app
ynh_mv_to_home $local_path/upload
2017-02-02 03:37:01 +01:00
ynh_configure config.php "$local_path/application/config/config.php"
2017-02-02 03:37:01 +01:00
# Fill LimeSurvey database
sed 's/`prefix_/`lime_/g' $local_path/installer/sql/create-mysql.sql > ./structure.sql
mysql -u $db_user -p$db_pwd $db_user < ./structure.sql
ynh_configure data.sql ./data.sql
mysql -u $db_user -p$db_pwd $db_user < ./data.sql
# Set permissions
2017-02-02 03:37:01 +01:00
ynh_set_default_perm $local_path
ynh_set_default_perm $data_path/upload
sudo chmod u+w $local_path/tmp
sudo chmod u+w $data_path/upload
sudo chmod u+w $local_path/application/config/
sudo yunohost app addaccess $app -u $admin
2017-02-02 03:37:01 +01:00
sudo yunohost app setting $app unprotected_uris -v "/"
#sudo yunohost app setting $app protected_uris -v "/index.php?r=admin,/index.php?r=plugins,/scripts"
sudo yunohost app ssowatconf
2017-02-02 03:37:01 +01:00
ynh_configure_php_fpm
ynh_configure_nginx