Add remote user_id to ansible facts
This commit is contained in:
parent
b5ad1ce768
commit
7c772c6af5
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue