mirror of https://github.com/jumpserver/jumpserver
11 lines
173 B
Bash
11 lines
173 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
|
||
|
python ../apps/manage.py shell << EOF
|
||
|
from django.core.cache import cache
|
||
|
|
||
|
cache.delete_pattern('_LOGIN_BLOCK_*')
|
||
|
cache.delete_pattern('_LOGIN_LIMIT_*')
|
||
|
|
||
|
EOF
|