修复 su - 无法获取 Env的bug

pull/45/merge
ibuler 2016-01-13 17:57:32 +08:00
parent 4d0331e105
commit f2487a22cd
1 changed files with 4 additions and 1 deletions

View File

@ -33,7 +33,10 @@ from jperm.ansible_api import MyRunner
from jlog.models import ExecLog, FileLog
login_user = get_object(User, username=getpass.getuser())
remote_ip = os.environ.get('SSH_CLIENT').split()[0]
try:
remote_ip = os.environ.get('SSH_CLIENT').split()[0]
except (IndexError, AttributeError):
remote_ip = os.popen("who -m | awk '{ print $NF }'").read().strip('()\n')
try:
import termios