help-cfengine
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Copy+editfiles


From: Atom Powers
Subject: Re: Copy+editfiles
Date: Wed, 24 Aug 2005 09:23:17 -0700

On 8/24/05, Jason Martin <jhmartin@toger.us> wrote:
> I've got a 500 line file that should be the same on all my
> hosts, save that one of the lines need to be customized to the
> hostname. Does anyone have any tips on how to do this? I'd
> rather not enter a 500-line editfiles stanza if possible. Is
> there any way to do a copy+editfiles action?
> 
> Thank you,
> -Jason Martin

Here's how I solved that problem when I was working with smb.conf.
Obviously the copy action is before the editfiles action. And this
method may not work if you need your edits to be nested or in a
specific order.

copy:
  any::
  # Samba configuration
        $(FileSource)/common/usr/local/etc/smb.conf
        dest=/var/cfengine/work/smb.conf
        server=$(FileServer)

editfiles:
  any:: 
        { 
        /usr/local/etc/smb.conf
        AutoCreate
        EmptyEntireFilePlease
        InsertLine "hostname = $(host)"
        InsertFile "/var/cfengine/work/smb.conf"
        DefineClasses "newsamba"
        }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]