Commit 7c772c6a by Josh Mandel

Add remote user_id to ansible facts

parent b5ad1ce7
......@@ -27,6 +27,7 @@ import re
import socket
import struct
import datetime
import getpass
DOCUMENTATION = '''
---
......@@ -119,6 +120,7 @@ class Facts(object):
self.get_pkg_mgr_facts()
self.get_lsb_facts()
self.get_date_time_facts()
self.get_user_facts()
def populate(self):
return self.facts
......@@ -307,6 +309,11 @@ class Facts(object):
self.facts['date_time']['time'] = now.strftime('%H:%M:%S')
# User
def get_user_facts(self):
self.facts['user_id'] = getpass.getuser()
class Hardware(Facts):
"""
This is a generic Hardware subclass of Facts. This should be further
......
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