Merge pull request #9555 from bcoca/low_cost_facts

allow fact objects to be instantiated w/o triggering all fact collection
This commit is contained in:
Brian Coca 2015-02-11 20:57:40 -05:00
commit 1b4f1e1756

View file

@ -120,8 +120,11 @@ class Facts(object):
{ 'path' : '/usr/bin/pkg', 'name' : 'pkg' },
]
def __init__(self):
def __init__(self, load_on_init=True):
self.facts = {}
if load_on_init:
self.get_platform_facts()
self.get_distribution_facts()
self.get_cmdline()