Sha256: 169715d38e9a130a204e599d849916e552e0b49588d8d7cc5e747b4d1f0cbe66
Contents?: true
Size: 795 Bytes
Versions: 99
Compression:
Stored size: 795 Bytes
Contents
# Fact: augeasversion # # Purpose: Report the version of the Augeas library. # # Resolution: # Loads ruby-augeas and reports the value of `/augeas/version`, the version of # the underlying Augeas library. # # Caveats: # The library version may not indicate the presence of certain lenses, # depending on the system packages updated, nor the version of ruby-augeas # which may affect support for the Puppet Augeas provider. # Versions prior to 0.3.6 cannot be interrogated for their version. # Facter.add(:augeasversion) do setcode do begin require 'augeas' aug = Augeas::open('/', nil, Augeas::NO_MODL_AUTOLOAD) ver = aug.get('/augeas/version') aug.close ver rescue Exception Facter.debug('ruby-augeas not available') end end end
Version data entries
99 entries across 99 versions & 2 rubygems