Merge pull request #85 from jumpserver/bug_fix_issue_83

修复用户禁用后仍可ssh登陆跳板机
pull/94/head
ibuler 2016-02-25 18:42:59 +08:00
commit 4dfef99216
1 changed files with 3 additions and 0 deletions

View File

@ -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()