mirror of
https://github.com/YunoHost-Apps/funkwhale_ynh.git
synced 2024-09-03 18:36:24 +02:00
apply suggestions
This commit is contained in:
parent
73b3dffea7
commit
16fa6f9df4
2 changed files with 6 additions and 34 deletions
|
@ -9,24 +9,6 @@
|
|||
source _common.sh
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
#=================================================
|
||||
# LOAD SETTINGS
|
||||
#=================================================
|
||||
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
|
||||
|
||||
#REMOVEME? # Needed for helper "ynh_add_nginx_config"
|
||||
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
|
||||
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
|
||||
#REMOVEME? key=$(ynh_app_setting_get --app=$app --key=key)
|
||||
#REMOVEME? redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
||||
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
|
||||
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
||||
#REMOVEME? db_user=$db_name
|
||||
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
||||
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
|
||||
#REMOVEME? redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
||||
#REMOVEME? key=$(ynh_app_setting_get --app=$app --key=key)
|
||||
|
||||
#=================================================
|
||||
# STANDARD MODIFICATIONS
|
||||
#=================================================
|
||||
|
@ -49,7 +31,7 @@ ynh_change_url_nginx_config
|
|||
# MODIFY THE CONFIG FILE
|
||||
#=================================================
|
||||
ynh_script_progression --message="Modifying a config file..." --weight=1
|
||||
#REMOVEME?
|
||||
|
||||
domain=$new_domain
|
||||
ynh_add_config --template="../conf/env.prod" --destination="$install_dir/config/.env"
|
||||
|
||||
|
@ -69,14 +51,6 @@ ynh_systemd_action --service_name="$app-beat" --action="start" --log_path="/var/
|
|||
ynh_systemd_action --service_name="$app-server" --action="start" --log_path="/var/log/$app/$app.log"
|
||||
ynh_systemd_action --service_name="$app-worker" --action="start" --log_path="/var/log/$app/$app.log"
|
||||
|
||||
#=================================================
|
||||
# SETUP FAIL2BAN
|
||||
#=================================================
|
||||
ynh_script_progression --message="Configuring Fail2Ban..." --weight=1
|
||||
|
||||
# Create a dedicated Fail2Ban config
|
||||
#REMOVEME? ynh_add_fail2ban_config --logpath="/var/log/nginx/$new_domain-access.log" --failregex="<HOST>.* \"POST /api/v1/token/ HTTP/1.1\" 400 68.*$" --max_retry=5
|
||||
|
||||
#=================================================
|
||||
# END OF SCRIPT
|
||||
#=================================================
|
||||
|
|
|
@ -68,13 +68,11 @@ if [ -z "$data_dir" ]; then
|
|||
rsync -a $install_dir/code/data/music/ $data_dir/music/
|
||||
fi
|
||||
|
||||
#REMOVEME? ynh_secure_remove --file="$install_dir/code"
|
||||
#REMOVEME? ynh_secure_remove --file="$install_dir/media"
|
||||
#REMOVEME? ynh_secure_remove --file="$install_dir/code/data/media"
|
||||
#REMOVEME? ynh_secure_remove --file="$install_dir/import"
|
||||
#REMOVEME? ynh_secure_remove --file="$install_dir/code/data/music"
|
||||
|
||||
#REMOVEME? ynh_app_setting_set --app=$app --key=data_dir --value=$data_dir
|
||||
ynh_secure_remove --file="$install_dir/code"
|
||||
ynh_secure_remove --file="$install_dir/media"
|
||||
ynh_secure_remove --file="$install_dir/code/data/media"
|
||||
ynh_secure_remove --file="$install_dir/import"
|
||||
ynh_secure_remove --file="$install_dir/code/data/music"
|
||||
|
||||
chmod 750 "$data_dir"
|
||||
chmod -R o-rwx "$data_dir"
|
||||
|
|
Loading…
Reference in a new issue