mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
f3168788a6
* add schema * add daemon * finalization * fixes * systemd config renamed to $app-daemon * fixes * fixes * gorgotten yunohost service remove "$app" * fixes * fix StandardOutput * fix this damn pidfile * better comment for posterity * fix yunohost service remove * update config files * fix domain name change * use the provided config file template at install * Auto-update README * post install: show explicitely the admin login (email) * trying to fix the systemd config * fix pidfile config indentation * add log path * remove irrelevant comment * delete an eventual remaining daemon.pid at restoration * fixes * fix a typo for all_users * adding comment: "Removing the cron..." * use ynh_secure_remove instead of rm * add pre upgrade message about the daemon * fix service name * comment --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org>
99 lines
3.5 KiB
Bash
99 lines
3.5 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
#=================================================
|
|
|
|
email=$(ynh_user_get_info --username="$admin" --key=mail)
|
|
timezone=$(cat /etc/timezone)
|
|
|
|
#=================================================
|
|
# STORE SETTINGS FROM MANIFEST
|
|
#=================================================
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
|
|
|
ynh_app_setting_set --app="$app" --key=email --value="$email"
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Setting up source files..." --weight=5
|
|
|
|
# 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"
|
|
|
|
mkdir -p "$install_dir/view/smarty3"
|
|
|
|
chmod -R 775 "$install_dir/view/smarty3"
|
|
chmod -R o-rwx "$install_dir"
|
|
chown -R "$app:www-data" "$install_dir"
|
|
|
|
ynh_add_config --template="local-sample.config.php" --destination="$install_dir/config/local.config.php"
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
# Create a dedicated PHP-FPM configy
|
|
ynh_add_fpm_config
|
|
|
|
ynh_add_systemd_config --service="$app-daemon"
|
|
|
|
# Create a dedicated nginx config
|
|
ynh_add_nginx_config
|
|
|
|
yunohost service add "$app-daemon" --description="Friendica daemon" --log="/var/log/$app/daemon.log"
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
ynh_use_logrotate
|
|
|
|
# Create a dedicated Fail2Ban config
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="^.*authenticate\: failed login attempt.*\"ip\"\:\"<HOST>\".*$"
|
|
|
|
#=================================================
|
|
# ADD A CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding the LDAP Auth addon configuration file..." --weight=1
|
|
|
|
# LDAP addon config
|
|
ynh_add_config --template="addon.config.php" --destination="$install_dir/config/addon.config.php"
|
|
|
|
#=================================================
|
|
# INSTALL FRIENDICA
|
|
#=================================================
|
|
ynh_script_progression --message="Install Friendica..." --weight=1
|
|
|
|
pushd "$install_dir"
|
|
# Import Composer dependencies
|
|
ynh_exec_as "$app" "php$phpversion" bin/composer.phar install --no-dev --quiet
|
|
|
|
# Install application
|
|
ynh_exec_as "$app" "php$phpversion" bin/console.php -f "$install_dir/config/local.config.php"
|
|
|
|
# Enable LDAP Auth addon
|
|
ynh_exec_as "$app" "php$phpversion" bin/console.php addon enable ldapauth
|
|
popd
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name="$app-daemon" --action="start" --log_path="/var/log/$app/daemon.log"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|