Sponsored Content
Full Discussion: Puppet dashboard
Special Forums UNIX and Linux Applications Puppet dashboard Post 302969616 by cjcox on Thursday 24th of March 2016 03:39:51 PM
Old 03-24-2016
Looking at the logs is probably a reasonable way (sorry, I'm a PE user).
 

7 More Discussions You Might Find Interesting

1. Solaris

Patching Solaris boxes with Puppet

Has anyone here done this? I'd like to discuss this subject as the patching procedures at my new company are woeful. (2 Replies)
Discussion started by: LittleLebowski
2 Replies

2. UNIX for Dummies Questions & Answers

Help installling puppet

Hi, I am trying to instal the puppet. I get this error. Please help.. yum install puppet-server Loaded plugins: fastestmirror, presto Loading mirror speeds from cached hostfile * base: mirrors.greenmountainaccess.net * extras: mirror.lug.udel.edu * updates:... (2 Replies)
Discussion started by: samnyc
2 Replies

3. UNIX for Advanced & Expert Users

Need help installing Puppet and Ruby..

Hi, I am working on RHEL 5.6 server, this is in private DMZ. No access to internet. I have downloaded the files I need to install the Puppet & Ruby. My goal is to install Puppet. I have downloaded.... mcollective-2.2.3-1.el5.noarch- SERVER.rpm ... (2 Replies)
Discussion started by: samnyc
2 Replies

4. UNIX and Linux Applications

Cfengine or puppet?

I'm looking to deploy a configuration management system at my company and was wondering which config management was better: cfengine or Puppet? Pros/Cons? I'm looking to deploy the free version of each. Any advice would be greatly appreciated. Thanks. (6 Replies)
Discussion started by: theace18
6 Replies

5. UNIX and Linux Applications

Puppet, Instillation

Can not complete the installation of a puppet server on a Linux box. bash: passenger-install-apache2-module: command not found Please use CODE tags as required by forum rules whenever you display sample input, sample output, and code segments. (1 Reply)
Discussion started by: zbest1966
1 Replies

6. Red Hat

Update puppet class from Client

Hi all, This is more a satellite 6 question Is it possible to add / assign a puppet client to a class on the master from the client ? This is for automation and I can't get it to work. On an existing client used as a web server I found the following content in cat... (0 Replies)
Discussion started by: stinkefisch
0 Replies

7. UNIX for Beginners Questions & Answers

Puppet : How to start.

Hello Team, Do You have any data/books/links related to Puppet? How to start, how to setup first env and execute "puppet" actions? Thanks in advance! Patryk (3 Replies)
Discussion started by: nsmcny
3 Replies
Logger(3pm)						  LogReport's Lire Documentation					       Logger(3pm)

NAME
Lire::Logger - Lire's logging interface. SYNOPSIS
Any program: use Lire::Logger qw/ lr_info lr_debug lr_warn /; lr_info( "doing stuff " ); lr_debug( "debugging information" ); lr_warn( "encountered unexpected value: ", $value ); open( CFGFILE, "my.conf" ) or lr_err( "open error: ", $! ); DESCRIPTION
This module contains functions that should be used by everything in the Lire framework which should need logging. All logging functions take any number of parameters that will be joined together to form the message (like print(), die(), warn() and friends). lr_emerg() This logs a message at the "emerg" level and aborts your program. This probably shouldn't be used. lr_crit() This logs a message at the "crit" level and aborts your program. This should only be used when something is really broken in the Lire program or the environment. It is used a few places in Lire when assertion that should really never fail (like a DLF file with the wrong number of fields). lr_err() This logs a message at the "err" level and usually aborts your program. (It is the equivalent of a die().) The program won't abort if it's used in an eval block. Uses this for error condition. lr_warn() This logs a message at the "warning" level. Perl's builtin warn is mapped to this function. Use this for non-fatal errors. lr_notice() This logs a message at the "notice" level. This should be used for significant informational messages that the user should see. (By default, the user will only see messages at level "notice" or higher.) lr_info() This logs a message at the "info" level. Use this for general informational messages. lr_debug() This logs a message at the "debug" level. Use this for debugging messages. SEE ALSO
Lire::Program(3pm) AUTHOR
Francis J. Lacoste <flacoste@logreport.org> VERSION
$Id: Logger.pm,v 1.10 2006/07/23 13:16:29 vanbaal Exp $ COPYRIGHT
Copyright (C) 2001-2003 Stichting LogReport Foundation LogReport@LogReport.org This file is part of Lire. Lire is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (see COPYING); if not, check with http://www.gnu.org/copyleft/gpl.html. Lire 2.1.1 2006-07-23 Logger(3pm)
All times are GMT -4. The time now is 10:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy