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
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'] ],
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
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,