1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/install

78 lines
2.6 KiB
Text
Raw Normal View History

#!/bin/bash
2017-08-27 14:42:28 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-04-20 21:31:08 +02:00
source /usr/share/yunohost/helpers
2017-08-27 14:42:28 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Setting up source files..." --weight=7
2017-08-27 14:42:28 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2023-04-02 22:18:26 +02:00
#ynh_setup_source --dest_dir="$install_dir/plugins.local/data_migration" --source_id="data_migration"
echo "$(ynh_app_upstream_version)" > "$install_dir/version_static.txt"
2017-08-27 14:42:28 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-18 09:26:51 +02:00
2017-08-27 14:42:28 +02:00
#=================================================
2023-03-11 12:47:55 +01:00
# SYSTEM CONFIGURATION
2017-08-27 14:42:28 +02:00
#=================================================
2023-03-11 12:47:55 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2017-08-27 14:42:28 +02:00
2020-08-14 12:29:45 +02:00
# Create a dedicated PHP-FPM config
2023-12-05 20:39:00 +01:00
ynh_add_fpm_config
2017-08-27 14:42:28 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2023-03-11 12:47:55 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
yunohost service add $app --description="News feed reader and aggregator" --log="/var/log/$app/$app.log"
2017-08-27 14:42:28 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
2021-05-18 09:26:51 +02:00
# ADD A CONFIGURATION
2017-08-27 14:42:28 +02:00
#=================================================
2021-05-18 09:26:51 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2017-08-27 14:42:28 +02:00
domain_path=https://$domain$path
2021-05-18 09:26:51 +02:00
ynh_add_config --template="../conf/config.php" --destination="$install_dir/config.php"
2017-08-27 14:42:28 +02:00
chmod 400 "$install_dir/config.php"
chown $app "$install_dir/config.php"
2021-05-18 09:26:51 +02:00
2017-08-27 14:42:28 +02:00
#=================================================
# INITIALIZE DATABASE
#=================================================
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Initializing database..." --weight=6
2017-08-27 14:42:28 +02:00
ynh_psql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" \
< "$install_dir/schema/ttrss_schema_pgsql.sql"
2017-08-27 14:42:28 +02:00
ynh_exec_as $app php$phpversion $install_dir/update.php --update-schema=force-yes
2017-08-27 14:42:28 +02:00
2021-05-18 09:26:51 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2021-05-18 09:26:51 +02:00
2019-05-01 20:35:48 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2017-08-27 14:42:28 +02:00
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Installation of $app completed" --last