Puppet Class: lsys::tools::libconfig

Defined in:
manifests/tools/libconfig.pp

Summary

C/C++ configuration file library

Overview

Libconfig is a simple library for manipulating structured configuration files. This file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.

Examples:

include lsys::tools::libconfig

Parameters:

  • package_ensure (Bsys::PackageVersion) (defaults to: true)


13
14
15
16
17
# File 'manifests/tools/libconfig.pp', line 13

class lsys::tools::libconfig (
  Bsys::PackageVersion $package_ensure = true,
) {
  bsys::tools::package { 'libconfig': ensure => $package_ensure }
}