1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00
This commit is contained in:
Éric Gaspar 2024-01-30 00:01:57 +01:00
parent d56282a779
commit bf43673ab9
2 changed files with 3 additions and 3 deletions

View file

@ -77,7 +77,7 @@ exec_occ maintenance:install \
--database-user $db_user --database-pass "$db_pwd" \
--admin-user "admin" --admin-pass "$admin_password" \
--data-dir "$data_dir/data" \
|| ynh_die --message="Unable to install Nextcloud"
|| ynh_die --message="Unable to install $app"
#=================================================
# CONFIGURE NEXTCLOUD

View file

@ -122,7 +122,7 @@ fi
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading Nextcloud..." --weight=3
ynh_script_progression --message="Upgrading $app..." --weight=3
# Set write access for the following commands
chown -R $app: "$install_dir" "$data_dir"
@ -360,7 +360,7 @@ ynh_use_logrotate --non-append
#-------------------------------------------------
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="/home/yunohost.app/$app/data/nextcloud.log" --failregex="^.*Login failed: '.*' \(Remote IP: '<HOST>'.*$" --max_retry=5
ynh_add_fail2ban_config --logpath="$data_dir/data/nextcloud.log" --failregex="^.*Login failed: '.*' \(Remote IP: '<HOST>'.*$" --max_retry=5
#=================================================
# END OF SCRIPT