search for: controltier

Displaying 3 results from an estimated 3 matches for "controltier".

Did you mean: controller
2011 Sep 08
3
What is the deference of Puppi, MCollective and ControlTier?
Hi, I am using puppet as my configuration solution, it is a very good for system-level configuration management and compliance. But it is not good at batch jobs. For now, I have three options: puppi, MCollective and ControlTier. I don''t know much about them. Can anyone give me some advices that which of them is better at batch jobs. Thanks Yunfeng -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@google...
2010 Oct 29
14
require service started at another node
Hello, Anybody now how make with puppet dependence on other service on another node? like : require => Service[dbnode:postgresql] I need ensure that the db is running on another node before start my appserver. Thank you. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to
2009 Jan 15
8
Pattern matching in case statement
Hi all, I need my servers to decide which network they are in (i.e. dmz), and the only clue is the servers IP-address. I was trying to accomplish it like this, but it doesn''t work: case $ipaddress { "10.1.1.*": { $network = "net1" } "10.2.2.*.*": { $network = "net2" } "10.3.3.*": {