mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
416 B
25 lines
416 B
6 years ago
|
#!/bin/bash
|
||
|
#
|
||
|
|
||
|
username=$1
|
||
|
|
||
|
if [ -z "${username}" ];then
|
||
|
echo "No username specify, exit"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
function disable_user_mfa() {
|
||
|
python ../apps/manage.py shell << EOF
|
||
|
import sys
|
||
|
from users.models import User
|
||
|
user = User.objects.filter(username="${username}")
|
||
|
if not user:
|
||
|
print("No user found")
|
||
|
sys.exit(1)
|
||
|
user.update(otp_level=0)
|
||
|
print("Disable user ${username} success")
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
disable_user_mfa
|