mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
removed unused function
This commit is contained in:
parent
68a9adc1be
commit
cb55cd6f8d
1 changed files with 0 additions and 18 deletions
|
@ -344,24 +344,6 @@ class Runner(object):
|
||||||
|
|
||||||
# *****************************************************
|
# *****************************************************
|
||||||
|
|
||||||
def _save_setup_result_to_disk(self, conn, result):
|
|
||||||
''' cache results of calling setup '''
|
|
||||||
|
|
||||||
dest = os.path.expanduser("~/.ansible_setup_data")
|
|
||||||
user = getpass.getuser()
|
|
||||||
if user == 'root':
|
|
||||||
dest = "/var/lib/ansible/setup_data"
|
|
||||||
if not os.path.exists(dest):
|
|
||||||
os.makedirs(dest)
|
|
||||||
|
|
||||||
fh = open(os.path.join(dest, conn.host), "w")
|
|
||||||
fh.write(result)
|
|
||||||
fh.close()
|
|
||||||
|
|
||||||
return result
|
|
||||||
|
|
||||||
# *****************************************************
|
|
||||||
|
|
||||||
def _add_result_to_setup_cache(self, conn, result):
|
def _add_result_to_setup_cache(self, conn, result):
|
||||||
''' allows discovered variables to be used in templates and action statements '''
|
''' allows discovered variables to be used in templates and action statements '''
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue