I have about 500 servers I manage with cfengine 2. I'm looking to upgrade to
version 3 but I have a couple of questions.
In my current setup, my cfagent.conf looks something like this:
import:
any::groups/any.cf
backup:: groups/backup.cf
I have found out how to compile a release tarball on Solaris (such as
cfengine-v3.1.2.tar.gz), but have some noob problems doing it from the
svn source. I follow the steps at [1] and can only do the first
checkout, the following two fail with the error: 'trunk' is already a
working copy for a diffe
You are trying to checkout to the same destination dir. The first
checkout successfully fills the "trunk" dir, but you try to ovewrite it
in the following checkouts (which is not allowed).
svn takes an optional destination path for checkout, either use that or
rename the dirs after checkout.
s
The three commands are trying to check out into the same directory "trunk". You
need to add the directory name at the end to have them check out into different
directories. For example:
enterprise$ svn checkout http://source.cfengine.com/svn/core/trunk core
enterprise$ svn checkout http://source
Thanks guys, one problem fixed - this is probably obvious for the
skilled subversion user, but I'm not and tried to follow the
documentation.
Now I did this:
svn checkout http://source.cfengine.com/svn/core/trunk core
svn checkout http://source.cfengine.com/svn/copbl/trunk copbl
svn checkout http
Forum: Cfengine Help
Subject: Re: cfengine 3.1.2 segfaulting again...
Author: bbomgardner
Link to topic: https://cfengine.com/forum/read.php?3,20083,20143#msg-20143
Thanks for verifying this, Mark. I hope I can provide more meaningful data
about this issue from my environment with time.
Forum: Cfengine Help
Subject: Re: importing tasks based on host group
Author: bbomgardner
Link to topic: https://cfengine.com/forum/read.php?3,20138,20144#msg-20144
One way to do this is to use methods. Here is some info from the reference
guide:
http://www.cfengine.org/manuals/cf3-reference.html
Thank you, this helps a lot.
On Sun, Jan 16, 2011 at 9:13 PM, wrote:
> Forum: Cfengine Help
> Subject: Re: importing tasks based on host group
> Author: bbomgardner
> Link to topic: https://cfengine.com/forum/read.php?3,20138,20144#msg-20144
>
> One way to do this is to use methods. Here is some