2014-07-23 15:52:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-09-01 08:31:03 +02:00
|
|
|
|
2018-07-21 12:18:50 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-02-13 22:30:35 +01:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-10-02 23:03:44 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2019-02-21 08:05:10 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-29 19:08:38 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-02-21 08:05:10 +01:00
|
|
|
|
2023-06-29 19:08:38 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-04-17 18:39:02 +02:00
|
|
|
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
2023-06-29 19:08:38 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
2023-06-29 19:08:38 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2019-02-21 08:05:10 +01:00
|
|
|
|
2020-09-04 22:24:17 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-06-29 19:08:38 +02:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
2022-10-02 23:03:44 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-06-28 22:23:04 +02:00
|
|
|
ynh_add_config --template="../conf/freshrss.cron" --destination="/etc/cron.d/$app"
|
2021-08-28 10:54:58 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
2021-06-28 22:23:04 +02:00
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2019-02-21 08:05:10 +01:00
|
|
|
|
2022-10-31 22:24:46 +01:00
|
|
|
log_path="/var/log/$app"
|
|
|
|
mkdir -p $log_path
|
|
|
|
chown $app:www-data $log_path
|
2022-10-03 00:00:06 +02:00
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
2023-06-29 19:08:38 +02:00
|
|
|
# SPECIFIC SETUP
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
2023-06-29 19:08:38 +02:00
|
|
|
# SETUPING FRESHRSS
|
2019-02-21 08:05:10 +01:00
|
|
|
#=================================================
|
2023-06-29 19:08:38 +02:00
|
|
|
ynh_script_progression --message="FreshRSS setup..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_as $app $install_dir/cli/do-install.php --default_user $admin --auth_type http_auth --environment production --base_url https://$domain$path --title FreshRSS --api_enabled --db-type mysql --db-host localhost --db-user $db_name --db-password $db_pwd --db-base $db_name
|
2019-02-21 08:05:10 +01:00
|
|
|
|
2023-06-29 19:08:38 +02:00
|
|
|
for myuser in $(ynh_user_list)
|
|
|
|
do
|
|
|
|
user_token=$(ynh_string_random)
|
|
|
|
ynh_exec_as $app $install_dir/cli/create-user.php --user $myuser --language $language --token $user_token
|
|
|
|
done
|
2019-02-21 08:05:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-09-04 22:24:17 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|