This repository has been archived on 2025-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
puppet/manifests/environment.pp
2014-05-26 14:56:57 +02:00

11 lines
272 B
Puppet

define puppet::environment (
$ensure = 'present',
$modulepath) {
ini_setting { "puppet-server-environment-${name}":
path => '/etc/puppet/puppet.conf',
section => $name,
setting => 'modulepath',
value => $modulepath,
ensure => $ensure,
}
}