Commit 2e6f3d35 authored by ibuler's avatar ibuler

Merge pull request #42 from hhding/master

Get SSH client IP address from environment
parents 80fde52d dd36857c
......@@ -33,7 +33,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 $NF }'").read().strip('()\n')
remote_ip = os.environ.get('SSH_CLIENT').split()[0]
try:
import termios
......
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