Displaying 7 results from an estimated 7 matches for "base_node".
Did you mean:
base_name
2007 Mar 29
2
some questions regarding inhert, unless/onlyif and notify on recursive objects
...t; ".svn",
notify => Exec["update-aide.conf"],
}
}
first problem:
"update-aide.conf" always gets called. even if no file has changed in
"/etc/aide/aide.conf.d" puppetd detects a change and notifies
update-aide.conf exec:
debug: //base_node/aide/Exec[update-aide.conf]: Changing returns
debug: //base_node/aide/Exec[update-aide.conf]: 1 change(s)
debug: //base_node/aide/Exec[update-aide.conf]: Executing
''/usr/sbin/update-aide.conf''
is it possible to enhance the debug level to actually see what that
change is supposed...
2007 May 01
7
RFC: Changing variable override
It seems like a very common expectation that the following code would
work:
class boo {
$me = "/something"
file { $me: ensure => present }
}
class yay inherits boo {
$me = "/something/else"
}
Yet, as many have found to their chagrin, it does not work. Should it?
I believe I know how I could make this work: Create a single
variable namespace for class
2007 May 02
4
Ordering problem...
Hi all,
I''d got the impression that puppet didn''t care about ordering - ie.
the ordering of imports and includes related to calling them in the
manifest.
Lately I''ve had big trouble getting puppet to accept that I require
some resource that I _have_ defined elsewhere in the manifest. To
explain it, here is a simplified example:
site.pp:
--------
import
2009 Dec 13
13
Inherited Client and Server Apps
So, I''ve been doing something like this for applications that have a
client and server component...
node base_node {
include syslog_ng::client
}}
node app_node inherits base_node {
}
node syslog_server inherits base_node {
include syslog_ng::server
}
... because I want the client portion, syslog-ng in this case to be
installed on everything. However, the server node also has a server
running. When you d...
2007 May 04
3
fileserver hanging
...:358:in `run''
from /usr/lib/ruby/1.8/sync.rb:229:in `synchronize''
from /usr/lib/ruby/1.8/puppet/client/master.rb:344:in `run''
from /usr/sbin/puppetd:424
server side:
info: Found test.dmz.ciphirelabs.net in /etc/puppet/manifests/site.pp
info: Found base_node in /etc/puppet/manifests/site.pp
info: Found true_base in /etc/puppet/manifests/site.pp
debug: apt: Retrieving template sources.list.erb
debug: template[/var/lib/puppet/templates/sources.list.erb]:
Interpolated template /var/lib/puppet/templates/sources.list.erb in 0.00
seconds
debug: update-check:...
2018 May 03
3
RFC: virtual-like methods via LLVM-style RTTI
..., one must do a little more work. The simplest case is an
// abstract virtual method in a type called 'Base':
//
// void LLVM_ABSTRACT_VIRTUAL(BaseTy, makeSound)
//
// And then later in the header file, the vtable definition:
//
// LLVM_ABSTRACT_VIRTUAL_BEGIN(BaseTy, makeSound)
// #define BASE_NODE(Ty, ...) LLVM_ABSTRACT_VIRTUAL_SLOT(Ty, makeSound)
// #include <BaseTy.inc>
// LLVM_ABSTRACT_VIRTUAL_END(getKind())
//
//
// Example:
//
// class Cat {
// ...
//
// void LLVM_ABSTRACT_VIRTUAL(Base, makeSound)
//
// LLVM_BASE_VIRTUAL(Base, getOffspringCount)
// size_t LLVM_VIRTUAL(getO...
2009 Jun 18
3
Getting started with puppet
Hey Folks,
I''m just starting to look into Puppet though am finding it a bit
confusing as to how to get it setup on the network I administer. At the
moment it is a combination of RHEL 4 and SLES 10 boxes with windows and
novell also.
I know that windows / novell is beside the point though am wondering how
to get puppet setup on the RHEL and SLES side of things.
Any good howto''s