From 8acca286fdb9c1c53ae97f9a5a9883583c919e6b Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Mon, 10 Jun 2024 14:22:53 -0400 Subject: [PATCH] [fix] Fixed default openwisp2_radius_delete_old_radiusbatch_users The implementation in OpenWISP RADIUS expects this value to be a number of months, which by default should be 12. The current default value was wrong. --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 13a0c2e8..6c72c864 100755 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -161,7 +161,7 @@ openwisp2_users_user_password_expiration: 0 openwisp2_users_staff_user_password_expiration: 0 openwisp2_radius_sms_backend: "sendsms.backends.console.SmsBackend" openwisp2_radius_sms_token_max_ip_daily: 25 -openwisp2_radius_delete_old_radiusbatch_users: 365 +openwisp2_radius_delete_old_radiusbatch_users: 12 openwisp2_radius_cleanup_stale_radacct: 1 openwisp2_radius_delete_old_postauth: 365 openwisp2_radius_delete_old_radacct: 365