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

94 lines
3.2 KiB
Text
Raw Normal View History

2015-02-16 23:19:37 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-02-16 23:19:37 +01:00
source _common.sh
source /usr/share/yunohost/helpers
2015-02-16 23:27:29 +01:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2015-02-16 23:19:37 +01:00
2021-07-17 16:48:02 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2022-06-11 10:34:59 +02:00
timezone=$(cat /etc/timezone)
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2023-08-20 15:51:37 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2021-07-17 16:48:02 +02:00
ynh_app_setting_set --app=$app --key=email --value=$email
2017-07-18 12:28:52 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-07-19 08:38:46 +02:00
ynh_script_progression --message="Setting up source files..." --weight=5
2023-08-21 09:55:30 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
ynh_setup_source --dest_dir="$install_dir/addon" --source_id="addons"
2020-04-09 10:42:49 +02:00
2023-08-21 14:03:11 +02:00
mkdir -p "$install_dir/view/smarty3"
chmod -R 775 "$install_dir/view/smarty3"
2023-08-20 15:36:10 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-07-17 16:48:02 +02:00
#=================================================
2023-08-21 12:34:53 +02:00
# SYSTEM CONFIGURATION
#=================================================
2023-08-21 12:34:53 +02:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2023-08-21 10:05:52 +02:00
# Create a dedicated PHP-FPM configy
ynh_add_fpm_config --usage=low --footprint=low
2023-08-21 12:34:53 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2023-08-21 18:39:17 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2023-08-21 12:34:53 +02:00
2023-08-21 12:23:35 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
2023-08-21 12:34:53 +02:00
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="^.*authenticate\: failed login attempt.*\"ip\"\:\"<HOST>\".*$"
2023-08-21 10:05:52 +02:00
2021-07-17 17:18:53 +02:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding the LDAP Auth addon configuration file..." --weight=1
2021-07-17 16:48:02 +02:00
# LDAP addon config
2023-08-20 15:36:10 +02:00
ynh_add_config --template="../conf/addon.config.php" --destination="$install_dir/config/addon.config.php"
#=================================================
2021-07-19 08:47:47 +02:00
# INSTALL FRIENDICA
#=================================================
ynh_script_progression --message="Install Friendica..." --weight=1
2023-08-20 15:36:10 +02:00
pushd "$install_dir"
# Import Composer dependencies
2023-08-21 17:21:48 +02:00
ynh_exec_as "$app" php$phpversion bin/composer.phar install --no-dev --quiet
2021-02-10 09:00:00 +01:00
# Install application
2023-08-21 18:33:00 +02:00
ynh_exec_as "$app" php$phpversion bin/console.php autoinstall\
--dbhost "localhost" --dbdata "$db_name" --dbuser "$db_user" --dbpass "$db_pwd"\
--admin "$email" --tz "$timezone" --lang "$language" --url "https://$domain$path"
# Enable LDAP Auth addon
ynh_exec_as "$app" php$phpversion bin/console.php addon enable ldapauth
2023-08-21 18:30:41 +02:00
popd
2020-10-15 21:09:24 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-19 08:38:46 +02:00
ynh_script_progression --message="Installation of $app completed" --last