Commit fa1a167f authored by BaiJiangJie's avatar BaiJiangJie

[Feature] 添加同步 LDAP/AD 用户的定时任务3

parent 8b7c5b15
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# #
from celery import shared_task from celery import shared_task
from django.conf import settings
from ops.celery.utils import create_or_update_celery_periodic_tasks from ops.celery.utils import create_or_update_celery_periodic_tasks
from ops.celery.decorator import after_app_ready_start from ops.celery.decorator import after_app_ready_start
...@@ -11,7 +12,6 @@ from .utils import ( ...@@ -11,7 +12,6 @@ from .utils import (
send_password_expiration_reminder_mail, send_user_expiration_reminder_mail send_password_expiration_reminder_mail, send_user_expiration_reminder_mail
) )
from settings.utils import LDAPUtil from settings.utils import LDAPUtil
from django.conf import settings
logger = get_logger(__file__) logger = get_logger(__file__)
......
...@@ -72,6 +72,13 @@ REDIS_PORT: 6379 ...@@ -72,6 +72,13 @@ REDIS_PORT: 6379
# RADIUS_PORT: 1812 # RADIUS_PORT: 1812
# RADIUS_SECRET: # RADIUS_SECRET:
# LDAP/AD 设置定时同步参数
# 启用/禁用
# AUTH_LDAP_SYNC_IS_PERIODIC: True
# 单位: 时
# AUTH_LDAP_SYNC_INTERVAL: 12
# Crontab 表达式
# AUTH_LDAP_SYNC_CRONTAB: * 6 * * *
# OTP settings # OTP settings
# OTP/MFA 配置 # OTP/MFA 配置
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment