fix remote ip bug

fix remote ip bug
pull/26/head
chi-chi weng 2015-12-23 15:17:14 +08:00
parent 8f1e8af2e1
commit 71116bc525
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ from jperm.ansible_api import MyRunner
from jlog.models import ExecLog, FileLog
login_user = get_object(User, username=getpass.getuser())
remote_ip = os.popen("who -m | awk '{ print $5 }'").read().strip('()\n')
remote_ip = os.popen("who -m | awk '{ print $NF }'").read().strip('()\n')
try:
import termios