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

44 lines
1.3 KiB
Text
Raw Normal View History

2017-03-25 18:31:20 +01:00
#!/bin/bash
2017-04-05 07:21:59 +02:00
2017-03-25 18:31:20 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2017-03-25 18:31:20 +01:00
#=================================================
# CREATE A MYSQL DATABASE
2017-03-25 18:31:20 +01:00
#=================================================
ynh_script_progression "Creating a MySQL database..."
ynh_mysql_db_shell < ../conf/sql/mytinytodo.sql
2017-03-25 18:31:20 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2017-03-25 18:31:20 +01:00
#=================================================
ynh_script_progression "Setting up source files..."
ynh_setup_source --dest_dir="$install_dir"
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression "Configuring PHP-FPM..."
2017-03-25 18:31:20 +01:00
# Create a dedicated PHP-FPM config
ynh_config_add_phpfpm
# Create a dedicated NGINX config
ynh_config_add_nginx
#=================================================
# MODIFY A CONFIG FILE
#=================================================
ynh_script_progression "Adding $app's configuration..."
2017-03-25 18:31:20 +01:00
salt=$(ynh_string_random --length=16)
ynh_config_add --template="config.php" --destination="$install_dir/config.php"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Installation of $app completed"