Commit 4dfef992 authored by ibuler's avatar ibuler

Merge pull request #85 from jumpserver/bug_fix_issue_83

修复用户禁用后仍可ssh登陆跳板机
parents d0ba0503 47ce0939
......@@ -746,6 +746,9 @@ def main():
if not login_user: # 判断用户是否存在
color_print('没有该用户,或许你是以root运行的 No that user.', exits=True)
if not login_user.is_active:
color_print('您的用户已禁用,请联系管理员.', exits=True)
gid_pattern = re.compile(r'^g\d+$')
nav = Nav(login_user)
nav.print_nav()
......
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