nagios-3.2.3-3.30.1e>UAmA8>ljM?RC$j.&>hwI&f6Ng7ڕt8`/>@dx?dhd   1 $2;D ]o=II I I  @I 'iI 'I(I*iI+, I-0-X-/(0 80( 90 :3 =X>X?X@YFY GY IHZDII[hIX[Y[\[I]]I^`bbccedcecfdldzdd'dKdXCnagios3.2.33.30.1The Nagios Network MonitorNagios is a program that will monitor hosts and services on your network. It has the ability to email or page you when a problem arises and when a problem is resolved. Nagios is written in C and is designed to run under Linux (and some other *NIX variants) as a background process, intermittently running checks on various services that you specify. The actual service checks are performed by separate "plugin" programs which return the status of the checks to Nagios. The plugins are available at http://sourceforge.net/projects/nagiosplug This package provide core programs for nagios. The web interface, documentation, and development files are built as separate packages Authors: -------- Ethan Galstad RWbuild13OopenSUSE 11.4openSUSEGPL-2.0+http://bugs.opensuse.orgSystem/Monitoringhttp://www.nagios.org/linuxx86_64# Create user and group on the system if necessary # default group: nagios if getent group nagios >/dev/null then : OK group nagios already present else groupadd -r nagios 2>/dev/null || : logger -t nagios/rpm "Added group nagios for package nagios" fi # default group: nagcmd if getent group nagcmd >/dev/null then : OK group nagcmd already present else groupadd -r nagcmd 2>/dev/null || : logger -t nagios/rpm "Added group nagcmd for package nagios" fi # default user: nagios if id nagios > /dev/null 2>&1 then : OK user nagios already present else useradd -r -o -g nagios -s /bin/false -c "User for Nagios" -d /var/lib/nagios nagios 2> /dev/null || : logger -t nagios/rpm "Added user nagios for package nagios" fi # update? if [ ${1:-0} -gt 1 ]; then # in the past, group www was used as cmdgrp - now we use the default: nagcmd if id -Gn nagios 2>/dev/null | grep -q nagcmd >/dev/null 2>&1 ; then : # nagios is already in nagcmd group else # Add nagios to nagcmd. groupmod -A nagios nagcmd 2>/dev/null logger -t nagios/rpm "Added nagios to nagcmd" fi fi test -n "$FIRST_ARG" || FIRST_ARG=$1 FORCE_YES=0 set -- nagios PNAME=nagios INSSRV_ARRAY="" while [ ${#*} -gt 0 ] ; do SCRIPTNAME=$1 shift SV_B='^### BEGIN INIT INFO' SV_E='^### END INIT INFO' SV_KW=Default-Enabled SV_VALUE=`sed -n -e "/$SV_B/,/$SV_E/{/^# [^[:space:]]*$SV_KW:[[:space:]]*\([^[:space:]]*\).*/s//\1/p;}" < /etc/init.d/$SCRIPTNAME` test "$FORCE_YES" = "1" && SV_VALUE="yes" test -n "$SV_VALUE" || SV_VALUE="no" INSSRV_ARRAY="$INSSRV_ARRAY $SCRIPTNAME $SV_VALUE" done TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi set -- $INSSRV_ARRAY while [ ${#*} -gt 0 ] ; do SCRIPTNAME=$1 SV_VALUE=$2 shift 2 test -n "$SCRIPTNAME" -a -n "$SV_VALUE" || { echo "SCRIPTNAME or SV_VALUE unknown"; exit 1;} if test "$FIRST_ARG" = "1" -a "$SV_VALUE" = "no" ; then /sbin/insserv ${YAST_IS_RUNNING:+-f} -r /etc/init.d/$SCRIPTNAME elif test "$FIRST_ARG" = "1" -o "$FORCE_YES" = "1" ; then /sbin/insserv ${YAST_IS_RUNNING:+-f} /etc/init.d/$SCRIPTNAME fi done # Update ? if [ ${1:-0} -gt 1 ]; then if [ -f /etc/nagios/nagios.cfg ]; then DATE=$(date "+%Y-%m-%d-%H:%M") TMPFILE=$(mktemp /tmp/nagios-XXXXXX) NAGIOS_CFG=/etc/nagios/nagios.cfg cp -f $NAGIOS_CFG ${NAGIOS_CFG}_${DATE} if ! grep -q ^lock_file=/var/run/nagios/nagios.pid $NAGIOS_CFG ; then echo "- updating pid lock_file= to /var/run/nagios/nagios.pid in $NAGIOS_CFG" >> $TMPFILE sed -i "s@^lock_file=.*@lock_file=/var/run/nagios/nagios.pid@" $NAGIOS_CFG fi if grep -q ^service_reaper_frequency $NAGIOS_CFG ; then echo "- renaming service_reaper_frequency to check_result_reaper_frequency in $NAGIOS_CFG" >> $TMPFILE sed -i "s@service_reaper_frequency@check_result_reaper_frequency@" $NAGIOS_CFG fi if grep -q ^aggregate_status_updates $NAGIOS_CFG ; then echo "- aggregate_status_updates option has been removed from $NAGIOS_CFG" >> $TMPFILE sed -i "s@^aggregate_status_updates@# aggregate_status_updates@" $NAGIOS_CFG fi if grep -q ^downtime_file $NAGIOS_CFG ; then set -- $(grep ^downtime_file $NAGIOS_CFG | sed 's@=@ @') shift file=$(echo $*) if [ -n "$file" ]; then if [ -f "$file" ]; then set -- $(grep ^state_retention_file $NAGIOS_CFG | sed 's@=@ @') shift state_retention_file=$(echo $*) echo "- adding the content of of $file to $state_retention_file" >> $TMPFILE cat "$file" >> "$state_retention_file" fi fi echo "- removing downtime_file variable (no longer supported) in $NAGIOS_CFG" >> $TMPFILE sed -i "s@^downtime_file@# downtime_file@" $NAGIOS_CFG fi if grep -q ^comment_file $NAGIOS_CFG ; then set -- $(grep ^comment_file $NAGIOS_CFG | sed 's@=@ @') shift file=$(echo $*) if [ -n "$file" ]; then if [ -f "$file" ]; then echo "- adding the content of $file to $state_retention_file" >> $TMPFILE cat "$file" >> "$state_retention_file" fi fi echo "- removing comment_file variable (no longer supported) in $NAGIOS_CFG" >> $TMPFILE sed -i "s@^comment_file@# comment_file@" $NAGIOS_CFG fi logger -t nagios/rpm $(cat $TMPFILE) rm $TMPFILE fi else # First installation: create an alias for the default nagiosadmin user if [ -r etc/aliases ]; then if ! grep -q "^nagiosadmin:" etc/aliases; then echo -e "nagiosadmin:\troot" >> etc/aliases logger -t nagios/rpm "Added alias for user nagiosadmin to /etc/aliases" if [ -x usr/bin/newaliases ]; then usr/bin/newaliases &>/dev/null || true else logger -t nagios/rpm "Cannot execute newaliases. Please run it manually." fi fi fi fi test -n "$FIRST_ARG" || FIRST_ARG=$1 if test "$FIRST_ARG" = "0" ; then test -f /etc/sysconfig/services && . /etc/sysconfig/services if test "$YAST_IS_RUNNING" != "instsys" -a "$DISABLE_STOP_ON_REMOVAL" != yes ; then for service in nagios ; do /etc/init.d/$service stop > /dev/null done fi fiif [ -f /var/run/nagios/nagios.pid ]; then chown -v nagios /var/run/nagios/nagios.pid fi test -n "$FIRST_ARG" || FIRST_ARG=$1 if test "$FIRST_ARG" -ge 1 ; then test -f /etc/sysconfig/services && . /etc/sysconfig/services if test "$YAST_IS_RUNNING" != "instsys" -a "$DISABLE_RESTART_ON_UPDATE" != yes ; then for service in nagios ; do /etc/init.d/$service try-restart > /dev/null || : done fi fi /sbin/insserv /etc/init.d#,! v 4 *< 8|54IpI 8JFR ,,"8h v 4 *< 4=AAAAAAAAAA큤A큤A큤AAA큤A큤ARWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWLTG(<{ I2RWRWARWRWRWRWRWRWFjؘRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRWRW0c4cd44bc077e9620d56a7402dbd301e4cac73964fde845c1eb527d87cb1c00daec6e416bc228434bff74a6eac266804074d3bbea48f58a0a333623be7b0c61e3e4f3ea243d18efddf82a60a099c05885ee6a28df66ed3cc6f76b46073ced9acd480109d4b46fc8fcf035f0656f8f4ee5be43c3b2e389979dea33dae0bdfc932e6dbfdc291e5af66bad7874ec0d874f1e9652b77b65a9d19d57052ca1463c5a8cd85feab3219ad82d9641477767500258146c6f74ba3cc91fb7f5264d7a13ef035e95b8f014fa40329fc3a2056fc14ad6e1e90f743a0ceaf7a5b6cde7037b61d59c4299f2b07178b31f6a810a95350d59b01474f9c13b45e4d7ce14b48dd427aa80aa25b490a0c9728d6c03aa2dae4b7b356a196d90c5d37beb7bf8c4c90563554036b3de4cb1e34c9c67410d6d01f93959e7d177e71c32217759d52747f5f16d37e0a4778d59bf4411b9ea9b3e852fc030fab6ed726860af66f93ef51027123b8c2f7f0dae91cc6fd4ccc903eaaec312b4dc699e0ff5f288b11be668e81bebd55d39c8272388a873235e09b27d8dd430640fbdf4e8b655eb2762857d5193a815ac8d146c55548c4721e33a4b586a3cae76a2920e29a0c7fabf4eca71e161738cae4d8d3dc470934927f197cbdcb867fd734de9a7014aa1483e062b0f2cbe8924c4203caac58013115c9ca4b85f296ae9a3f00b9730551b6d06f327316ff9d970708e657ff7df4a23e4fd63a43736f7d1ecb0fea85d20c316ec73fdc2fcf1282aec6e416bc228434bff74a6eac2668042b31b16d11a7bde6448acebc40a446a16297fc33eed78d4fd319e15ed73d6685df0f2abe2e35b79cc7a18fa503aa4dda35e95b8f014fa40329fc3a2056fc14ad4dce8c9376fa8ac9e66d73f10f846e503e4f3ea243d18efddf82a60a099c05885ee6a28df66ed3cc6f76b46073ced9acd480109d4b46fc8fcf035f0656f8f4ee5be43c3b2e389979dea33dae0bdfc932e6dbfdc291e5af66bad7874ec0d874f1e9652b77b65a9d19d57052ca1463c5a8cd85feab3219ad82d9641477767500258146c6f74ba3cc91fb7f5264d7a13ef03b24b10411f5915fcde028d51a31fe1ff5fa1a162c844ab2f955185a080aa87704d31553cc9d5b8966d5a6571c261748d41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427e/etc/init.d/nagiosYYY@Yrootrootnagiosrootrootnagiosrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootnagiosnagiosnagiosnagiosnagiosrootnagiosnagiosnagiosrootrootnagcmdrootrootnagcmdrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootnagcmdnagcmdrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootnagiosnagiosnagiosnagiosnagiosrootnagiosnagiosnagcmdnagios-3.2.3-3.30.1.src.rpmsysvinit(nagios)nagiosnagios(x86-64)    @@@@@@@@@@@@@@ fillupcoreutilsgrepdiffutilsinsservsed/bin/loggerpwdutilsmailx/bin/sh/bin/sh/bin/sh/bin/shrpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)/bin/shlibc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.8)(64bit)libltdl.so.7()(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libperl.so()(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)libpthread.so.0(GLIBC_2.3.3)(64bit)rpmlib(PayloadIsLzma)4.0-13.0.4-14.4.6-14.8.0RkQQ@P@N@LdLLL)@L~@@L~@@L>@L7@L#HL L_K@Kj@K;@KFK]K"@KK y@JJ@JQJ@JJB@J@I̿Ilrupp@suse.dewr@rosenauer.orgwr@rosenauer.orglars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.deschneemann@b1-systems.deschneemann@b1-systems.deschneemann@b1-systems.deschneemann@b1-systems.delars@linux-schulserver.dechris@computersalat.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.delars@linux-schulserver.dechris@computersalat.delars@linux-schulserver.decschneemann@suse.dechris@computersalat.dechris@computersalat.decschneemann@suse.decschneemann@suse.decschneemann@suse.decschneemann@suse.decschneemann@suse.decschneemann@suse.decschneemann@suse.de- Fix possible denial of service in CGI executables: * nagios-CVE-2013-7108.patch (bnc#856837)- added nagios-CVE-2013-2214.patch fixing unauthorized host/service views displayed in servicegroup view (bnc#827020)- refreshed nagios-history_buffer_overflow.patch (bnc#797237)- avoid stack based buffer overflow in web interface (history): added nagios-history_buffer_overflow.patch - (bnc ##797237) fixes CVE-2012-6096- added nagios-3.2.3-CVE-2011-1523.patch to fix CVE-2011-1523 (bnc#682966) - patch fixes also CVE-2011-2179 (bnc#697895)- update to 3.2.3: + Fixes problem where disabling all active hosts/services was not taking effect + Fixes for compiler warnings (code cleanup by Stephen Gran) + Fixes for format errors in event handler logging (Guillaume Rousse) + Fixed incorrect info in sample nagios.cfg file for state_retention_file (Michael Friedrich) + Fixed broker_event_handler() to return ERR if data is NULL (Michael Friedrich) - rebased all patches - adapted nagios-disable_phone_home.patch- removed unneeded filter "permissions-directory-setuid-bit" from nagios-rpmlintrc- cleaned spec and sources, removed unused patches from source- reworked phone-home patch- Update to nagios 3.2.2, excerpt from changelog: FIXES * Fix for choosing next valid time on day of DST change when clocks go one hour backwards * Fix for nagios now erroring when "Error: Could not find any contactgroup matching..." displayed * Fix tap tests for Solaris 10 and newer versions of Test::Harness * Fix for notifications not being sent out when scheduled downtime is cancelled (Daniel Pouzzner) * Fix for first notification delay being calculated incorrectly, and notifications potentially going out early (Pawel Malachowski) * Fix for text of scheduling downtime of all services on a host (Holger Weiss) * Fix for services inheriting notification period from hosts if not defined (Gordon Messmer) * Fix for incorrect service states on host failures (bug #130 Petya Kohts) * Fix for incorrect service state attributes being set on host failures (bug #128 Petya Kohts) * Fix for non-scheduled hosts and services not being updated in NDOUtils * Fix for incorrect host state counts in status CGI when viewing servicegroups (bug #72) * Fix for new Splunk integration query parameters (bug #136) * Fix for extra field header in availability CSV export (bug #113) * Fix for macro processing code modifying input string (Jochen Bern) * Fix for event execution loop re-scheduling host checks instead of executing them if service checks are disabled (bug #152) * Fix for segfaults on Solaris (Torsten Huebler) * Fix for incorrect comment expiration times being passed to event broker (Mattieu Kermagot)- back to the old file permissions (once again for clean nagios support) - readded nonsense stuff again - create/fix check_result_path if needed- fix file/dir perms o once again for centreon support - spec mods o sort TAGS o added lost Authors (description) o macros o remove nonsense stuff- rebase phone-home patch- recommend nagios-plugins only to avoid buildcycles- fix init script: touch files if they do not exist-- disable patch8 - needs rebasing - install PIDDIR if it's not /var/run to avoid owner problems during start - always change ownership of standard files to the right values- fix 'Schedule downtime for this host and all services' behavior (http://tracker.nagios.org/view.php?id=133) - fix typos resulting in non used style declarations (http://tracker.nagios.org/view.php?id=150) - fix deleting comments from the hashlist (http://tracker.nagios.org/view.php?id=80) - rebase nagios-p1.pl-location.patch - fix a handful compiler warnings - do not allow nagios to phone home: disable online_update_checks - fix command-group - BuildRequire net-tools for enabling WAP- check_verbose now always prints the resulting logfile - this allows to see the warnings- ghost the pid directory- fix broken files section - init skript now handles /var/run on tmpfs - small adaptions of init skript - default pidfile now /var/run/nagios/nagios.pid - add manpages from Debian package - add Debian patches: + nagios-fix_forced_servicechecks.patch + nagios-fix_encoding_trends.cgi.patch + nagios-fix_spurious_dollar_signs_added_to_command_lines.patch- cleanup source o removed nagios-3.2.0- update to 3.2.1: Enhancements: + Link to allow scheduling downtime for all services on a host + Speedup to CGIs when lots of comments or downtimes in status.dat file + Patch for new_mini_epn to allow for any command line length without breaking extra trailing or leading whitespace Fixes: + Fix for incorrect scheduling when time has gone back an hour (partial fix for 24x7) + Fix for logging test, which was not timezone aware (bug #0000077 - Allan Clark) + Fix for CSS validation of padding: X + Fix for documentation re: case-insensitive nature of custom variables (Marc Powell) + Fix for template configurations which use negated wildcards (Tim Wilde)- changed path to send_nsca in the eventhandler script according to the path given in the nagios-nsca package. BNC #486937- added lost changes o Jun 24 2009 o Jun 23 2009 - spec mods o removed changelog o added LEGAL to doc o simplify install of extra SOURCES - added support for centreon o centreon is frontend GUI for nagios o changed perms/ownership in files section- cleanup spec o fixed header o sorted TAGS - fixed deps o added missing Req nagios-plugins- added Requires php and mod_php_any- added ndo2db to Should-Start/Should-Stop in rcnagios changed permission of resource.cfg (needed by centreon) (Changes by chris@computersalat.de)- update to 3.2.0: * Fix for read-only permissions bug in CGIs that caused problems viewing comments (bug #0000029) * Fix for incorrect CGI reports (availability, trends, etc.) when reporting period spans Daylight Savings Time (bug #0000046) * Fix for detection of truecolor support in GD library (Lars Hecking) * Reverted to use --datadir configure script option instead of the more recently introduced --datarootdir option * Status and retention files are now flushed/synced to disk to prevent incomplete information being displayed in CGIs * Fix for incorrect next service check time calculation when Nagios is reloaded with different timeperiod ranges * Updated Fedora quickstart guide to indicate PHP requirements * Known issue: Service checks that are defined with timeperiods that contain "exclude" directives are incorrectly re-scheduled. Don't use these for now - we'll get this fixed for 3.4- update to 3.1.2 - fixes bug in host/service schduling logic that caused excessive CPU usage introduced with 3.1.0- update to 3.1.1 * New "important check command" flag for use in service templates, to aid configuration in distributed environments * Fix for nagios validation error when no services defined * Fix for stylesheet link * Fix for extinfo.cgi error message when cgi.cfg doesn't exist * Fix for notifications.cgi where Update button on right didn't retain host information when no host= was in query parameters * Fix for potential bug where a contactgroup with no members could cause parsing errors * Fix for W3 validation for history.cgi * Fix for W3 validation for extinfo.cgi * Fix for nagiostats to return non-zero with failures in MRTG mode * Added t/ directory for tests. Use make test to run. Requires perl on development server * Fix for duplicate event_id attributes in status and retention data * Fix for duplicate unlink() during check processing * Added missing check period column to host config display (CGI) * Fix for embedded Perl initialization under FreeBSD * Fix for incorrect re-initialization of mutext after program restart * Fix for incorrect weighting in host flap detection logic * Added libtap to distribution. Use ./configure --enable-libtap to compile * nagios.log permissions are now kept after log rotation * Fix for "Max concurrent service checks (X) has been reached" messages - will now push services 5 + random(10) seconds ahead for retry * Fix for removing old HTML files for web frontend that are now replaced with PHP equivalents (in dex/main/side.html) * Fix for incorrect service history link text in CGIs * Fix for useless code loop in netutils.c * Fix for potential divide by zero in event scheduling code * Fix for trailing backslash in plugin output causing memory corruption in CGIs * Fix for bug that could affect host/service scheduling during clock time skew or changes to time perod definitions between restarts * Leading whitespace from continuation lines in configuration files is now stripped out * Fix for bug where pipe (used by IPC) file descriptors get inherited by child processed (e.g. event handlers) (bug #0000026) * Fix for failure to daemonize - Nagios now bails (bug #0000011) * Fix for notifications about flapping starting not processed properly by retention data * Patch to add transparency to statusmap icons for truecolor images * Patch to add read-only permissions to extinfo CGI * Security fix for statuswml.cgi where arbitrary shell injection was possible- added check_verbose to rcnagios to print the error messages directly instead of pointing to the error_log BNC #486912- changed rcnagios to delete control characters from values BNC #480747/bin/sh/bin/sh/bin/sh/bin/shbuild13 1388664811>9 8    NMWSQReuvwxyz{|~}E^<@AUV3.2.3-3.30.13.2.3-3.30.1   nagiosnagiosnagioscgi.cfgnagios.cfgobjectscommands.cfgcontacts.cfglocalhost.cfgprinter.cfgswitch.cfgtemplates.cfgtimeperiods.cfgwindows.cfgresource.cfgnagiosbrokerscgip1.plpluginseventhandlersdisable_active_service_checksdisable_notificationsdistributed-monitoringobsessive_svc_handlersubmit_check_result_via_nscaenable_active_service_checksenable_notificationsredundancy-scenario1handle-master-host-eventhandle-master-proc-eventsubmit_check_resultconvertcfgmini_epnnagiosnagiostatsnew_mini_epnrcnagiosnagiosChangelogLEGALLICENSEREADMEREADME.SuSEsample-configREADMEcgi.cfghttpd.confmrtg.cfgnagios.cfgresource.cfgtemplate-objectREADMEcommands.cfgcontacts.cfglocalhost.cfgprinter.cfgswitch.cfgtemplates.cfgtimeperiods.cfgwindows.cfgnagios.8.gznagiosstats.8.gzsysconfig.nagiosnagiosretention.datstatus.datnagiosarchivesconfig.errnagiosnagios.pidnagios/etc/cron.weekly//etc/init.d//etc//etc/nagios//etc/nagios/objects//usr/lib//usr/lib/nagios//usr/lib/nagios/plugins//usr/lib/nagios/plugins/eventhandlers//usr/lib/nagios/plugins/eventhandlers/distributed-monitoring//usr/lib/nagios/plugins/eventhandlers/redundancy-scenario1//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/nagios//usr/share/doc/packages/nagios/sample-config//usr/share/doc/packages/nagios/sample-config/template-object//usr/share/man/man8//var/adm/fillup-templates//var/lib//var/lib/nagios//var/log//var/log/nagios//var/run//var/run/nagios//var/spool/-fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Evergreen:Maintenance:228/openSUSE_Evergreen_11.4/02567396e9dc4a1805b73d95ec93a828-nagios.openSUSE_Evergreen_11.4drpmlzma5x86_64-suse-linuxk8?9q;@cronnagios-wwwperlnagios-plugins5.12.3?]"k%L!n jQhMSYGNx?cs(" *2}1ؐgf.qmm EJr))1A.%?BluM;\Oe5c@K2`>bXwuߤtT* ɩƏc!jОL3Bl|oeX;ioLos. *XPRiprE P1*F!(5k/x Y8TPyibgkmh{q-Ӳ{w۸wtxqr<`"};q@̪B-c on*W]W6*bZX[ʛe{uk>WVaZ (* K~0t~.i:-\˅"^aݿwN#.f^J<K2a?l:Jڇ^cZ-O ߷txsjѪ)E#4n"rʼq3 7v0(9 ;q:ճ0V(dho3%1V0+d.}T .GIzkP4_j&\,yV@FRQ3.zT9'CLO@J|X˘;T?lrD&"ħ" S-2YH}{8-hDS"ɌM NX&JT@+.#R|h\7WΎgZ ~