[Puppet Users] Re: Massive Import/Include

2012-10-05 Thread pierre-emmanuel degand
As regards your 3 proposals : - "that it would probably all need to go into one YAML file" => it will be the same than insert all my config in the manifest.pp, and it's not interesting to me - "you could put it in an hiera data store" => i don't know this method yet - "You cou

[Puppet Users] Re: Massive Import/Include

2012-10-01 Thread jcbollinger
On Friday, September 28, 2012 9:56:51 AM UTC-5, pierre-emmanuel degand wrote: > > my module bind : > - init.pp : > class bind { > include bind::install > include bind::service > } > > -install.pp : > class bind::install ( > $packages = $bind::params::server_packages > ) inherits bind::params {

[Puppet Users] Re: Massive Import/Include

2012-09-28 Thread pierre-emmanuel degand
my module bind : - init.pp : class bind { include bind::install include bind::service } -install.pp : class bind::install ( $packages = $bind::params::server_packages ) inherits bind::params { package { $packages : ensure => present, } file { "/etc/bind/zones": ensu

[Puppet Users] Re: Massive Import/Include

2012-09-28 Thread jcbollinger
On Friday, September 28, 2012 8:47:03 AM UTC-5, jcbollinger wrote: > > > > On Friday, September 28, 2012 3:31:11 AM UTC-5, pierre-emmanuel degand > wrote: >> >> Hi, I try to include or import a lot of configuration files in a node, >> but it doesn't work :/ >> >> I create a module to configure

Re: [Puppet Users] Re: Massive Import/Include

2012-09-28 Thread Stephen Gran
Hi, On Fri, 2012-09-28 at 06:47 -0700, jcbollinger wrote: > > > On Friday, September 28, 2012 3:31:11 AM UTC-5, pierre-emmanuel degand > wrote: > Hi, I try to include or import a lot of configuration files in > a node, but it doesn't work :/ > > > I crea

[Puppet Users] Re: Massive Import/Include

2012-09-28 Thread jcbollinger
On Friday, September 28, 2012 3:31:11 AM UTC-5, pierre-emmanuel degand wrote: > > Hi, I try to include or import a lot of configuration files in a node, but > it doesn't work :/ > > I create a module to configure bind, but i have a lot of domains to > configure in the node of my server, so i d