Displaying 3 results from an estimated 3 matches for "sa_dewha".
2007 Oct 29
2
Setting variables in modules - order important?
Puppeteers,
For some reason I have to assign my variable before I include my class
for the assignment to ''take''. I though the ordering was immaterial. Am
I doing something wrong (again) or is this a funny?
-----------------------
This works:
<0> sa_dewha@engpsr0000.intranetdev.barcapdev.com (0 jobs)
/users/unix/sa_dewha/SVNCheckOut/bootstrap/puppet/modules/ztest/examples
% cat setup.pp
$int_var = "Set in setup.pp example"
include ztest::setup
<0> sa_dewha@engpsr0000.intranetdev.barcapdev.com (0 jobs)
/users/unix/sa_dewha/SVNCheck...
2007 Nov 13
2
Creating a manifests ''release'' under SVN; trouble with SVN headers
...e gotten into the habit of including SVN headers in my templates, etc
so it is easy to see where the file installed into /etc/puppet/ came
from. Furthermore, we use svn cp to create release branches.
Therefore, you''ll see something like this:
# $Id: dumpadm.conf 1239 2007-10-23 16:04:06Z sa_dewha $
# $URL:
svn://engsun05/bootstrap/rel/release-20071030/puppet/modules/crashdump/t
emplates/dumpadm.conf $
All well and good until I create another release and the svn export
looks like this:
# $Id: dumpadm.conf 1239 2007-10-23 16:04:06Z sa_dewha $
# $URL:
svn://engsun05/bootstrap/rel/release-200...
2007 Aug 30
4
Command line vs config file override for configuration params
...s with --configprint:
# puppet --verbose --debug --color=false --libdir=`pwd`/testlib
--configprint libdir
/var/lib/puppet/plugins
(this comes from puppet.conf in /etc/puppet)
# sudo puppet --verbose --debug --color=false --libdir=`pwd`/testlib
--config /dev/null --configprint libdir
/users/unix/sa_dewha/SVNCheckOut/bootstrap/puppet/plugins/types/allowed/
testlib
(this is as intended, off my cwd)
The libdir setting is in the [main] section of puppet.conf. I could
also move this out to [puppetmasterd], but I''d rather not, as often
puppet will be invoked with a requirement for the custom t...