Re: [Puppet Users] Re: New to Puppet :wanted more information of VM provisioning in puppet

2016-11-23 Thread Gareth Rushgrove
On 23 November 2016 at 07:56, Klavs Klavsen wrote: > lxd module for puppet can provision lxc 'vm's - and puppet-virt module can > provision kvm's. > > But normally puppets place in the footchain - is NOT provisioning.. there > are much better tools for this (razor etc.) - which then hands over OS

[Puppet Users] Re: help with checking presence of multiple file resources in profile manifest.

2016-11-23 Thread Akai
Maybe i understand you wrong, because my English is not the best: You want to make sure, that your files are ensured before your service running up? You can use a simple require to make that sure service { 'app1': ... require => [ File['C:/Program Files (x86)/application/app1.exe'] ],

Re: [Puppet Users] How to comment multiple lines on configurations file

2016-11-23 Thread Henrik Lindberg
On 21/11/16 11:35, Amber Mehra wrote: Hey Guys, I need to comment multiple lines on some configuration files, Please let me know how to accomplish this task using puppet manifest? Best Comments in puppet are either # This is a line comment or /* this is a multiline comment */ The l

[Puppet Users] Re: How to comment multiple lines on configurations file

2016-11-23 Thread Amber Mehra
Hey Henrik, I want to comment out using puppet manifest, I found resource type which i can use "file_line", it manage file stuff pretty nicely On Monday, November 21, 2016 at 4:05:55 PM UTC+5:30, Amber Mehra wrote: > > Hey Guys, > > I need to comment multiple lines on some configuration files,