diff options
| -rw-r--r-- | Makefile.am | 11 | ||||
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | configure.in | 5 | ||||
| -rw-r--r-- | m4/np_mysqlclient.m4 | 6 | ||||
| -rw-r--r-- | nagios-plugins.spec.in | 146 | ||||
| -rw-r--r-- | perlmods/Nagios-Plugin-0.34.tar.gz | bin | 44846 -> 0 bytes | |||
| -rw-r--r-- | perlmods/Nagios-Plugin-0.36.tar.gz | bin | 0 -> 45008 bytes | |||
| -rw-r--r-- | pkg/solaris/pkginfo.in | 2 | ||||
| -rwxr-xr-x | pkg/solaris/preinstall | 35 | ||||
| -rwxr-xr-x | pkg/solaris/solpkg | 15 | ||||
| -rwxr-xr-x | plugins-scripts/check_sensors.sh | 31 | ||||
| -rw-r--r-- | plugins/check_by_ssh.c | 11 | ||||
| -rw-r--r-- | plugins/check_http.c | 4 | ||||
| -rw-r--r-- | plugins/check_radius.c | 2 | ||||
| -rw-r--r-- | plugins/check_snmp.c | 20 | ||||
| -rw-r--r-- | plugins/common.h | 6 | ||||
| -rw-r--r-- | plugins/t/check_by_ssh.t | 13 | ||||
| -rw-r--r-- | po/nagios-plugins.pot | 938 |
18 files changed, 720 insertions, 528 deletions
diff --git a/Makefile.am b/Makefile.am index b6e5f2ec..cbca5d77 100644 --- a/Makefile.am +++ b/Makefile.am | |||
| @@ -16,7 +16,7 @@ localedir = $(datadir)/locale | |||
| 16 | DEFS = -DLOCALEDIR=\"$(localedir)\" | 16 | DEFS = -DLOCALEDIR=\"$(localedir)\" |
| 17 | 17 | ||
| 18 | dist-hook: | 18 | dist-hook: |
| 19 | make THANKS nagios-plugins.spec pkg/fedora/nagios-plugins.spec | 19 | $(MAKE) THANKS |
| 20 | echo ${VERSION} >$(distdir)/release | 20 | echo ${VERSION} >$(distdir)/release |
| 21 | 21 | ||
| 22 | install-root: | 22 | install-root: |
| @@ -28,13 +28,6 @@ test test-debug: | |||
| 28 | cd plugins && $(MAKE) $@ | 28 | cd plugins && $(MAKE) $@ |
| 29 | cd plugins-scripts && $(MAKE) $@ | 29 | cd plugins-scripts && $(MAKE) $@ |
| 30 | 30 | ||
| 31 | nagios-plugins.spec: nagios-plugins.spec.in | ||
| 32 | sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;s/^%%{requires}$$//" $? > $@ | ||
| 33 | |||
| 34 | pkg/fedora/nagios-plugins.spec: nagios-plugins.spec.in | ||
| 35 | $(top_srcdir)/mkinstalldirs pkg/fedora | ||
| 36 | sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;/^# Requires$$/r $(top_srcdir)/pkg/fedora/requires" $? > $@ | ||
| 37 | |||
| 38 | # Solaris pkgmk | 31 | # Solaris pkgmk |
| 39 | BUILDDIR = build-solaris | 32 | BUILDDIR = build-solaris |
| 40 | PACKDIR = build-pkg | 33 | PACKDIR = build-pkg |
| @@ -45,7 +38,9 @@ solpkg: | |||
| 45 | if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi | 38 | if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi |
| 46 | $(MAKE) all | 39 | $(MAKE) all |
| 47 | $(MAKE) DESTDIR=$$PWD/$(BUILDDIR) install | 40 | $(MAKE) DESTDIR=$$PWD/$(BUILDDIR) install |
| 41 | $(INSTALL) plugins-root/pst3 $(BUILDDIR)$(libexecdir) | ||
| 48 | $(INSTALL) pkg/solaris/pkginfo $(BUILDDIR) | 42 | $(INSTALL) pkg/solaris/pkginfo $(BUILDDIR) |
| 43 | $(INSTALL) pkg/solaris/preinstall $(BUILDDIR) | ||
| 49 | cd $(BUILDDIR) && $(PERL) ../$(PKGSCRIPT) ../$(PACKDIR) | 44 | cd $(BUILDDIR) && $(PERL) ../$(PKGSCRIPT) ../$(PACKDIR) |
| 50 | 45 | ||
| 51 | THANKS: THANKS.in | 46 | THANKS: THANKS.in |
| @@ -8,6 +8,9 @@ This file documents the major additions and syntax changes between releases. | |||
| 8 | check_http now checks for and prints the certificate cn (hostname) in SSL certificate checks (Stéphane Urbanovski) | 8 | check_http now checks for and prints the certificate cn (hostname) in SSL certificate checks (Stéphane Urbanovski) |
| 9 | Add perfdata to check_ssh (#3244097 - Marco Beck) | 9 | Add perfdata to check_ssh (#3244097 - Marco Beck) |
| 10 | New option to check_smtp to ignore failures when sending QUIT (#3358348 - Duncan Ferguson) | 10 | New option to check_smtp to ignore failures when sending QUIT (#3358348 - Duncan Ferguson) |
| 11 | New check_by_ssh -F option which allows for specifying an alternative ssh_config(5) file (#2895334 - Sven Nierlein) | ||
| 12 | check_sensors now detects faulty sensors unless --ignore-fault is specified (Jan Wagner) | ||
| 13 | Updated Nagios::Plugin perl module | ||
| 11 | 14 | ||
| 12 | FIXES | 15 | FIXES |
| 13 | Fix check_disk free space calculation if blocksizes differ within a disk group (Bekar - #2973603) | 16 | Fix check_disk free space calculation if blocksizes differ within a disk group (Bekar - #2973603) |
diff --git a/configure.in b/configure.in index bdd44314..e8fc7892 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -2,7 +2,8 @@ dnl Process this file with autoconf to produce a configure script. | |||
| 2 | AC_PREREQ(2.59) | 2 | AC_PREREQ(2.59) |
| 3 | AC_INIT(nagios-plugins,1.4.15) | 3 | AC_INIT(nagios-plugins,1.4.15) |
| 4 | AC_CONFIG_SRCDIR(NPTest.pm) | 4 | AC_CONFIG_SRCDIR(NPTest.pm) |
| 5 | AC_CONFIG_FILES(gl/Makefile) | 5 | AC_CONFIG_FILES([gl/Makefile |
| 6 | nagios-plugins.spec]) | ||
| 6 | AC_CONFIG_AUX_DIR(build-aux) | 7 | AC_CONFIG_AUX_DIR(build-aux) |
| 7 | AM_INIT_AUTOMAKE([1.8.3]) | 8 | AM_INIT_AUTOMAKE([1.8.3]) |
| 8 | AM_CONFIG_HEADER(config.h) | 9 | AM_CONFIG_HEADER(config.h) |
| @@ -162,6 +163,8 @@ dnl | |||
| 162 | dnl check for math-related functions needing -lm | 163 | dnl check for math-related functions needing -lm |
| 163 | AC_CHECK_HEADERS(math.h) | 164 | AC_CHECK_HEADERS(math.h) |
| 164 | AC_CHECK_LIB(m,floor,MATHLIBS="-lm") | 165 | AC_CHECK_LIB(m,floor,MATHLIBS="-lm") |
| 166 | AC_CHECK_HEADERS(mp.h) | ||
| 167 | AC_CHECK_LIB(bsd,pow,MATHLIBS="$MATHLIBS -lbsd") | ||
| 165 | AC_SUBST(MATHLIBS) | 168 | AC_SUBST(MATHLIBS) |
| 166 | 169 | ||
| 167 | dnl Check if we buils local libtap | 170 | dnl Check if we buils local libtap |
diff --git a/m4/np_mysqlclient.m4 b/m4/np_mysqlclient.m4 index 9bbe63c6..cd36c4f7 100644 --- a/m4/np_mysqlclient.m4 +++ b/m4/np_mysqlclient.m4 | |||
| @@ -42,6 +42,12 @@ AC_DEFUN([np_mysqlclient], | |||
| 42 | fi | 42 | fi |
| 43 | np_mysql_libs="`$np_mysql_config --libs`" | 43 | np_mysql_libs="`$np_mysql_config --libs`" |
| 44 | np_mysql_cflags="`$np_mysql_config --cflags`" | 44 | np_mysql_cflags="`$np_mysql_config --cflags`" |
| 45 | # On Solaris, cflags may contain -xstrconst, which is not acceptable to the | ||
| 46 | # gcc compiler. In this case, use the include flags as the cflags | ||
| 47 | echo $np_mysql_cflags | grep -- -xstrconst > /dev/null 2> /dev/null | ||
| 48 | if test $? -eq 0 -a "$CC" = "gcc" ; then | ||
| 49 | np_mysql_cflags="`$np_mysql_config --include`" | ||
| 50 | fi | ||
| 45 | 51 | ||
| 46 | dnl Test a mysql_init. Some systems have mysql_config, but no headers | 52 | dnl Test a mysql_init. Some systems have mysql_config, but no headers |
| 47 | _savedcppflags="$CPPFLAGS" | 53 | _savedcppflags="$CPPFLAGS" |
diff --git a/nagios-plugins.spec.in b/nagios-plugins.spec.in index 523d7c38..17a44c36 100644 --- a/nagios-plugins.spec.in +++ b/nagios-plugins.spec.in | |||
| @@ -1,6 +1,23 @@ | |||
| 1 | # Macros | ||
| 2 | %define isaix %(test "`uname -s`" = "AIX" && echo "1" || echo "0") | ||
| 3 | %define islinux %(test "`uname -s`" = "Linux" && echo "1" || echo "0") | ||
| 4 | %define isredhatfamily %(test -f /etc/redhat-release && echo "1" || echo "0") | ||
| 5 | |||
| 6 | %if %{isaix} | ||
| 7 | %define _prefix /opt/nagios | ||
| 8 | # %define _defaultdocdir %{_datadir}/doc | ||
| 9 | %else | ||
| 10 | %define _libexecdir %{_exec_prefix}/lib/nagios/plugins | ||
| 11 | %endif | ||
| 12 | %define _sysconfdir /etc/nagios | ||
| 13 | |||
| 14 | %define npusr nagios | ||
| 15 | %define nphome /opt/nagios | ||
| 16 | %define npgrp nagios | ||
| 17 | |||
| 1 | Name: nagios-plugins | 18 | Name: nagios-plugins |
| 2 | Version: %%{VERSION} | 19 | Version: @PACKAGE_VERSION@ |
| 3 | Release: %%{RELEASE} | 20 | Release: @RELEASE@ |
| 4 | Summary: Host/service/network monitoring program plugins for Nagios | 21 | Summary: Host/service/network monitoring program plugins for Nagios |
| 5 | 22 | ||
| 6 | Group: Applications/System | 23 | Group: Applications/System |
| @@ -9,7 +26,13 @@ URL: http://nagiosplug.sourceforge.net/ | |||
| 9 | Source0: http://dl.sf.net/sourceforge/nagiosplug/%{name}-%{version}.tar.gz | 26 | Source0: http://dl.sf.net/sourceforge/nagiosplug/%{name}-%{version}.tar.gz |
| 10 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | 27 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
| 11 | 28 | ||
| 29 | %define npdir %{_builddir}/%{name}-%{version} | ||
| 30 | |||
| 31 | %if %{isaix} | ||
| 32 | Prefix: %{_prefix} | ||
| 33 | %else | ||
| 12 | Prefix: %{_prefix}/lib/nagios/plugins | 34 | Prefix: %{_prefix}/lib/nagios/plugins |
| 35 | %endif | ||
| 13 | Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net> | 36 | Packager: Karl DeBisschop <kdebisschop@users.sourceforge.net> |
| 14 | Vendor: Nagios Plugin Development Group | 37 | Vendor: Nagios Plugin Development Group |
| 15 | Provides: nagios-plugins | 38 | Provides: nagios-plugins |
| @@ -19,6 +42,60 @@ Obsoletes: nagios-plugins-custom nagios-plugins-extras | |||
| 19 | 42 | ||
| 20 | 43 | ||
| 21 | # Requires | 44 | # Requires |
| 45 | %if %{isaix} | ||
| 46 | Requires: fping | ||
| 47 | Requires: gawk | ||
| 48 | Requires: net-snmp | ||
| 49 | Requires: net-snmp-perl | ||
| 50 | Requires: net-snmp-utils | ||
| 51 | Requires: openldap | ||
| 52 | Requires: openssl | ||
| 53 | Requires: perl | ||
| 54 | Requires: python | ||
| 55 | Requires: openssl | ||
| 56 | BuildRequires: fping | ||
| 57 | BuildRequires: gawk | ||
| 58 | BuildRequires: net-snmp | ||
| 59 | BuildRequires: net-snmp-perl | ||
| 60 | BuildRequires: net-snmp-utils | ||
| 61 | BuildRequires: openldap-devel | ||
| 62 | %endif | ||
| 63 | %if %{isredhatfamily} | ||
| 64 | Requires: bind-utils | ||
| 65 | Requires: coreutils | ||
| 66 | Requires: fping | ||
| 67 | Requires: gawk | ||
| 68 | Requires: grep | ||
| 69 | Requires: iputils | ||
| 70 | Requires: mysql | ||
| 71 | Requires: net-snmp-utils | ||
| 72 | Requires: ntp | ||
| 73 | Requires: openldap | ||
| 74 | Requires: openssl | ||
| 75 | Requires: openssh-clients | ||
| 76 | Requires: perl | ||
| 77 | Requires: postgresql-libs | ||
| 78 | Requires: procps | ||
| 79 | Requires: python | ||
| 80 | Requires: samba-client | ||
| 81 | Requires: shadow-utils | ||
| 82 | Requires: traceroute | ||
| 83 | Requires: /usr/bin/mailq | ||
| 84 | BuildRequires: bind-utils | ||
| 85 | BuildRequires: coreutils | ||
| 86 | BuildRequires: iputils | ||
| 87 | BuildRequires: mysql-devel | ||
| 88 | BuildRequires: net-snmp-utils | ||
| 89 | BuildRequires: net-tools | ||
| 90 | BuildRequires: ntp | ||
| 91 | BuildRequires: openldap-devel | ||
| 92 | BuildRequires: openssh-clients | ||
| 93 | BuildRequires: openssl-devel | ||
| 94 | BuildRequires: postgresql-devel | ||
| 95 | BuildRequires: procps | ||
| 96 | BuildRequires: samba-client | ||
| 97 | BuildRequires: /usr/bin/mailq | ||
| 98 | %endif | ||
| 22 | 99 | ||
| 23 | 100 | ||
| 24 | %description | 101 | %description |
| @@ -37,38 +114,79 @@ contains those plugins. | |||
| 37 | 114 | ||
| 38 | 115 | ||
| 39 | %build | 116 | %build |
| 40 | ./configure \ | 117 | %{?isaix: MAKE=gmake} ./configure \ |
| 41 | --prefix=%{_prefix} \ | 118 | --prefix=%{_prefix} \ |
| 42 | --exec-prefix=%{_exec_prefix} \ | 119 | --exec-prefix=%{_exec_prefix} \ |
| 43 | --libexecdir=%{_exec_prefix}/lib/nagios/plugins \ | 120 | --libexecdir=%{_libexecdir} \ |
| 44 | --sysconfdir=%{_sysconfdir}/nagios \ | 121 | --sysconfdir=%{_sysconfdir} \ |
| 45 | --datadir=%{_datadir} \ | 122 | --datadir=%{_datadir} \ |
| 46 | --with-cgiurl=/nagios/cgi-bin | 123 | --with-cgiurl=/nagios/cgi-bin |
| 124 | ls -1 %{npdir}/plugins > %{npdir}/ls-plugins-before | ||
| 125 | ls -1 %{npdir}/plugins-root > %{npdir}/ls-plugins-root-before | ||
| 126 | ls -1 %{npdir}/plugins-scripts > %{npdir}/ls-plugins-scripts-before | ||
| 47 | make %{?_smp_mflags} | 127 | make %{?_smp_mflags} |
| 48 | 128 | ls -1 %{npdir}/plugins > %{npdir}/ls-plugins-after | |
| 129 | ls -1 %{npdir}/plugins-root > %{npdir}/ls-plugins-root-after | ||
| 130 | ls -1 %{npdir}/plugins-scripts > %{npdir}/ls-plugins-scripts-after | ||
| 131 | |||
| 132 | %pre | ||
| 133 | # Create `nagios' group on the system if necessary | ||
| 134 | %if %{isaix} | ||
| 135 | lsgroup %{npgrp} > /dev/null 2> /dev/null | ||
| 136 | if [ $? -eq 2 ] ; then | ||
| 137 | mkgroup %{npgrp} || %nnmmsg Unexpected error adding group "%{npgrp}". Aborting install process. | ||
| 138 | fi | ||
| 139 | %endif | ||
| 140 | %if %{islinux} | ||
| 141 | getent group %{npgrp} > /dev/null 2> /dev/null | ||
| 142 | if [ $? -ne 0 ] ; then | ||
| 143 | groupadd %{npgrp} || %nnmmsg Unexpected error adding group "%{npgrp}". Aborting install process. | ||
| 144 | fi | ||
| 145 | %endif | ||
| 146 | |||
| 147 | # Create `nagios' user on the system if necessary | ||
| 148 | %if %{isaix} | ||
| 149 | lsuser %{npusr} > /dev/null 2> /dev/null | ||
| 150 | if [ $? -eq 2 ] ; then | ||
| 151 | useradd -d %{nphome} -c "%{npusr}" -g %{npgrp} %{npusr} || \ | ||
| 152 | %nnmmsg Unexpected error adding user "%{npusr}". Aborting install process. | ||
| 153 | fi | ||
| 154 | %endif | ||
| 155 | %if %{islinux} | ||
| 156 | getent passwd %{npusr} > /dev/null 2> /dev/null | ||
| 157 | if [ $? -ne 0 ] ; then | ||
| 158 | useradd -r -d %{nshome} -c "%{npusr}" -g %{npgrp} %{npusr} || \ | ||
| 159 | %nnmmsg Unexpected error adding user "%{npusr}". Aborting install process. | ||
| 160 | fi | ||
| 161 | %endif | ||
| 49 | 162 | ||
| 50 | %install | 163 | %install |
| 51 | rm -rf $RPM_BUILD_ROOT | 164 | rm -rf $RPM_BUILD_ROOT |
| 52 | make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install | 165 | make AM_INSTALL_PROGRAM_FLAGS="" DESTDIR=${RPM_BUILD_ROOT} install |
| 53 | install -d ${RPM_BUILD_ROOT}/etc/nagios | 166 | build-aux/install-sh -c -d ${RPM_BUILD_ROOT}%{_sysconfdir} |
| 54 | install -m 664 command.cfg ${RPM_BUILD_ROOT}/etc/nagios | 167 | build-aux/install-sh -c -m 664 command.cfg ${RPM_BUILD_ROOT}%{_sysconfdir} |
| 55 | %find_lang %{name} | 168 | %find_lang %{name} |
| 56 | 169 | echo "%defattr(755,%{npusr},%{npgrp})" >> %{name}.lang | |
| 170 | comm -13 %{npdir}/ls-plugins-before %{npdir}/ls-plugins-after | egrep -v "\.o$|^\." | gawk -v libexecdir=%{_libexecdir} '{printf( "%s/%s\n", libexecdir, $0);}' >> %{name}.lang | ||
| 171 | echo "%defattr(755,root,root)" >> %{name}.lang | ||
| 172 | comm -13 %{npdir}/ls-plugins-root-before %{npdir}/ls-plugins-root-after | egrep -v "\.o$|^\." | gawk -v libexecdir=%{_libexecdir} '{printf( "%s/%s\n", libexecdir, $0);}' >> %{name}.lang | ||
| 173 | echo "%defattr(755,%{npusr},%{npgrp})" >> %{name}.lang | ||
| 174 | comm -13 %{npdir}/ls-plugins-scripts-before %{npdir}/ls-plugins-scripts-after | egrep -v "\.o$|^\." | gawk -v libexecdir=%{_libexecdir} '{printf( "%s/%s\n", libexecdir, $0);}' >> %{name}.lang | ||
| 175 | echo "%{_libexecdir}/utils.pm" >> %{name}.lang | ||
| 176 | echo "%{_libexecdir}/utils.sh" >> %{name}.lang | ||
| 57 | 177 | ||
| 58 | %clean | 178 | %clean |
| 59 | rm -rf $RPM_BUILD_ROOT | 179 | rm -rf $RPM_BUILD_ROOT |
| 60 | 180 | ||
| 61 | 181 | ||
| 62 | %files -f %{name}.lang | 182 | %files -f %{name}.lang |
| 63 | %defattr(-,root,root) | 183 | %config(missingok,noreplace) %{_sysconfdir}/command.cfg |
| 64 | %config(missingok,noreplace) /etc/nagios/command.cfg | ||
| 65 | %doc CODING COPYING FAQ INSTALL LEGAL README REQUIREMENTS SUPPORT THANKS | 184 | %doc CODING COPYING FAQ INSTALL LEGAL README REQUIREMENTS SUPPORT THANKS |
| 66 | %doc ChangeLog command.cfg | 185 | %doc ChangeLog command.cfg |
| 67 | %defattr(775,root,root) | 186 | %if ! %{isaix} |
| 68 | %dir %{_exec_prefix}/lib/nagios/plugins | ||
| 69 | %{_datadir}/locale/de/LC_MESSAGES/nagios-plugins.mo | 187 | %{_datadir}/locale/de/LC_MESSAGES/nagios-plugins.mo |
| 70 | %{_datadir}/locale/fr/LC_MESSAGES/nagios-plugins.mo | 188 | %{_datadir}/locale/fr/LC_MESSAGES/nagios-plugins.mo |
| 71 | %{_exec_prefix}/lib/nagios/plugins | 189 | %endif |
| 72 | 190 | ||
| 73 | %changelog | 191 | %changelog |
| 74 | * Mon May 23 2005 Sean Finney <seanius@seanius.net> - cvs head | 192 | * Mon May 23 2005 Sean Finney <seanius@seanius.net> - cvs head |
diff --git a/perlmods/Nagios-Plugin-0.34.tar.gz b/perlmods/Nagios-Plugin-0.34.tar.gz deleted file mode 100644 index d3182d24..00000000 --- a/perlmods/Nagios-Plugin-0.34.tar.gz +++ /dev/null | |||
| Binary files differ | |||
diff --git a/perlmods/Nagios-Plugin-0.36.tar.gz b/perlmods/Nagios-Plugin-0.36.tar.gz new file mode 100644 index 00000000..811dcb91 --- /dev/null +++ b/perlmods/Nagios-Plugin-0.36.tar.gz | |||
| Binary files differ | |||
diff --git a/pkg/solaris/pkginfo.in b/pkg/solaris/pkginfo.in index c9dcced0..3bed3464 100644 --- a/pkg/solaris/pkginfo.in +++ b/pkg/solaris/pkginfo.in | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | PKG="NAGplugin" | 1 | PKG="NGOSplugin" |
| 2 | NAME="nagios-plugins" | 2 | NAME="nagios-plugins" |
| 3 | DESC="Nagios network monitoring plugins" | 3 | DESC="Nagios network monitoring plugins" |
| 4 | ARCH="@PKG_ARCH@" | 4 | ARCH="@PKG_ARCH@" |
diff --git a/pkg/solaris/preinstall b/pkg/solaris/preinstall new file mode 100755 index 00000000..c4cc2690 --- /dev/null +++ b/pkg/solaris/preinstall | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #!/usr/bin/sh | ||
| 2 | |||
| 3 | user="nagios" | ||
| 4 | uid=-1 | ||
| 5 | group="nagios" | ||
| 6 | gid=-1 | ||
| 7 | |||
| 8 | /usr/bin/getent group $group > /dev/null 2> /dev/null | ||
| 9 | result=$? | ||
| 10 | if [ $result -eq 2 ] ; then | ||
| 11 | echo "Group $group does not exist. Creating..." | ||
| 12 | if [ $gid -ne -1 ] ; then | ||
| 13 | /usr/sbin/groupadd -g $gid $group | ||
| 14 | else | ||
| 15 | /usr/sbin/groupadd $group | ||
| 16 | fi | ||
| 17 | elif [ $result -ne 0 ] ; then | ||
| 18 | echo "An error occurred determining the existence of the groug $group. Terminating." | ||
| 19 | exit 1; | ||
| 20 | fi | ||
| 21 | |||
| 22 | /usr/bin/getent passwd $user > /dev/null 2> /dev/null | ||
| 23 | result=$? | ||
| 24 | if [ $result -eq 2 ] ; then | ||
| 25 | echo "User $user does not exist. Creating..." | ||
| 26 | if [ $uid -ne -1 ] ; then | ||
| 27 | /usr/sbin/useradd -u $uid -g $group $user | ||
| 28 | else | ||
| 29 | /usr/sbin/useradd -g $group $user | ||
| 30 | fi | ||
| 31 | elif [ $result -ne 0 ] ; then | ||
| 32 | echo "An error occurred determining the existence of the user $user. Terminating." | ||
| 33 | exit 1; | ||
| 34 | fi | ||
| 35 | |||
diff --git a/pkg/solaris/solpkg b/pkg/solaris/solpkg index 41d8e177..a21176e4 100755 --- a/pkg/solaris/solpkg +++ b/pkg/solaris/solpkg | |||
| @@ -8,6 +8,7 @@ $pkgmk = "/usr/bin/pkgmk"; | |||
| 8 | $pkgtrans = "/usr/bin/pkgtrans"; | 8 | $pkgtrans = "/usr/bin/pkgtrans"; |
| 9 | $prototype = "prototype"; | 9 | $prototype = "prototype"; |
| 10 | $pkginfo = "pkginfo"; | 10 | $pkginfo = "pkginfo"; |
| 11 | $preinstall = "preinstall"; | ||
| 11 | $egrep = "/usr/bin/egrep"; | 12 | $egrep = "/usr/bin/egrep"; |
| 12 | 13 | ||
| 13 | # Sanity check | 14 | # Sanity check |
| @@ -24,17 +25,24 @@ open (PREPROTO,"$find . -print |$egrep -v \"^\.(/usr(/local)?|/opt)?\$\" | $pkgp | |||
| 24 | open (PROTO,">$prototype") || | 25 | open (PROTO,">$prototype") || |
| 25 | die "Unable to write file prototype ($!)\n"; | 26 | die "Unable to write file prototype ($!)\n"; |
| 26 | print PROTO "i pkginfo=./$pkginfo\n"; | 27 | print PROTO "i pkginfo=./$pkginfo\n"; |
| 28 | print PROTO "i preinstall=./$preinstall\n"; | ||
| 27 | while (<PREPROTO>) { | 29 | while (<PREPROTO>) { |
| 28 | # Read in the prototype information | 30 | # Read in the prototype information |
| 29 | chomp; | 31 | chomp; |
| 30 | $thisline = $_; | 32 | $thisline = $_; |
| 31 | if ($thisline =~ " prototype " | 33 | if ($thisline =~ " prototype " |
| 32 | or $thisline =~ " pkginfo ") { | 34 | or $thisline =~ " pkginfo " |
| 35 | or $thisline =~ " preinstall ") { | ||
| 33 | # Don't do anything as they aren't important | 36 | # Don't do anything as they aren't important |
| 37 | } elsif ($thisline =~ "pst3") { | ||
| 38 | # Needs to be installed SUID root | ||
| 39 | ($dir, $none, $file, $mode, $user, $group) = split / /,$thisline; | ||
| 40 | print PROTO "$dir $none $file 4755 root bin\n"; | ||
| 41 | |||
| 34 | } elsif ($thisline =~ "^[fd] ") { | 42 | } elsif ($thisline =~ "^[fd] ") { |
| 35 | # Change the ownership of files and directories | 43 | # Change the ownership of files and directories |
| 36 | ($dir, $none, $file, $mode, $user, $group) = split / /,$thisline; | 44 | ($dir, $none, $file, $mode, $user, $group) = split / /,$thisline; |
| 37 | print PROTO "$dir $none $file $mode bin bin\n"; | 45 | print PROTO "$dir $none $file $mode $user bin\n"; |
| 38 | } else { | 46 | } else { |
| 39 | # Symlinks and other stuff should be printed also | 47 | # Symlinks and other stuff should be printed also |
| 40 | print PROTO "$thisline\n"; | 48 | print PROTO "$thisline\n"; |
| @@ -58,6 +66,7 @@ while (<PKGINFO>) { | |||
| 58 | $thisline = $_; | 66 | $thisline = $_; |
| 59 | ($var,$value) = split /=/,$thisline; | 67 | ($var,$value) = split /=/,$thisline; |
| 60 | if ("$var" eq "NAME" | 68 | if ("$var" eq "NAME" |
| 69 | or "$var" eq "PKG" | ||
| 61 | or "$var" eq "VERSION" | 70 | or "$var" eq "VERSION" |
| 62 | or "$var" eq "ARCH") { | 71 | or "$var" eq "ARCH") { |
| 63 | $tmp = lc($var); | 72 | $tmp = lc($var); |
| @@ -77,5 +86,5 @@ $packagename = "$name-$version-$os-$arch-local"; | |||
| 77 | 86 | ||
| 78 | print "Building package\n"; | 87 | print "Building package\n"; |
| 79 | system ("$pkgmk -o -r `pwd` -d $pkgdevice"); | 88 | system ("$pkgmk -o -r `pwd` -d $pkgdevice"); |
| 80 | system ("(cd $pkgdevice && $pkgtrans -s `pwd` ../$packagename)"); | 89 | system ("(cd $pkgdevice && $pkgtrans -s `pwd` ../$packagename $pkg)"); |
| 81 | print "Done. ($packagename)\n"; | 90 | print "Done. ($packagename)\n"; |
diff --git a/plugins-scripts/check_sensors.sh b/plugins-scripts/check_sensors.sh index ae80fc44..ffaa9748 100755 --- a/plugins-scripts/check_sensors.sh +++ b/plugins-scripts/check_sensors.sh | |||
| @@ -10,7 +10,7 @@ REVISION="@NP_VERSION@" | |||
| 10 | 10 | ||
| 11 | 11 | ||
| 12 | print_usage() { | 12 | print_usage() { |
| 13 | echo "Usage: $PROGNAME" | 13 | echo "Usage: $PROGNAME" [--ignore-fault] |
| 14 | } | 14 | } |
| 15 | 15 | ||
| 16 | print_help() { | 16 | print_help() { |
| @@ -21,25 +21,25 @@ print_help() { | |||
| 21 | echo "This plugin checks hardware status using the lm_sensors package." | 21 | echo "This plugin checks hardware status using the lm_sensors package." |
| 22 | echo "" | 22 | echo "" |
| 23 | support | 23 | support |
| 24 | exit 0 | 24 | exit $STATE_OK |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | case "$1" in | 27 | case "$1" in |
| 28 | --help) | 28 | --help) |
| 29 | print_help | 29 | print_help |
| 30 | exit 0 | 30 | exit $STATE_OK |
| 31 | ;; | 31 | ;; |
| 32 | -h) | 32 | -h) |
| 33 | print_help | 33 | print_help |
| 34 | exit 0 | 34 | exit $STATE_OK |
| 35 | ;; | 35 | ;; |
| 36 | --version) | 36 | --version) |
| 37 | print_revision $PROGNAME $REVISION | 37 | print_revision $PROGNAME $REVISION |
| 38 | exit 0 | 38 | exit $STATE_OK |
| 39 | ;; | 39 | ;; |
| 40 | -V) | 40 | -V) |
| 41 | print_revision $PROGNAME $REVISION | 41 | print_revision $PROGNAME $REVISION |
| 42 | exit 0 | 42 | exit $STATE_OK |
| 43 | ;; | 43 | ;; |
| 44 | *) | 44 | *) |
| 45 | sensordata=`sensors 2>&1` | 45 | sensordata=`sensors 2>&1` |
| @@ -49,17 +49,20 @@ case "$1" in | |||
| 49 | fi | 49 | fi |
| 50 | if test ${status} -eq 127; then | 50 | if test ${status} -eq 127; then |
| 51 | echo "SENSORS UNKNOWN - command not found (did you install lmsensors?)" | 51 | echo "SENSORS UNKNOWN - command not found (did you install lmsensors?)" |
| 52 | exit -1 | 52 | exit $STATE_UNKNOWN |
| 53 | elif test ${status} -ne 0 ; then | 53 | elif test ${status} -ne 0; then |
| 54 | echo "WARNING - sensors returned state $status" | 54 | echo "WARNING - sensors returned state $status" |
| 55 | exit 1 | 55 | exit $STATE_WARNING |
| 56 | fi | 56 | fi |
| 57 | if echo ${sensordata} | egrep ALARM > /dev/null; then | 57 | if echo ${sensordata} | egrep ALARM > /dev/null; then |
| 58 | echo SENSOR CRITICAL - Sensor alarm detected! | 58 | echo SENSOR CRITICAL - Sensor alarm detected! |
| 59 | exit 2 | 59 | exit $STATE_CRITICAL |
| 60 | else | 60 | elif echo ${sensordata} | egrep FAULT > /dev/null \ |
| 61 | echo sensor ok | 61 | && test "$1" != "-i" -a "$1" != "--ignore-fault"; then |
| 62 | exit 0 | 62 | echo SENSOR UNKNOWN - Sensor reported fault |
| 63 | exit $STATE_UNKNOWN | ||
| 63 | fi | 64 | fi |
| 65 | echo sensor ok | ||
| 66 | exit $STATE_OK | ||
| 64 | ;; | 67 | ;; |
| 65 | esac | 68 | esac |
diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c index ff27b396..87520166 100644 --- a/plugins/check_by_ssh.c +++ b/plugins/check_by_ssh.c | |||
| @@ -187,6 +187,7 @@ process_arguments (int argc, char **argv) | |||
| 187 | {"use-ipv6", no_argument, 0, '6'}, | 187 | {"use-ipv6", no_argument, 0, '6'}, |
| 188 | {"ssh-option", required_argument, 0, 'o'}, | 188 | {"ssh-option", required_argument, 0, 'o'}, |
| 189 | {"quiet", no_argument, 0, 'q'}, | 189 | {"quiet", no_argument, 0, 'q'}, |
| 190 | {"configfile", optional_argument, 0, 'F'}, | ||
| 190 | {0, 0, 0, 0} | 191 | {0, 0, 0, 0} |
| 191 | }; | 192 | }; |
| 192 | 193 | ||
| @@ -198,7 +199,7 @@ process_arguments (int argc, char **argv) | |||
| 198 | strcpy (argv[c], "-t"); | 199 | strcpy (argv[c], "-t"); |
| 199 | 200 | ||
| 200 | while (1) { | 201 | while (1) { |
| 201 | c = getopt_long (argc, argv, "Vvh1246fqt:H:O:p:i:u:l:C:S::E::n:s:o:", longopts, | 202 | c = getopt_long (argc, argv, "Vvh1246fqt:H:O:p:i:u:l:C:S::E::n:s:o:F:", longopts, |
| 202 | &option); | 203 | &option); |
| 203 | 204 | ||
| 204 | if (c == -1 || c == EOF) | 205 | if (c == -1 || c == EOF) |
| @@ -306,6 +307,10 @@ process_arguments (int argc, char **argv) | |||
| 306 | case 'q': /* Tell the ssh command to be quiet */ | 307 | case 'q': /* Tell the ssh command to be quiet */ |
| 307 | comm_append("-q"); | 308 | comm_append("-q"); |
| 308 | break; | 309 | break; |
| 310 | case 'F': /* ssh configfile */ | ||
| 311 | comm_append("-F"); | ||
| 312 | comm_append(optarg); | ||
| 313 | break; | ||
| 309 | default: /* help */ | 314 | default: /* help */ |
| 310 | usage5(); | 315 | usage5(); |
| 311 | } | 316 | } |
| @@ -418,6 +423,8 @@ print_help (void) | |||
| 418 | printf (" %s\n", _("short name of host in nagios configuration [optional]")); | 423 | printf (" %s\n", _("short name of host in nagios configuration [optional]")); |
| 419 | printf (" %s\n","-o, --ssh-option=OPTION"); | 424 | printf (" %s\n","-o, --ssh-option=OPTION"); |
| 420 | printf (" %s\n", _("Call ssh with '-o OPTION' (may be used multiple times) [optional]")); | 425 | printf (" %s\n", _("Call ssh with '-o OPTION' (may be used multiple times) [optional]")); |
| 426 | printf (" %s\n","-F, --configfile"); | ||
| 427 | printf (" %s\n", _("Tell ssh to use this configfile [optional]")); | ||
| 421 | printf (" %s\n","-q, --quiet"); | 428 | printf (" %s\n","-q, --quiet"); |
| 422 | printf (" %s\n", _("Tell ssh to suppress warning and diagnostic messages [optional]")); | 429 | printf (" %s\n", _("Tell ssh to suppress warning and diagnostic messages [optional]")); |
| 423 | printf (UT_WARN_CRIT); | 430 | printf (UT_WARN_CRIT); |
| @@ -454,6 +461,6 @@ print_usage (void) | |||
| 454 | printf (" %s -H <host> -C <command> [-fqv] [-1|-2] [-4|-6]\n" | 461 | printf (" %s -H <host> -C <command> [-fqv] [-1|-2] [-4|-6]\n" |
| 455 | " [-S [lines]] [-E [lines]] [-t timeout] [-i identity]\n" | 462 | " [-S [lines]] [-E [lines]] [-t timeout] [-i identity]\n" |
| 456 | " [-l user] [-n name] [-s servicelist] [-O outputfile]\n" | 463 | " [-l user] [-n name] [-s servicelist] [-O outputfile]\n" |
| 457 | " [-p port] [-o ssh-option]\n", | 464 | " [-p port] [-o ssh-option] [-F configfile]\n", |
| 458 | progname); | 465 | progname); |
| 459 | } | 466 | } |
diff --git a/plugins/check_http.c b/plugins/check_http.c index 433c28e3..3175f6cb 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
| @@ -1400,6 +1400,10 @@ print_help (void) | |||
| 1400 | printf (" %s\n", _("serve content (optionally within a specified time) or whether the X509 ")); | 1400 | printf (" %s\n", _("serve content (optionally within a specified time) or whether the X509 ")); |
| 1401 | printf (" %s\n", _("certificate is still valid for the specified number of days.")); | 1401 | printf (" %s\n", _("certificate is still valid for the specified number of days.")); |
| 1402 | printf ("\n"); | 1402 | printf ("\n"); |
| 1403 | printf (" %s\n", _("Please note that this plugin does not check if the presented server")); | ||
| 1404 | printf (" %s\n", _("certificate matches the hostname of the server, or if the certificate")); | ||
| 1405 | printf (" %s\n", _("has a valid chain of trust to one of the locally installed CAs.")); | ||
| 1406 | printf ("\n"); | ||
| 1403 | printf ("%s\n", _("Examples:")); | 1407 | printf ("%s\n", _("Examples:")); |
| 1404 | printf (" %s\n\n", "CHECK CONTENT: check_http -w 5 -c 10 --ssl -H www.verisign.com"); | 1408 | printf (" %s\n\n", "CHECK CONTENT: check_http -w 5 -c 10 --ssl -H www.verisign.com"); |
| 1405 | printf (" %s\n", _("When the 'www.verisign.com' server returns its content within 5 seconds,")); | 1409 | printf (" %s\n", _("When the 'www.verisign.com' server returns its content within 5 seconds,")); |
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index 61d84fb8..c2c93eeb 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c | |||
| @@ -211,7 +211,7 @@ main (int argc, char **argv) | |||
| 211 | if (result == OK_RC) | 211 | if (result == OK_RC) |
| 212 | die (STATE_OK, _("Auth OK")); | 212 | die (STATE_OK, _("Auth OK")); |
| 213 | (void)snprintf(msg, sizeof(msg), _("Unexpected result code %d"), result); | 213 | (void)snprintf(msg, sizeof(msg), _("Unexpected result code %d"), result); |
| 214 | die (STATE_UNKNOWN, msg); | 214 | die (STATE_UNKNOWN, "%s", msg); |
| 215 | } | 215 | } |
| 216 | 216 | ||
| 217 | 217 | ||
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index d79da8cf..4cd38051 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
| @@ -740,7 +740,7 @@ process_arguments (int argc, char **argv) | |||
| 740 | labels[nlabels - 1] = optarg; | 740 | labels[nlabels - 1] = optarg; |
| 741 | ptr = thisarg (optarg); | 741 | ptr = thisarg (optarg); |
| 742 | labels[nlabels - 1] = ptr; | 742 | labels[nlabels - 1] = ptr; |
| 743 | if (strstr (ptr, "'") == ptr) | 743 | if (ptr[0] == '\'') |
| 744 | labels[nlabels - 1] = ptr + 1; | 744 | labels[nlabels - 1] = ptr + 1; |
| 745 | while (ptr && (ptr = nextarg (ptr))) { | 745 | while (ptr && (ptr = nextarg (ptr))) { |
| 746 | if (nlabels >= labels_size) { | 746 | if (nlabels >= labels_size) { |
| @@ -749,9 +749,9 @@ process_arguments (int argc, char **argv) | |||
| 749 | if (labels == NULL) | 749 | if (labels == NULL) |
| 750 | die (STATE_UNKNOWN, _("Could not reallocate labels\n")); | 750 | die (STATE_UNKNOWN, _("Could not reallocate labels\n")); |
| 751 | } | 751 | } |
| 752 | labels++; | 752 | nlabels++; |
| 753 | ptr = thisarg (ptr); | 753 | ptr = thisarg (ptr); |
| 754 | if (strstr (ptr, "'") == ptr) | 754 | if (ptr[0] == '\'') |
| 755 | labels[nlabels - 1] = ptr + 1; | 755 | labels[nlabels - 1] = ptr + 1; |
| 756 | else | 756 | else |
| 757 | labels[nlabels - 1] = ptr; | 757 | labels[nlabels - 1] = ptr; |
| @@ -769,7 +769,7 @@ process_arguments (int argc, char **argv) | |||
| 769 | unitv[nunits - 1] = optarg; | 769 | unitv[nunits - 1] = optarg; |
| 770 | ptr = thisarg (optarg); | 770 | ptr = thisarg (optarg); |
| 771 | unitv[nunits - 1] = ptr; | 771 | unitv[nunits - 1] = ptr; |
| 772 | if (strstr (ptr, "'") == ptr) | 772 | if (ptr[0] == '\'') |
| 773 | unitv[nunits - 1] = ptr + 1; | 773 | unitv[nunits - 1] = ptr + 1; |
| 774 | while (ptr && (ptr = nextarg (ptr))) { | 774 | while (ptr && (ptr = nextarg (ptr))) { |
| 775 | if (nunits >= unitv_size) { | 775 | if (nunits >= unitv_size) { |
| @@ -780,7 +780,7 @@ process_arguments (int argc, char **argv) | |||
| 780 | } | 780 | } |
| 781 | nunits++; | 781 | nunits++; |
| 782 | ptr = thisarg (ptr); | 782 | ptr = thisarg (ptr); |
| 783 | if (strstr (ptr, "'") == ptr) | 783 | if (ptr[0] == '\'') |
| 784 | unitv[nunits - 1] = ptr + 1; | 784 | unitv[nunits - 1] = ptr + 1; |
| 785 | else | 785 | else |
| 786 | unitv[nunits - 1] = ptr; | 786 | unitv[nunits - 1] = ptr; |
| @@ -935,7 +935,7 @@ char * | |||
| 935 | thisarg (char *str) | 935 | thisarg (char *str) |
| 936 | { | 936 | { |
| 937 | str += strspn (str, " \t\r\n"); /* trim any leading whitespace */ | 937 | str += strspn (str, " \t\r\n"); /* trim any leading whitespace */ |
| 938 | if (strstr (str, "'") == str) { /* handle SIMPLE quoted strings */ | 938 | if (str[0] == '\'') { /* handle SIMPLE quoted strings */ |
| 939 | if (strlen (str) == 1 || !strstr (str + 1, "'")) | 939 | if (strlen (str) == 1 || !strstr (str + 1, "'")) |
| 940 | die (STATE_UNKNOWN, _("Unbalanced quotes\n")); | 940 | die (STATE_UNKNOWN, _("Unbalanced quotes\n")); |
| 941 | } | 941 | } |
| @@ -951,7 +951,7 @@ thisarg (char *str) | |||
| 951 | char * | 951 | char * |
| 952 | nextarg (char *str) | 952 | nextarg (char *str) |
| 953 | { | 953 | { |
| 954 | if (strstr (str, "'") == str) { | 954 | if (str[0] == '\'') { |
| 955 | str[0] = 0; | 955 | str[0] = 0; |
| 956 | if (strlen (str) > 1) { | 956 | if (strlen (str) > 1) { |
| 957 | str = strstr (str + 1, "'"); | 957 | str = strstr (str + 1, "'"); |
| @@ -961,7 +961,7 @@ nextarg (char *str) | |||
| 961 | return NULL; | 961 | return NULL; |
| 962 | } | 962 | } |
| 963 | } | 963 | } |
| 964 | if (strstr (str, ",") == str) { | 964 | if (str[0] == ',') { |
| 965 | str[0] = 0; | 965 | str[0] = 0; |
| 966 | if (strlen (str) > 1) { | 966 | if (strlen (str) > 1) { |
| 967 | return (++str); | 967 | return (++str); |
| @@ -1072,8 +1072,8 @@ print_help (void) | |||
| 1072 | 1072 | ||
| 1073 | printf ("\n"); | 1073 | printf ("\n"); |
| 1074 | printf ("%s\n", _("Notes:")); | 1074 | printf ("%s\n", _("Notes:")); |
| 1075 | printf (" %s\n", _("- Multiple OIDs may be indicated by a comma or space-delimited list (lists with")); | 1075 | printf (" %s\n", _("- Multiple OIDs (and labels) may be indicated by a comma or space-delimited ")); |
| 1076 | printf (" %s %i %s\n", _("internal spaces must be quoted). Maximum:"), MAX_OIDS, _("OIDs.")); | 1076 | printf (" %s %i %s\n", _("list (lists with internal spaces must be quoted). Maximum:"), MAX_OIDS, _("OIDs.")); |
| 1077 | 1077 | ||
| 1078 | printf(" -%s", UT_THRESHOLDS_NOTES); | 1078 | printf(" -%s", UT_THRESHOLDS_NOTES); |
| 1079 | 1079 | ||
diff --git a/plugins/common.h b/plugins/common.h index dfc09416..09af7e7e 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
| @@ -59,6 +59,12 @@ | |||
| 59 | #include <math.h> | 59 | #include <math.h> |
| 60 | #endif | 60 | #endif |
| 61 | 61 | ||
| 62 | #ifdef _AIX | ||
| 63 | #ifdef HAVE_MP_H | ||
| 64 | #include <mp.h> | ||
| 65 | #endif | ||
| 66 | #endif | ||
| 67 | |||
| 62 | #ifdef HAVE_STRINGS_H | 68 | #ifdef HAVE_STRINGS_H |
| 63 | #include <strings.h> | 69 | #include <strings.h> |
| 64 | #endif | 70 | #endif |
diff --git a/plugins/t/check_by_ssh.t b/plugins/t/check_by_ssh.t index 5f2c534d..cca72c96 100644 --- a/plugins/t/check_by_ssh.t +++ b/plugins/t/check_by_ssh.t | |||
| @@ -17,9 +17,14 @@ my $ssh_key = getTestParameter( "NP_SSH_IDENTITY", | |||
| 17 | "A key allowing access to NP_SSH_HOST", | 17 | "A key allowing access to NP_SSH_HOST", |
| 18 | "~/.ssh/id_dsa"); | 18 | "~/.ssh/id_dsa"); |
| 19 | 19 | ||
| 20 | my $ssh_conf = getTestParameter( "NP_SSH_CONFIGFILE", | ||
| 21 | "A config file with ssh settings", | ||
| 22 | "~/.ssh/config"); | ||
| 23 | |||
| 24 | |||
| 20 | plan skip_all => "SSH_HOST and SSH_IDENTITY must be defined" unless ($ssh_service && $ssh_key); | 25 | plan skip_all => "SSH_HOST and SSH_IDENTITY must be defined" unless ($ssh_service && $ssh_key); |
| 21 | 26 | ||
| 22 | plan tests => 40; | 27 | plan tests => 42; |
| 23 | 28 | ||
| 24 | # Some random check strings/response | 29 | # Some random check strings/response |
| 25 | my @responce = ('OK: Everything is fine!', | 30 | my @responce = ('OK: Everything is fine!', |
| @@ -85,6 +90,12 @@ $result = NPTest->testCmd( | |||
| 85 | cmp_ok($result->return_code, '==', 8, "Exit with return code 8 (out of bounds)"); | 90 | cmp_ok($result->return_code, '==', 8, "Exit with return code 8 (out of bounds)"); |
| 86 | is($result->output, $responce[4], "Return proper status text even with unknown status codes"); | 91 | is($result->output, $responce[4], "Return proper status text even with unknown status codes"); |
| 87 | 92 | ||
| 93 | $result = NPTest->testCmd( | ||
| 94 | "./check_by_ssh -i $ssh_key -H $ssh_service -F $ssh_conf -C 'exit 0'" | ||
| 95 | ); | ||
| 96 | cmp_ok($result->return_code, '==', 0, "Exit with return code 0 (OK)"); | ||
| 97 | is($result->output, 'OK - check_by_ssh: Remote command \'exit 0\' returned status 0', "Status text if command returned none (OK)"); | ||
| 98 | |||
| 88 | # Multiple active checks | 99 | # Multiple active checks |
| 89 | $result = NPTest->testCmd( | 100 | $result = NPTest->testCmd( |
| 90 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[1]; sh -c exit\\ 1' -C '$check[0]; sh -c exit\\ 0' -C '$check[3]; sh -c exit\\ 3' -C '$check[2]; sh -c exit\\ 2'" | 101 | "./check_by_ssh -i $ssh_key -H $ssh_service -C '$check[1]; sh -c exit\\ 1' -C '$check[0]; sh -c exit\\ 0' -C '$check[3]; sh -c exit\\ 3' -C '$check[2]; sh -c exit\\ 2'" |
diff --git a/po/nagios-plugins.pot b/po/nagios-plugins.pot index 7d92b58a..53ccf508 100644 --- a/po/nagios-plugins.pot +++ b/po/nagios-plugins.pot | |||
| @@ -8,7 +8,7 @@ msgid "" | |||
| 8 | msgstr "" | 8 | msgstr "" |
| 9 | "Project-Id-Version: PACKAGE VERSION\n" | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
| 10 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" | 10 | "Report-Msgid-Bugs-To: nagiosplug-devel@lists.sourceforge.net\n" |
| 11 | "POT-Creation-Date: 2010-07-09 19:30-0400\n" | 11 | "POT-Creation-Date: 2012-02-16 17:35-0600\n" |
| 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 14 | "Language-Team: LANGUAGE <LL@li.org>\n" | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| @@ -18,16 +18,16 @@ msgstr "" | |||
| 18 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | 18 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" |
| 19 | 19 | ||
| 20 | #: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:87 | 20 | #: plugins/check_by_ssh.c:86 plugins/check_cluster.c:76 plugins/check_dig.c:87 |
| 21 | #: plugins/check_disk.c:192 plugins/check_dns.c:102 plugins/check_dummy.c:52 | 21 | #: plugins/check_disk.c:190 plugins/check_dns.c:102 plugins/check_dummy.c:52 |
| 22 | #: plugins/check_fping.c:89 plugins/check_game.c:82 plugins/check_hpjd.c:103 | 22 | #: plugins/check_fping.c:89 plugins/check_game.c:82 plugins/check_hpjd.c:103 |
| 23 | #: plugins/check_http.c:157 plugins/check_ldap.c:109 plugins/check_load.c:122 | 23 | #: plugins/check_http.c:156 plugins/check_ldap.c:109 plugins/check_load.c:122 |
| 24 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:85 | 24 | #: plugins/check_mrtgtraf.c:83 plugins/check_mysql.c:85 |
| 25 | #: plugins/check_nagios.c:91 plugins/check_nt.c:126 plugins/check_ntp.c:766 | 25 | #: plugins/check_nagios.c:91 plugins/check_nt.c:126 plugins/check_ntp.c:766 |
| 26 | #: plugins/check_ntp_peer.c:569 plugins/check_ntp_time.c:548 | 26 | #: plugins/check_ntp_peer.c:569 plugins/check_ntp_time.c:548 |
| 27 | #: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 | 27 | #: plugins/check_nwstat.c:173 plugins/check_overcr.c:102 |
| 28 | #: plugins/check_pgsql.c:154 plugins/check_ping.c:95 plugins/check_procs.c:147 | 28 | #: plugins/check_pgsql.c:154 plugins/check_ping.c:95 plugins/check_procs.c:147 |
| 29 | #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:140 | 29 | #: plugins/check_radius.c:160 plugins/check_real.c:80 plugins/check_smtp.c:144 |
| 30 | #: plugins/check_snmp.c:205 plugins/check_ssh.c:73 plugins/check_swap.c:110 | 30 | #: plugins/check_snmp.c:204 plugins/check_ssh.c:73 plugins/check_swap.c:110 |
| 31 | #: plugins/check_tcp.c:209 plugins/check_time.c:78 plugins/check_ups.c:122 | 31 | #: plugins/check_tcp.c:209 plugins/check_time.c:78 plugins/check_ups.c:122 |
| 32 | #: plugins/check_users.c:68 plugins/negate.c:211 plugins-root/check_dhcp.c:270 | 32 | #: plugins/check_users.c:68 plugins/negate.c:211 plugins-root/check_dhcp.c:270 |
| 33 | msgid "Could not parse arguments" | 33 | msgid "Could not parse arguments" |
| @@ -59,18 +59,18 @@ msgstr "" | |||
| 59 | msgid "%s: Error parsing output\n" | 59 | msgid "%s: Error parsing output\n" |
| 60 | msgstr "" | 60 | msgstr "" |
| 61 | 61 | ||
| 62 | #: plugins/check_by_ssh.c:219 plugins/check_disk.c:525 | 62 | #: plugins/check_by_ssh.c:219 plugins/check_disk.c:467 |
| 63 | #: plugins/check_http.c:256 plugins/check_ldap.c:293 plugins/check_pgsql.c:250 | 63 | #: plugins/check_http.c:255 plugins/check_ldap.c:293 plugins/check_pgsql.c:250 |
| 64 | #: plugins/check_procs.c:364 plugins/check_radius.c:308 | 64 | #: plugins/check_procs.c:366 plugins/check_radius.c:308 |
| 65 | #: plugins/check_real.c:356 plugins/check_smtp.c:587 plugins/check_snmp.c:665 | 65 | #: plugins/check_real.c:356 plugins/check_smtp.c:592 plugins/check_snmp.c:661 |
| 66 | #: plugins/check_ssh.c:138 plugins/check_tcp.c:490 plugins/check_time.c:302 | 66 | #: plugins/check_ssh.c:138 plugins/check_tcp.c:487 plugins/check_time.c:302 |
| 67 | #: plugins/check_ups.c:556 plugins/negate.c:161 | 67 | #: plugins/check_ups.c:556 plugins/negate.c:161 |
| 68 | msgid "Timeout interval must be a positive integer" | 68 | msgid "Timeout interval must be a positive integer" |
| 69 | msgstr "" | 69 | msgstr "" |
| 70 | 70 | ||
| 71 | #: plugins/check_by_ssh.c:229 plugins/check_pgsql.c:274 | 71 | #: plugins/check_by_ssh.c:229 plugins/check_pgsql.c:274 |
| 72 | #: plugins/check_radius.c:272 plugins/check_real.c:327 | 72 | #: plugins/check_radius.c:272 plugins/check_real.c:327 |
| 73 | #: plugins/check_smtp.c:514 plugins/check_tcp.c:496 plugins/check_time.c:296 | 73 | #: plugins/check_smtp.c:516 plugins/check_tcp.c:493 plugins/check_time.c:296 |
| 74 | #: plugins/check_ups.c:518 | 74 | #: plugins/check_ups.c:518 |
| 75 | msgid "Port must be a positive integer" | 75 | msgid "Port must be a positive integer" |
| 76 | msgstr "" | 76 | msgstr "" |
| @@ -211,26 +211,26 @@ msgid "" | |||
| 211 | msgstr "" | 211 | msgstr "" |
| 212 | 212 | ||
| 213 | #: plugins/check_by_ssh.c:438 plugins/check_cluster.c:261 | 213 | #: plugins/check_by_ssh.c:438 plugins/check_cluster.c:261 |
| 214 | #: plugins/check_dig.c:342 plugins/check_disk.c:963 plugins/check_http.c:1415 | 214 | #: plugins/check_dig.c:342 plugins/check_disk.c:905 plugins/check_http.c:1403 |
| 215 | #: plugins/check_nagios.c:302 plugins/check_ntp.c:864 | 215 | #: plugins/check_nagios.c:302 plugins/check_ntp.c:864 |
| 216 | #: plugins/check_ntp_peer.c:698 plugins/check_ntp_time.c:628 | 216 | #: plugins/check_ntp_peer.c:698 plugins/check_ntp_time.c:628 |
| 217 | #: plugins/check_procs.c:742 plugins/negate.c:268 plugins/urlize.c:180 | 217 | #: plugins/check_procs.c:751 plugins/negate.c:268 plugins/urlize.c:180 |
| 218 | msgid "Examples:" | 218 | msgid "Examples:" |
| 219 | msgstr "" | 219 | msgstr "" |
| 220 | 220 | ||
| 221 | #: plugins/check_by_ssh.c:453 plugins/check_cluster.c:274 | 221 | #: plugins/check_by_ssh.c:453 plugins/check_cluster.c:274 |
| 222 | #: plugins/check_dig.c:354 plugins/check_disk.c:980 plugins/check_dns.c:486 | 222 | #: plugins/check_dig.c:354 plugins/check_disk.c:922 plugins/check_dns.c:486 |
| 223 | #: plugins/check_dummy.c:122 plugins/check_fping.c:432 | 223 | #: plugins/check_dummy.c:122 plugins/check_fping.c:432 |
| 224 | #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1438 | 224 | #: plugins/check_game.c:331 plugins/check_hpjd.c:414 plugins/check_http.c:1426 |
| 225 | #: plugins/check_ldap.c:452 plugins/check_load.c:325 plugins/check_mrtg.c:382 | 225 | #: plugins/check_ldap.c:456 plugins/check_load.c:325 plugins/check_mrtg.c:382 |
| 226 | #: plugins/check_mysql.c:425 plugins/check_nagios.c:313 plugins/check_nt.c:759 | 226 | #: plugins/check_mysql.c:425 plugins/check_nagios.c:313 plugins/check_nt.c:764 |
| 227 | #: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:718 | 227 | #: plugins/check_ntp.c:883 plugins/check_ntp_peer.c:718 |
| 228 | #: plugins/check_ntp_time.c:637 plugins/check_nwstat.c:1685 | 228 | #: plugins/check_ntp_time.c:637 plugins/check_nwstat.c:1685 |
| 229 | #: plugins/check_overcr.c:467 plugins/check_pgsql.c:477 | 229 | #: plugins/check_overcr.c:467 plugins/check_pgsql.c:477 |
| 230 | #: plugins/check_ping.c:601 plugins/check_procs.c:760 | 230 | #: plugins/check_ping.c:601 plugins/check_procs.c:769 |
| 231 | #: plugins/check_radius.c:385 plugins/check_real.c:451 | 231 | #: plugins/check_radius.c:385 plugins/check_real.c:451 |
| 232 | #: plugins/check_smtp.c:821 plugins/check_snmp.c:1107 plugins/check_ssh.c:302 | 232 | #: plugins/check_smtp.c:840 plugins/check_snmp.c:1103 plugins/check_ssh.c:309 |
| 233 | #: plugins/check_swap.c:558 plugins/check_tcp.c:651 plugins/check_time.c:371 | 233 | #: plugins/check_swap.c:558 plugins/check_tcp.c:648 plugins/check_time.c:371 |
| 234 | #: plugins/check_ups.c:660 plugins/check_users.c:229 | 234 | #: plugins/check_ups.c:660 plugins/check_users.c:229 |
| 235 | #: plugins/check_ide_smart.c:527 plugins/negate.c:292 plugins/urlize.c:197 | 235 | #: plugins/check_ide_smart.c:527 plugins/negate.c:292 plugins/urlize.c:197 |
| 236 | #: plugins-root/check_dhcp.c:1421 plugins-root/check_icmp.c:1347 | 236 | #: plugins-root/check_dhcp.c:1421 plugins-root/check_icmp.c:1347 |
| @@ -242,7 +242,7 @@ msgstr "" | |||
| 242 | msgid "Host/Service Cluster Plugin for Nagios 2" | 242 | msgid "Host/Service Cluster Plugin for Nagios 2" |
| 243 | msgstr "" | 243 | msgstr "" |
| 244 | 244 | ||
| 245 | #: plugins/check_cluster.c:236 plugins/check_nt.c:661 | 245 | #: plugins/check_cluster.c:236 plugins/check_nt.c:666 |
| 246 | msgid "Options:" | 246 | msgid "Options:" |
| 247 | msgstr "" | 247 | msgstr "" |
| 248 | 248 | ||
| @@ -279,11 +279,11 @@ msgid "commas" | |||
| 279 | msgstr "" | 279 | msgstr "" |
| 280 | 280 | ||
| 281 | #: plugins/check_cluster.c:257 plugins/check_game.c:318 | 281 | #: plugins/check_cluster.c:257 plugins/check_game.c:318 |
| 282 | #: plugins/check_http.c:1401 plugins/check_ldap.c:434 plugins/check_mrtg.c:363 | 282 | #: plugins/check_http.c:1389 plugins/check_ldap.c:438 plugins/check_mrtg.c:363 |
| 283 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:414 | 283 | #: plugins/check_mrtgtraf.c:361 plugins/check_mysql.c:414 |
| 284 | #: plugins/check_nt.c:743 plugins/check_ntp.c:860 plugins/check_ntp_peer.c:689 | 284 | #: plugins/check_nt.c:748 plugins/check_ntp.c:860 plugins/check_ntp_peer.c:689 |
| 285 | #: plugins/check_ntp_time.c:621 plugins/check_nwstat.c:1670 | 285 | #: plugins/check_ntp_time.c:621 plugins/check_nwstat.c:1670 |
| 286 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1078 | 286 | #: plugins/check_overcr.c:456 plugins/check_snmp.c:1074 |
| 287 | #: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:274 | 287 | #: plugins/check_swap.c:547 plugins/check_ups.c:642 plugins/negate.c:274 |
| 288 | #: plugins-root/check_icmp.c:1322 | 288 | #: plugins-root/check_icmp.c:1322 |
| 289 | msgid "Notes:" | 289 | msgid "Notes:" |
| @@ -365,12 +365,12 @@ msgstr "" | |||
| 365 | msgid "Pass STRING as argument(s) to dig" | 365 | msgid "Pass STRING as argument(s) to dig" |
| 366 | msgstr "" | 366 | msgstr "" |
| 367 | 367 | ||
| 368 | #: plugins/check_disk.c:214 | 368 | #: plugins/check_disk.c:212 |
| 369 | #, c-format | 369 | #, c-format |
| 370 | msgid "DISK %s: %s not found\n" | 370 | msgid "DISK %s: %s not found\n" |
| 371 | msgstr "" | 371 | msgstr "" |
| 372 | 372 | ||
| 373 | #: plugins/check_disk.c:214 plugins/check_disk.c:995 plugins/check_dns.c:241 | 373 | #: plugins/check_disk.c:212 plugins/check_disk.c:937 plugins/check_dns.c:241 |
| 374 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:212 | 374 | #: plugins/check_dummy.c:74 plugins/check_mysql.c:212 |
| 375 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 | 375 | #: plugins/check_nagios.c:104 plugins/check_nagios.c:168 |
| 376 | #: plugins/check_nagios.c:172 plugins/check_procs.c:290 | 376 | #: plugins/check_nagios.c:172 plugins/check_procs.c:290 |
| @@ -378,208 +378,208 @@ msgstr "" | |||
| 378 | msgid "CRITICAL" | 378 | msgid "CRITICAL" |
| 379 | msgstr "" | 379 | msgstr "" |
| 380 | 380 | ||
| 381 | #: plugins/check_disk.c:599 | 381 | #: plugins/check_disk.c:541 |
| 382 | #, c-format | 382 | #, c-format |
| 383 | msgid "unit type %s not known\n" | 383 | msgid "unit type %s not known\n" |
| 384 | msgstr "" | 384 | msgstr "" |
| 385 | 385 | ||
| 386 | #: plugins/check_disk.c:602 | 386 | #: plugins/check_disk.c:544 |
| 387 | #, c-format | 387 | #, c-format |
| 388 | msgid "failed allocating storage for '%s'\n" | 388 | msgid "failed allocating storage for '%s'\n" |
| 389 | msgstr "" | 389 | msgstr "" |
| 390 | 390 | ||
| 391 | #: plugins/check_disk.c:626 plugins/check_disk.c:664 plugins/check_disk.c:669 | 391 | #: plugins/check_disk.c:568 plugins/check_disk.c:606 plugins/check_disk.c:611 |
| 392 | #: plugins/check_disk.c:676 plugins/check_disk.c:680 plugins/check_disk.c:720 | 392 | #: plugins/check_disk.c:618 plugins/check_disk.c:622 plugins/check_disk.c:662 |
| 393 | #: plugins/check_disk.c:726 plugins/check_disk.c:745 plugins/check_dummy.c:77 | 393 | #: plugins/check_disk.c:668 plugins/check_disk.c:687 plugins/check_dummy.c:77 |
| 394 | #: plugins/check_dummy.c:80 plugins/check_procs.c:451 | 394 | #: plugins/check_dummy.c:80 plugins/check_procs.c:453 |
| 395 | #, c-format | 395 | #, c-format |
| 396 | msgid "UNKNOWN" | 396 | msgid "UNKNOWN" |
| 397 | msgstr "" | 397 | msgstr "" |
| 398 | 398 | ||
| 399 | #: plugins/check_disk.c:626 | 399 | #: plugins/check_disk.c:568 |
| 400 | msgid "Must set a threshold value before using -p\n" | 400 | msgid "Must set a threshold value before using -p\n" |
| 401 | msgstr "" | 401 | msgstr "" |
| 402 | 402 | ||
| 403 | #: plugins/check_disk.c:664 | 403 | #: plugins/check_disk.c:606 |
| 404 | msgid "Must set -E before selecting paths\n" | 404 | msgid "Must set -E before selecting paths\n" |
| 405 | msgstr "" | 405 | msgstr "" |
| 406 | 406 | ||
| 407 | #: plugins/check_disk.c:669 | 407 | #: plugins/check_disk.c:611 |
| 408 | msgid "Must set group value before selecting paths\n" | 408 | msgid "Must set group value before selecting paths\n" |
| 409 | msgstr "" | 409 | msgstr "" |
| 410 | 410 | ||
| 411 | #: plugins/check_disk.c:676 | 411 | #: plugins/check_disk.c:618 |
| 412 | msgid "" | 412 | msgid "" |
| 413 | "Paths need to be selected before using -i/-I. Use -A to select all paths " | 413 | "Paths need to be selected before using -i/-I. Use -A to select all paths " |
| 414 | "explicitly" | 414 | "explicitly" |
| 415 | msgstr "" | 415 | msgstr "" |
| 416 | 416 | ||
| 417 | #: plugins/check_disk.c:680 plugins/check_disk.c:726 plugins/check_procs.c:451 | 417 | #: plugins/check_disk.c:622 plugins/check_disk.c:668 plugins/check_procs.c:453 |
| 418 | msgid "Could not compile regular expression" | 418 | msgid "Could not compile regular expression" |
| 419 | msgstr "" | 419 | msgstr "" |
| 420 | 420 | ||
| 421 | #: plugins/check_disk.c:720 | 421 | #: plugins/check_disk.c:662 |
| 422 | msgid "Must set a threshold value before using -r/-R\n" | 422 | msgid "Must set a threshold value before using -r/-R\n" |
| 423 | msgstr "" | 423 | msgstr "" |
| 424 | 424 | ||
| 425 | #: plugins/check_disk.c:746 | 425 | #: plugins/check_disk.c:688 |
| 426 | msgid "Regular expression did not match any path or disk" | 426 | msgid "Regular expression did not match any path or disk" |
| 427 | msgstr "" | 427 | msgstr "" |
| 428 | 428 | ||
| 429 | #: plugins/check_disk.c:792 | 429 | #: plugins/check_disk.c:734 |
| 430 | msgid "Unknown argument" | 430 | msgid "Unknown argument" |
| 431 | msgstr "" | 431 | msgstr "" |
| 432 | 432 | ||
| 433 | #: plugins/check_disk.c:826 | 433 | #: plugins/check_disk.c:768 |
| 434 | #, c-format | 434 | #, c-format |
| 435 | msgid " for %s\n" | 435 | msgid " for %s\n" |
| 436 | msgstr "" | 436 | msgstr "" |
| 437 | 437 | ||
| 438 | #: plugins/check_disk.c:900 | 438 | #: plugins/check_disk.c:842 |
| 439 | msgid "" | 439 | msgid "" |
| 440 | "This plugin checks the amount of used disk space on a mounted file system" | 440 | "This plugin checks the amount of used disk space on a mounted file system" |
| 441 | msgstr "" | 441 | msgstr "" |
| 442 | 442 | ||
| 443 | #: plugins/check_disk.c:901 | 443 | #: plugins/check_disk.c:843 |
| 444 | msgid "" | 444 | msgid "" |
| 445 | "and generates an alert if free space is less than one of the threshold values" | 445 | "and generates an alert if free space is less than one of the threshold values" |
| 446 | msgstr "" | 446 | msgstr "" |
| 447 | 447 | ||
| 448 | #: plugins/check_disk.c:911 | 448 | #: plugins/check_disk.c:853 |
| 449 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" | 449 | msgid "Exit with WARNING status if less than INTEGER units of disk are free" |
| 450 | msgstr "" | 450 | msgstr "" |
| 451 | 451 | ||
| 452 | #: plugins/check_disk.c:913 | 452 | #: plugins/check_disk.c:855 |
| 453 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" | 453 | msgid "Exit with WARNING status if less than PERCENT of disk space is free" |
| 454 | msgstr "" | 454 | msgstr "" |
| 455 | 455 | ||
| 456 | #: plugins/check_disk.c:915 | 456 | #: plugins/check_disk.c:857 |
| 457 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" | 457 | msgid "Exit with CRITICAL status if less than INTEGER units of disk are free" |
| 458 | msgstr "" | 458 | msgstr "" |
| 459 | 459 | ||
| 460 | #: plugins/check_disk.c:917 | 460 | #: plugins/check_disk.c:859 |
| 461 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" | 461 | msgid "Exit with CRITCAL status if less than PERCENT of disk space is free" |
| 462 | msgstr "" | 462 | msgstr "" |
| 463 | 463 | ||
| 464 | #: plugins/check_disk.c:919 | 464 | #: plugins/check_disk.c:861 |
| 465 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" | 465 | msgid "Exit with WARNING status if less than PERCENT of inode space is free" |
| 466 | msgstr "" | 466 | msgstr "" |
| 467 | 467 | ||
| 468 | #: plugins/check_disk.c:921 | 468 | #: plugins/check_disk.c:863 |
| 469 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" | 469 | msgid "Exit with CRITICAL status if less than PERCENT of inode space is free" |
| 470 | msgstr "" | 470 | msgstr "" |
| 471 | 471 | ||
| 472 | #: plugins/check_disk.c:923 | 472 | #: plugins/check_disk.c:865 |
| 473 | msgid "Path or partition (may be repeated)" | 473 | msgid "Path or partition (may be repeated)" |
| 474 | msgstr "" | 474 | msgstr "" |
| 475 | 475 | ||
| 476 | #: plugins/check_disk.c:925 | 476 | #: plugins/check_disk.c:867 |
| 477 | msgid "Ignore device (only works if -p unspecified)" | 477 | msgid "Ignore device (only works if -p unspecified)" |
| 478 | msgstr "" | 478 | msgstr "" |
| 479 | 479 | ||
| 480 | #: plugins/check_disk.c:927 | 480 | #: plugins/check_disk.c:869 |
| 481 | msgid "Clear thresholds" | 481 | msgid "Clear thresholds" |
| 482 | msgstr "" | 482 | msgstr "" |
| 483 | 483 | ||
| 484 | #: plugins/check_disk.c:929 | 484 | #: plugins/check_disk.c:871 |
| 485 | msgid "For paths or partitions specified with -p, only check for exact paths" | 485 | msgid "For paths or partitions specified with -p, only check for exact paths" |
| 486 | msgstr "" | 486 | msgstr "" |
| 487 | 487 | ||
| 488 | #: plugins/check_disk.c:931 | 488 | #: plugins/check_disk.c:873 |
| 489 | msgid "Display only devices/mountpoints with errors" | 489 | msgid "Display only devices/mountpoints with errors" |
| 490 | msgstr "" | 490 | msgstr "" |
| 491 | 491 | ||
| 492 | #: plugins/check_disk.c:933 | 492 | #: plugins/check_disk.c:875 |
| 493 | msgid "" | 493 | msgid "" |
| 494 | "Group paths. Thresholds apply to (free-)space of all partitions together" | 494 | "Group paths. Thresholds apply to (free-)space of all partitions together" |
| 495 | msgstr "" | 495 | msgstr "" |
| 496 | 496 | ||
| 497 | #: plugins/check_disk.c:935 | 497 | #: plugins/check_disk.c:877 |
| 498 | msgid "Same as '--units kB'" | 498 | msgid "Same as '--units kB'" |
| 499 | msgstr "" | 499 | msgstr "" |
| 500 | 500 | ||
| 501 | #: plugins/check_disk.c:937 | 501 | #: plugins/check_disk.c:879 |
| 502 | msgid "Only check local filesystems" | 502 | msgid "Only check local filesystems" |
| 503 | msgstr "" | 503 | msgstr "" |
| 504 | 504 | ||
| 505 | #: plugins/check_disk.c:939 | 505 | #: plugins/check_disk.c:881 |
| 506 | msgid "" | 506 | msgid "" |
| 507 | "Only check local filesystems against thresholds. Yet call stat on remote " | 507 | "Only check local filesystems against thresholds. Yet call stat on remote " |
| 508 | "filesystems" | 508 | "filesystems" |
| 509 | msgstr "" | 509 | msgstr "" |
| 510 | 510 | ||
| 511 | #: plugins/check_disk.c:940 | 511 | #: plugins/check_disk.c:882 |
| 512 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" | 512 | msgid "to test if they are accessible (e.g. to detect Stale NFS Handles)" |
| 513 | msgstr "" | 513 | msgstr "" |
| 514 | 514 | ||
| 515 | #: plugins/check_disk.c:942 | 515 | #: plugins/check_disk.c:884 |
| 516 | msgid "Display the mountpoint instead of the partition" | 516 | msgid "Display the mountpoint instead of the partition" |
| 517 | msgstr "" | 517 | msgstr "" |
| 518 | 518 | ||
| 519 | #: plugins/check_disk.c:944 | 519 | #: plugins/check_disk.c:886 |
| 520 | msgid "Same as '--units MB'" | 520 | msgid "Same as '--units MB'" |
| 521 | msgstr "" | 521 | msgstr "" |
| 522 | 522 | ||
| 523 | #: plugins/check_disk.c:946 | 523 | #: plugins/check_disk.c:888 |
| 524 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" | 524 | msgid "Explicitly select all paths. This is equivalent to -R '.*'" |
| 525 | msgstr "" | 525 | msgstr "" |
| 526 | 526 | ||
| 527 | #: plugins/check_disk.c:948 | 527 | #: plugins/check_disk.c:890 |
| 528 | msgid "" | 528 | msgid "" |
| 529 | "Case insensitive regular expression for path/partition (may be repeated)" | 529 | "Case insensitive regular expression for path/partition (may be repeated)" |
| 530 | msgstr "" | 530 | msgstr "" |
| 531 | 531 | ||
| 532 | #: plugins/check_disk.c:950 | 532 | #: plugins/check_disk.c:892 |
| 533 | msgid "Regular expression for path or partition (may be repeated)" | 533 | msgid "Regular expression for path or partition (may be repeated)" |
| 534 | msgstr "" | 534 | msgstr "" |
| 535 | 535 | ||
| 536 | #: plugins/check_disk.c:952 | 536 | #: plugins/check_disk.c:894 |
| 537 | msgid "" | 537 | msgid "" |
| 538 | "Regular expression to ignore selected path/partition (case insensitive) (may " | 538 | "Regular expression to ignore selected path/partition (case insensitive) (may " |
| 539 | "be repeated)" | 539 | "be repeated)" |
| 540 | msgstr "" | 540 | msgstr "" |
| 541 | 541 | ||
| 542 | #: plugins/check_disk.c:954 | 542 | #: plugins/check_disk.c:896 |
| 543 | msgid "" | 543 | msgid "" |
| 544 | "Regular expression to ignore selected path or partition (may be repeated)" | 544 | "Regular expression to ignore selected path or partition (may be repeated)" |
| 545 | msgstr "" | 545 | msgstr "" |
| 546 | 546 | ||
| 547 | #: plugins/check_disk.c:957 | 547 | #: plugins/check_disk.c:899 |
| 548 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" | 548 | msgid "Choose bytes, kB, MB, GB, TB (default: MB)" |
| 549 | msgstr "" | 549 | msgstr "" |
| 550 | 550 | ||
| 551 | #: plugins/check_disk.c:960 | 551 | #: plugins/check_disk.c:902 |
| 552 | msgid "Ignore all filesystems of indicated type (may be repeated)" | 552 | msgid "Ignore all filesystems of indicated type (may be repeated)" |
| 553 | msgstr "" | 553 | msgstr "" |
| 554 | 554 | ||
| 555 | #: plugins/check_disk.c:965 | 555 | #: plugins/check_disk.c:907 |
| 556 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" | 556 | msgid "Checks /tmp and /var at 10% and 5%, and / at 100MB and 50MB" |
| 557 | msgstr "" | 557 | msgstr "" |
| 558 | 558 | ||
| 559 | #: plugins/check_disk.c:967 | 559 | #: plugins/check_disk.c:909 |
| 560 | msgid "" | 560 | msgid "" |
| 561 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" | 561 | "Checks all filesystems not matching -r at 100M and 50M. The fs matching the -" |
| 562 | "r regex" | 562 | "r regex" |
| 563 | msgstr "" | 563 | msgstr "" |
| 564 | 564 | ||
| 565 | #: plugins/check_disk.c:968 | 565 | #: plugins/check_disk.c:910 |
| 566 | msgid "" | 566 | msgid "" |
| 567 | "are grouped which means the freespace thresholds are applied to all disks " | 567 | "are grouped which means the freespace thresholds are applied to all disks " |
| 568 | "together" | 568 | "together" |
| 569 | msgstr "" | 569 | msgstr "" |
| 570 | 570 | ||
| 571 | #: plugins/check_disk.c:970 | 571 | #: plugins/check_disk.c:912 |
| 572 | msgid "" | 572 | msgid "" |
| 573 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " | 573 | "Checks /foo for 1000M/500M and /bar for 5/3%. All remaining volumes use " |
| 574 | "100M/50M" | 574 | "100M/50M" |
| 575 | msgstr "" | 575 | msgstr "" |
| 576 | 576 | ||
| 577 | #: plugins/check_disk.c:996 | 577 | #: plugins/check_disk.c:938 |
| 578 | #, c-format | 578 | #, c-format |
| 579 | msgid "%s %s: %s\n" | 579 | msgid "%s %s: %s\n" |
| 580 | msgstr "" | 580 | msgstr "" |
| 581 | 581 | ||
| 582 | #: plugins/check_disk.c:996 | 582 | #: plugins/check_disk.c:938 |
| 583 | msgid "is not accessible" | 583 | msgid "is not accessible" |
| 584 | msgstr "" | 584 | msgstr "" |
| 585 | 585 | ||
| @@ -831,7 +831,7 @@ msgstr "" | |||
| 831 | #: plugins/check_ntp_peer.c:491 plugins/check_ntp_time.c:492 | 831 | #: plugins/check_ntp_peer.c:491 plugins/check_ntp_time.c:492 |
| 832 | #: plugins/check_pgsql.c:268 plugins/check_ping.c:295 plugins/check_ping.c:418 | 832 | #: plugins/check_pgsql.c:268 plugins/check_ping.c:295 plugins/check_ping.c:418 |
| 833 | #: plugins/check_radius.c:264 plugins/check_real.c:314 | 833 | #: plugins/check_radius.c:264 plugins/check_real.c:314 |
| 834 | #: plugins/check_real.c:376 plugins/check_smtp.c:507 plugins/check_smtp.c:633 | 834 | #: plugins/check_real.c:376 plugins/check_smtp.c:509 plugins/check_smtp.c:638 |
| 835 | #: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 | 835 | #: plugins/check_ssh.c:157 plugins/check_time.c:240 plugins/check_time.c:315 |
| 836 | #: plugins/check_ups.c:504 plugins/check_ups.c:573 | 836 | #: plugins/check_ups.c:504 plugins/check_ups.c:573 |
| 837 | msgid "Invalid hostname/address" | 837 | msgid "Invalid hostname/address" |
| @@ -1049,443 +1049,435 @@ msgstr "" | |||
| 1049 | msgid "(default=%s)" | 1049 | msgid "(default=%s)" |
| 1050 | msgstr "" | 1050 | msgstr "" |
| 1051 | 1051 | ||
| 1052 | #: plugins/check_http.c:262 | 1052 | #: plugins/check_http.c:285 plugins/check_tcp.c:556 |
| 1053 | msgid "Critical threshold must be integer" | ||
| 1054 | msgstr "" | ||
| 1055 | |||
| 1056 | #: plugins/check_http.c:270 | ||
| 1057 | msgid "Warning threshold must be integer" | ||
| 1058 | msgstr "" | ||
| 1059 | |||
| 1060 | #: plugins/check_http.c:296 plugins/check_tcp.c:559 | ||
| 1061 | msgid "Invalid certificate expiration period" | 1053 | msgid "Invalid certificate expiration period" |
| 1062 | msgstr "" | 1054 | msgstr "" |
| 1063 | 1055 | ||
| 1064 | #: plugins/check_http.c:305 plugins/check_tcp.c:571 | 1056 | #: plugins/check_http.c:294 plugins/check_tcp.c:568 |
| 1065 | msgid "Invalid option - SSL is not available" | 1057 | msgid "Invalid option - SSL is not available" |
| 1066 | msgstr "" | 1058 | msgstr "" |
| 1067 | 1059 | ||
| 1068 | #: plugins/check_http.c:329 | 1060 | #: plugins/check_http.c:318 |
| 1069 | msgid "Invalid onredirect option" | 1061 | msgid "Invalid onredirect option" |
| 1070 | msgstr "" | 1062 | msgstr "" |
| 1071 | 1063 | ||
| 1072 | #: plugins/check_http.c:331 | 1064 | #: plugins/check_http.c:320 |
| 1073 | #, c-format | 1065 | #, c-format |
| 1074 | msgid "option f:%d \n" | 1066 | msgid "option f:%d \n" |
| 1075 | msgstr "" | 1067 | msgstr "" |
| 1076 | 1068 | ||
| 1077 | #: plugins/check_http.c:352 | 1069 | #: plugins/check_http.c:341 |
| 1078 | msgid "Invalid port number" | 1070 | msgid "Invalid port number" |
| 1079 | msgstr "" | 1071 | msgstr "" |
| 1080 | 1072 | ||
| 1081 | #: plugins/check_http.c:400 | 1073 | #: plugins/check_http.c:389 |
| 1082 | #, c-format | 1074 | #, c-format |
| 1083 | msgid "Could Not Compile Regular Expression: %s" | 1075 | msgid "Could Not Compile Regular Expression: %s" |
| 1084 | msgstr "" | 1076 | msgstr "" |
| 1085 | 1077 | ||
| 1086 | #: plugins/check_http.c:414 plugins/check_ntp.c:718 | 1078 | #: plugins/check_http.c:403 plugins/check_ntp.c:718 |
| 1087 | #: plugins/check_ntp_peer.c:507 plugins/check_ntp_time.c:508 | 1079 | #: plugins/check_ntp_peer.c:507 plugins/check_ntp_time.c:508 |
| 1088 | #: plugins/check_smtp.c:613 plugins/check_ssh.c:149 plugins/check_tcp.c:463 | 1080 | #: plugins/check_smtp.c:618 plugins/check_ssh.c:149 plugins/check_tcp.c:460 |
| 1089 | msgid "IPv6 support not available" | 1081 | msgid "IPv6 support not available" |
| 1090 | msgstr "" | 1082 | msgstr "" |
| 1091 | 1083 | ||
| 1092 | #: plugins/check_http.c:476 plugins/check_ping.c:422 | 1084 | #: plugins/check_http.c:465 plugins/check_ping.c:422 |
| 1093 | msgid "You must specify a server address or host name" | 1085 | msgid "You must specify a server address or host name" |
| 1094 | msgstr "" | 1086 | msgstr "" |
| 1095 | 1087 | ||
| 1096 | #: plugins/check_http.c:609 plugins/check_http.c:777 | 1088 | #: plugins/check_http.c:600 plugins/check_http.c:768 |
| 1097 | msgid "HTTP UNKNOWN - Memory allocation error\n" | 1089 | msgid "HTTP UNKNOWN - Memory allocation error\n" |
| 1098 | msgstr "" | 1090 | msgstr "" |
| 1099 | 1091 | ||
| 1100 | #: plugins/check_http.c:681 | 1092 | #: plugins/check_http.c:672 |
| 1101 | #, c-format | 1093 | #, c-format |
| 1102 | msgid "%sServer date unknown, " | 1094 | msgid "%sServer date unknown, " |
| 1103 | msgstr "" | 1095 | msgstr "" |
| 1104 | 1096 | ||
| 1105 | #: plugins/check_http.c:684 | 1097 | #: plugins/check_http.c:675 |
| 1106 | #, c-format | 1098 | #, c-format |
| 1107 | msgid "%sDocument modification date unknown, " | 1099 | msgid "%sDocument modification date unknown, " |
| 1108 | msgstr "" | 1100 | msgstr "" |
| 1109 | 1101 | ||
| 1110 | #: plugins/check_http.c:691 | 1102 | #: plugins/check_http.c:682 |
| 1111 | #, c-format | 1103 | #, c-format |
| 1112 | msgid "%sServer date \"%100s\" unparsable, " | 1104 | msgid "%sServer date \"%100s\" unparsable, " |
| 1113 | msgstr "" | 1105 | msgstr "" |
| 1114 | 1106 | ||
| 1115 | #: plugins/check_http.c:694 | 1107 | #: plugins/check_http.c:685 |
| 1116 | #, c-format | 1108 | #, c-format |
| 1117 | msgid "%sDocument date \"%100s\" unparsable, " | 1109 | msgid "%sDocument date \"%100s\" unparsable, " |
| 1118 | msgstr "" | 1110 | msgstr "" |
| 1119 | 1111 | ||
| 1120 | #: plugins/check_http.c:697 | 1112 | #: plugins/check_http.c:688 |
| 1121 | #, c-format | 1113 | #, c-format |
| 1122 | msgid "%sDocument is %d seconds in the future, " | 1114 | msgid "%sDocument is %d seconds in the future, " |
| 1123 | msgstr "" | 1115 | msgstr "" |
| 1124 | 1116 | ||
| 1125 | #: plugins/check_http.c:702 | 1117 | #: plugins/check_http.c:693 |
| 1126 | #, c-format | 1118 | #, c-format |
| 1127 | msgid "%sLast modified %.1f days ago, " | 1119 | msgid "%sLast modified %.1f days ago, " |
| 1128 | msgstr "" | 1120 | msgstr "" |
| 1129 | 1121 | ||
| 1130 | #: plugins/check_http.c:705 | 1122 | #: plugins/check_http.c:696 |
| 1131 | #, c-format | 1123 | #, c-format |
| 1132 | msgid "%sLast modified %d:%02d:%02d ago, " | 1124 | msgid "%sLast modified %d:%02d:%02d ago, " |
| 1133 | msgstr "" | 1125 | msgstr "" |
| 1134 | 1126 | ||
| 1135 | #: plugins/check_http.c:807 | 1127 | #: plugins/check_http.c:798 |
| 1136 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" | 1128 | msgid "HTTP CRITICAL - Unable to open TCP socket\n" |
| 1137 | msgstr "" | 1129 | msgstr "" |
| 1138 | 1130 | ||
| 1139 | #: plugins/check_http.c:910 | 1131 | #: plugins/check_http.c:901 |
| 1140 | msgid "HTTP CRITICAL - Error on receive\n" | 1132 | msgid "HTTP CRITICAL - Error on receive\n" |
| 1141 | msgstr "" | 1133 | msgstr "" |
| 1142 | 1134 | ||
| 1143 | #: plugins/check_http.c:920 | 1135 | #: plugins/check_http.c:911 |
| 1144 | msgid "HTTP CRITICAL - No data received from host\n" | 1136 | msgid "HTTP CRITICAL - No data received from host\n" |
| 1145 | msgstr "" | 1137 | msgstr "" |
| 1146 | 1138 | ||
| 1147 | #: plugins/check_http.c:971 | 1139 | #: plugins/check_http.c:962 |
| 1148 | #, c-format | 1140 | #, c-format |
| 1149 | msgid "Invalid HTTP response received from host: %s\n" | 1141 | msgid "Invalid HTTP response received from host: %s\n" |
| 1150 | msgstr "" | 1142 | msgstr "" |
| 1151 | 1143 | ||
| 1152 | #: plugins/check_http.c:975 | 1144 | #: plugins/check_http.c:966 |
| 1153 | #, c-format | 1145 | #, c-format |
| 1154 | msgid "Invalid HTTP response received from host on port %d: %s\n" | 1146 | msgid "Invalid HTTP response received from host on port %d: %s\n" |
| 1155 | msgstr "" | 1147 | msgstr "" |
| 1156 | 1148 | ||
| 1157 | #: plugins/check_http.c:984 | 1149 | #: plugins/check_http.c:975 |
| 1158 | #, c-format | 1150 | #, c-format |
| 1159 | msgid "Status line output matched \"%s\" - " | 1151 | msgid "Status line output matched \"%s\" - " |
| 1160 | msgstr "" | 1152 | msgstr "" |
| 1161 | 1153 | ||
| 1162 | #: plugins/check_http.c:995 | 1154 | #: plugins/check_http.c:986 |
| 1163 | #, c-format | 1155 | #, c-format |
| 1164 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" | 1156 | msgid "HTTP CRITICAL: Invalid Status Line (%s)\n" |
| 1165 | msgstr "" | 1157 | msgstr "" |
| 1166 | 1158 | ||
| 1167 | #: plugins/check_http.c:1002 | 1159 | #: plugins/check_http.c:993 |
| 1168 | #, c-format | 1160 | #, c-format |
| 1169 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" | 1161 | msgid "HTTP CRITICAL: Invalid Status (%s)\n" |
| 1170 | msgstr "" | 1162 | msgstr "" |
| 1171 | 1163 | ||
| 1172 | #: plugins/check_http.c:1006 plugins/check_http.c:1011 | 1164 | #: plugins/check_http.c:997 plugins/check_http.c:1002 |
| 1173 | #: plugins/check_http.c:1021 plugins/check_http.c:1025 | 1165 | #: plugins/check_http.c:1012 plugins/check_http.c:1016 |
| 1174 | #, c-format | 1166 | #, c-format |
| 1175 | msgid "%s - " | 1167 | msgid "%s - " |
| 1176 | msgstr "" | 1168 | msgstr "" |
| 1177 | 1169 | ||
| 1178 | #: plugins/check_http.c:1045 | 1170 | #: plugins/check_http.c:1036 |
| 1179 | #, c-format | 1171 | #, c-format |
| 1180 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " | 1172 | msgid "%sstring '%s' not found on '%s://%s:%d%s', " |
| 1181 | msgstr "" | 1173 | msgstr "" |
| 1182 | 1174 | ||
| 1183 | #: plugins/check_http.c:1058 | 1175 | #: plugins/check_http.c:1049 |
| 1184 | #, c-format | 1176 | #, c-format |
| 1185 | msgid "%spattern not found, " | 1177 | msgid "%spattern not found, " |
| 1186 | msgstr "" | 1178 | msgstr "" |
| 1187 | 1179 | ||
| 1188 | #: plugins/check_http.c:1060 | 1180 | #: plugins/check_http.c:1051 |
| 1189 | #, c-format | 1181 | #, c-format |
| 1190 | msgid "%spattern found, " | 1182 | msgid "%spattern found, " |
| 1191 | msgstr "" | 1183 | msgstr "" |
| 1192 | 1184 | ||
| 1193 | #: plugins/check_http.c:1066 | 1185 | #: plugins/check_http.c:1057 |
| 1194 | #, c-format | 1186 | #, c-format |
| 1195 | msgid "%sExecute Error: %s, " | 1187 | msgid "%sExecute Error: %s, " |
| 1196 | msgstr "" | 1188 | msgstr "" |
| 1197 | 1189 | ||
| 1198 | #: plugins/check_http.c:1082 | 1190 | #: plugins/check_http.c:1073 |
| 1199 | #, c-format | 1191 | #, c-format |
| 1200 | msgid "%spage size %d too large, " | 1192 | msgid "%spage size %d too large, " |
| 1201 | msgstr "" | 1193 | msgstr "" |
| 1202 | 1194 | ||
| 1203 | #: plugins/check_http.c:1085 | 1195 | #: plugins/check_http.c:1076 |
| 1204 | #, c-format | 1196 | #, c-format |
| 1205 | msgid "%spage size %d too small, " | 1197 | msgid "%spage size %d too small, " |
| 1206 | msgstr "" | 1198 | msgstr "" |
| 1207 | 1199 | ||
| 1208 | #: plugins/check_http.c:1097 | 1200 | #: plugins/check_http.c:1088 |
| 1209 | #, c-format | 1201 | #, c-format |
| 1210 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" | 1202 | msgid "%s - %d bytes in %.3f second response time %s|%s %s" |
| 1211 | msgstr "" | 1203 | msgstr "" |
| 1212 | 1204 | ||
| 1213 | #: plugins/check_http.c:1137 | 1205 | #: plugins/check_http.c:1125 |
| 1214 | msgid "HTTP UNKNOWN - Could not allocate addr\n" | 1206 | msgid "HTTP UNKNOWN - Could not allocate addr\n" |
| 1215 | msgstr "" | 1207 | msgstr "" |
| 1216 | 1208 | ||
| 1217 | #: plugins/check_http.c:1141 plugins/check_http.c:1172 | 1209 | #: plugins/check_http.c:1129 plugins/check_http.c:1160 |
| 1218 | msgid "HTTP UNKNOWN - Could not allocate URL\n" | 1210 | msgid "HTTP UNKNOWN - Could not allocate URL\n" |
| 1219 | msgstr "" | 1211 | msgstr "" |
| 1220 | 1212 | ||
| 1221 | #: plugins/check_http.c:1150 | 1213 | #: plugins/check_http.c:1138 |
| 1222 | #, c-format | 1214 | #, c-format |
| 1223 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" | 1215 | msgid "HTTP UNKNOWN - Could not find redirect location - %s%s\n" |
| 1224 | msgstr "" | 1216 | msgstr "" |
| 1225 | 1217 | ||
| 1226 | #: plugins/check_http.c:1165 | 1218 | #: plugins/check_http.c:1153 |
| 1227 | #, c-format | 1219 | #, c-format |
| 1228 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" | 1220 | msgid "HTTP UNKNOWN - Empty redirect location%s\n" |
| 1229 | msgstr "" | 1221 | msgstr "" |
| 1230 | 1222 | ||
| 1231 | #: plugins/check_http.c:1215 | 1223 | #: plugins/check_http.c:1203 |
| 1232 | #, c-format | 1224 | #, c-format |
| 1233 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" | 1225 | msgid "HTTP UNKNOWN - Could not parse redirect location - %s%s\n" |
| 1234 | msgstr "" | 1226 | msgstr "" |
| 1235 | 1227 | ||
| 1236 | #: plugins/check_http.c:1225 | 1228 | #: plugins/check_http.c:1213 |
| 1237 | #, c-format | 1229 | #, c-format |
| 1238 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" | 1230 | msgid "HTTP WARNING - maximum redirection depth %d exceeded - %s://%s:%d%s%s\n" |
| 1239 | msgstr "" | 1231 | msgstr "" |
| 1240 | 1232 | ||
| 1241 | #: plugins/check_http.c:1233 | 1233 | #: plugins/check_http.c:1221 |
| 1242 | #, c-format | 1234 | #, c-format |
| 1243 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" | 1235 | msgid "HTTP WARNING - redirection creates an infinite loop - %s://%s:%d%s%s\n" |
| 1244 | msgstr "" | 1236 | msgstr "" |
| 1245 | 1237 | ||
| 1246 | #: plugins/check_http.c:1254 | 1238 | #: plugins/check_http.c:1242 |
| 1247 | #, c-format | 1239 | #, c-format |
| 1248 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" | 1240 | msgid "HTTP UNKNOWN - Redirection to port above %d - %s://%s:%d%s%s\n" |
| 1249 | msgstr "" | 1241 | msgstr "" |
| 1250 | 1242 | ||
| 1251 | #: plugins/check_http.c:1259 | 1243 | #: plugins/check_http.c:1247 |
| 1252 | #, c-format | 1244 | #, c-format |
| 1253 | msgid "Redirection to %s://%s:%d%s\n" | 1245 | msgid "Redirection to %s://%s:%d%s\n" |
| 1254 | msgstr "" | 1246 | msgstr "" |
| 1255 | 1247 | ||
| 1256 | #: plugins/check_http.c:1310 | 1248 | #: plugins/check_http.c:1298 |
| 1257 | msgid "This plugin tests the HTTP service on the specified host. It can test" | 1249 | msgid "This plugin tests the HTTP service on the specified host. It can test" |
| 1258 | msgstr "" | 1250 | msgstr "" |
| 1259 | 1251 | ||
| 1260 | #: plugins/check_http.c:1311 | 1252 | #: plugins/check_http.c:1299 |
| 1261 | msgid "normal (http) and secure (https) servers, follow redirects, search for" | 1253 | msgid "normal (http) and secure (https) servers, follow redirects, search for" |
| 1262 | msgstr "" | 1254 | msgstr "" |
| 1263 | 1255 | ||
| 1264 | #: plugins/check_http.c:1312 | 1256 | #: plugins/check_http.c:1300 |
| 1265 | msgid "strings and regular expressions, check connection times, and report on" | 1257 | msgid "strings and regular expressions, check connection times, and report on" |
| 1266 | msgstr "" | 1258 | msgstr "" |
| 1267 | 1259 | ||
| 1268 | #: plugins/check_http.c:1313 | 1260 | #: plugins/check_http.c:1301 |
| 1269 | msgid "certificate expiration times." | 1261 | msgid "certificate expiration times." |
| 1270 | msgstr "" | 1262 | msgstr "" |
| 1271 | 1263 | ||
| 1272 | #: plugins/check_http.c:1319 | 1264 | #: plugins/check_http.c:1307 |
| 1273 | #, c-format | 1265 | #, c-format |
| 1274 | msgid "NOTE: One or both of -H and -I must be specified" | 1266 | msgid "NOTE: One or both of -H and -I must be specified" |
| 1275 | msgstr "" | 1267 | msgstr "" |
| 1276 | 1268 | ||
| 1277 | #: plugins/check_http.c:1327 | 1269 | #: plugins/check_http.c:1315 |
| 1278 | msgid "Host name argument for servers using host headers (virtual host)" | 1270 | msgid "Host name argument for servers using host headers (virtual host)" |
| 1279 | msgstr "" | 1271 | msgstr "" |
| 1280 | 1272 | ||
| 1281 | #: plugins/check_http.c:1328 | 1273 | #: plugins/check_http.c:1316 |
| 1282 | msgid "Append a port to include it in the header (eg: example.com:5000)" | 1274 | msgid "Append a port to include it in the header (eg: example.com:5000)" |
| 1283 | msgstr "" | 1275 | msgstr "" |
| 1284 | 1276 | ||
| 1285 | #: plugins/check_http.c:1330 | 1277 | #: plugins/check_http.c:1318 |
| 1286 | msgid "" | 1278 | msgid "" |
| 1287 | "IP address or name (use numeric address if possible to bypass DNS lookup)." | 1279 | "IP address or name (use numeric address if possible to bypass DNS lookup)." |
| 1288 | msgstr "" | 1280 | msgstr "" |
| 1289 | 1281 | ||
| 1290 | #: plugins/check_http.c:1332 | 1282 | #: plugins/check_http.c:1320 |
| 1291 | msgid "Port number (default: " | 1283 | msgid "Port number (default: " |
| 1292 | msgstr "" | 1284 | msgstr "" |
| 1293 | 1285 | ||
| 1294 | #: plugins/check_http.c:1339 | 1286 | #: plugins/check_http.c:1327 |
| 1295 | msgid "Connect via SSL. Port defaults to 443" | 1287 | msgid "Connect via SSL. Port defaults to 443" |
| 1296 | msgstr "" | 1288 | msgstr "" |
| 1297 | 1289 | ||
| 1298 | #: plugins/check_http.c:1341 | 1290 | #: plugins/check_http.c:1329 |
| 1299 | msgid "Enable SSL/TLS hostname extension support (SNI)" | 1291 | msgid "Enable SSL/TLS hostname extension support (SNI)" |
| 1300 | msgstr "" | 1292 | msgstr "" |
| 1301 | 1293 | ||
| 1302 | #: plugins/check_http.c:1343 | 1294 | #: plugins/check_http.c:1331 |
| 1303 | msgid "" | 1295 | msgid "" |
| 1304 | "Minimum number of days a certificate has to be valid. Port defaults to 443" | 1296 | "Minimum number of days a certificate has to be valid. Port defaults to 443" |
| 1305 | msgstr "" | 1297 | msgstr "" |
| 1306 | 1298 | ||
| 1307 | #: plugins/check_http.c:1344 | 1299 | #: plugins/check_http.c:1332 |
| 1308 | msgid "(when this option is used the URL is not checked.)\n" | 1300 | msgid "(when this option is used the URL is not checked.)\n" |
| 1309 | msgstr "" | 1301 | msgstr "" |
| 1310 | 1302 | ||
| 1311 | #: plugins/check_http.c:1348 | 1303 | #: plugins/check_http.c:1336 |
| 1312 | msgid "Comma-delimited list of strings, at least one of them is expected in" | 1304 | msgid "Comma-delimited list of strings, at least one of them is expected in" |
| 1313 | msgstr "" | 1305 | msgstr "" |
| 1314 | 1306 | ||
| 1315 | #: plugins/check_http.c:1349 | 1307 | #: plugins/check_http.c:1337 |
| 1316 | msgid "the first (status) line of the server response (default: " | 1308 | msgid "the first (status) line of the server response (default: " |
| 1317 | msgstr "" | 1309 | msgstr "" |
| 1318 | 1310 | ||
| 1319 | #: plugins/check_http.c:1351 | 1311 | #: plugins/check_http.c:1339 |
| 1320 | msgid "" | 1312 | msgid "" |
| 1321 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" | 1313 | "If specified skips all other status line logic (ex: 3xx, 4xx, 5xx processing)" |
| 1322 | msgstr "" | 1314 | msgstr "" |
| 1323 | 1315 | ||
| 1324 | #: plugins/check_http.c:1353 | 1316 | #: plugins/check_http.c:1341 |
| 1325 | msgid "String to expect in the content" | 1317 | msgid "String to expect in the content" |
| 1326 | msgstr "" | 1318 | msgstr "" |
| 1327 | 1319 | ||
| 1328 | #: plugins/check_http.c:1355 | 1320 | #: plugins/check_http.c:1343 |
| 1329 | msgid "URL to GET or POST (default: /)" | 1321 | msgid "URL to GET or POST (default: /)" |
| 1330 | msgstr "" | 1322 | msgstr "" |
| 1331 | 1323 | ||
| 1332 | #: plugins/check_http.c:1357 | 1324 | #: plugins/check_http.c:1345 |
| 1333 | msgid "URL encoded http POST data" | 1325 | msgid "URL encoded http POST data" |
| 1334 | msgstr "" | 1326 | msgstr "" |
| 1335 | 1327 | ||
| 1336 | #: plugins/check_http.c:1359 | 1328 | #: plugins/check_http.c:1347 |
| 1337 | msgid "Set HTTP method." | 1329 | msgid "Set HTTP method." |
| 1338 | msgstr "" | 1330 | msgstr "" |
| 1339 | 1331 | ||
| 1340 | #: plugins/check_http.c:1361 | 1332 | #: plugins/check_http.c:1349 |
| 1341 | msgid "Don't wait for document body: stop reading after headers." | 1333 | msgid "Don't wait for document body: stop reading after headers." |
| 1342 | msgstr "" | 1334 | msgstr "" |
| 1343 | 1335 | ||
| 1344 | #: plugins/check_http.c:1362 | 1336 | #: plugins/check_http.c:1350 |
| 1345 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" | 1337 | msgid "(Note that this still does an HTTP GET or POST, not a HEAD.)" |
| 1346 | msgstr "" | 1338 | msgstr "" |
| 1347 | 1339 | ||
| 1348 | #: plugins/check_http.c:1364 | 1340 | #: plugins/check_http.c:1352 |
| 1349 | msgid "Warn if document is more than SECONDS old. the number can also be of" | 1341 | msgid "Warn if document is more than SECONDS old. the number can also be of" |
| 1350 | msgstr "" | 1342 | msgstr "" |
| 1351 | 1343 | ||
| 1352 | #: plugins/check_http.c:1365 | 1344 | #: plugins/check_http.c:1353 |
| 1353 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." | 1345 | msgid "the form \"10m\" for minutes, \"10h\" for hours, or \"10d\" for days." |
| 1354 | msgstr "" | 1346 | msgstr "" |
| 1355 | 1347 | ||
| 1356 | #: plugins/check_http.c:1367 | 1348 | #: plugins/check_http.c:1355 |
| 1357 | msgid "specify Content-Type header media type when POSTing\n" | 1349 | msgid "specify Content-Type header media type when POSTing\n" |
| 1358 | msgstr "" | 1350 | msgstr "" |
| 1359 | 1351 | ||
| 1360 | #: plugins/check_http.c:1370 | 1352 | #: plugins/check_http.c:1358 |
| 1361 | msgid "Allow regex to span newlines (must precede -r or -R)" | 1353 | msgid "Allow regex to span newlines (must precede -r or -R)" |
| 1362 | msgstr "" | 1354 | msgstr "" |
| 1363 | 1355 | ||
| 1364 | #: plugins/check_http.c:1372 | 1356 | #: plugins/check_http.c:1360 |
| 1365 | msgid "Search page for regex STRING" | 1357 | msgid "Search page for regex STRING" |
| 1366 | msgstr "" | 1358 | msgstr "" |
| 1367 | 1359 | ||
| 1368 | #: plugins/check_http.c:1374 | 1360 | #: plugins/check_http.c:1362 |
| 1369 | msgid "Search page for case-insensitive regex STRING" | 1361 | msgid "Search page for case-insensitive regex STRING" |
| 1370 | msgstr "" | 1362 | msgstr "" |
| 1371 | 1363 | ||
| 1372 | #: plugins/check_http.c:1376 | 1364 | #: plugins/check_http.c:1364 |
| 1373 | msgid "Return CRITICAL if found, OK if not\n" | 1365 | msgid "Return CRITICAL if found, OK if not\n" |
| 1374 | msgstr "" | 1366 | msgstr "" |
| 1375 | 1367 | ||
| 1376 | #: plugins/check_http.c:1379 | 1368 | #: plugins/check_http.c:1367 |
| 1377 | msgid "Username:password on sites with basic authentication" | 1369 | msgid "Username:password on sites with basic authentication" |
| 1378 | msgstr "" | 1370 | msgstr "" |
| 1379 | 1371 | ||
| 1380 | #: plugins/check_http.c:1381 | 1372 | #: plugins/check_http.c:1369 |
| 1381 | msgid "Username:password on proxy-servers with basic authentication" | 1373 | msgid "Username:password on proxy-servers with basic authentication" |
| 1382 | msgstr "" | 1374 | msgstr "" |
| 1383 | 1375 | ||
| 1384 | #: plugins/check_http.c:1383 | 1376 | #: plugins/check_http.c:1371 |
| 1385 | msgid "String to be sent in http header as \"User Agent\"" | 1377 | msgid "String to be sent in http header as \"User Agent\"" |
| 1386 | msgstr "" | 1378 | msgstr "" |
| 1387 | 1379 | ||
| 1388 | #: plugins/check_http.c:1385 | 1380 | #: plugins/check_http.c:1373 |
| 1389 | msgid "" | 1381 | msgid "" |
| 1390 | " Any other tags to be sent in http header. Use multiple times for additional " | 1382 | "Any other tags to be sent in http header. Use multiple times for additional " |
| 1391 | "headers" | 1383 | "headers" |
| 1392 | msgstr "" | 1384 | msgstr "" |
| 1393 | 1385 | ||
| 1394 | #: plugins/check_http.c:1387 | 1386 | #: plugins/check_http.c:1375 |
| 1395 | msgid "Wrap output in HTML link (obsoleted by urlize)" | 1387 | msgid "Wrap output in HTML link (obsoleted by urlize)" |
| 1396 | msgstr "" | 1388 | msgstr "" |
| 1397 | 1389 | ||
| 1398 | #: plugins/check_http.c:1389 | 1390 | #: plugins/check_http.c:1377 |
| 1399 | msgid "How to handle redirected pages. sticky is like follow but stick to the" | 1391 | msgid "How to handle redirected pages. sticky is like follow but stick to the" |
| 1400 | msgstr "" | 1392 | msgstr "" |
| 1401 | 1393 | ||
| 1402 | #: plugins/check_http.c:1390 | 1394 | #: plugins/check_http.c:1378 |
| 1403 | msgid "specified IP address. stickyport also ensure post stays the same." | 1395 | msgid "specified IP address. stickyport also ensures port stays the same." |
| 1404 | msgstr "" | 1396 | msgstr "" |
| 1405 | 1397 | ||
| 1406 | #: plugins/check_http.c:1392 | 1398 | #: plugins/check_http.c:1380 |
| 1407 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" | 1399 | msgid "Minimum page size required (bytes) : Maximum page size required (bytes)" |
| 1408 | msgstr "" | 1400 | msgstr "" |
| 1409 | 1401 | ||
| 1410 | #: plugins/check_http.c:1402 | 1402 | #: plugins/check_http.c:1390 |
| 1411 | msgid "This plugin will attempt to open an HTTP connection with the host." | 1403 | msgid "This plugin will attempt to open an HTTP connection with the host." |
| 1412 | msgstr "" | 1404 | msgstr "" |
| 1413 | 1405 | ||
| 1414 | #: plugins/check_http.c:1403 | 1406 | #: plugins/check_http.c:1391 |
| 1415 | msgid "" | 1407 | msgid "" |
| 1416 | "Successful connects return STATE_OK, refusals and timeouts return " | 1408 | "Successful connects return STATE_OK, refusals and timeouts return " |
| 1417 | "STATE_CRITICAL" | 1409 | "STATE_CRITICAL" |
| 1418 | msgstr "" | 1410 | msgstr "" |
| 1419 | 1411 | ||
| 1420 | #: plugins/check_http.c:1404 | 1412 | #: plugins/check_http.c:1392 |
| 1421 | msgid "" | 1413 | msgid "" |
| 1422 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " | 1414 | "other errors return STATE_UNKNOWN. Successful connects, but incorrect " |
| 1423 | "reponse" | 1415 | "reponse" |
| 1424 | msgstr "" | 1416 | msgstr "" |
| 1425 | 1417 | ||
| 1426 | #: plugins/check_http.c:1405 | 1418 | #: plugins/check_http.c:1393 |
| 1427 | msgid "" | 1419 | msgid "" |
| 1428 | "messages from the host result in STATE_WARNING return values. If you are" | 1420 | "messages from the host result in STATE_WARNING return values. If you are" |
| 1429 | msgstr "" | 1421 | msgstr "" |
| 1430 | 1422 | ||
| 1431 | #: plugins/check_http.c:1406 | 1423 | #: plugins/check_http.c:1394 |
| 1432 | msgid "" | 1424 | msgid "" |
| 1433 | "checking a virtual server that uses 'host headers' you must supply the FQDN" | 1425 | "checking a virtual server that uses 'host headers' you must supply the FQDN" |
| 1434 | msgstr "" | 1426 | msgstr "" |
| 1435 | 1427 | ||
| 1436 | #: plugins/check_http.c:1407 | 1428 | #: plugins/check_http.c:1395 |
| 1437 | msgid "(fully qualified domain name) as the [host_name] argument." | 1429 | msgid "(fully qualified domain name) as the [host_name] argument." |
| 1438 | msgstr "" | 1430 | msgstr "" |
| 1439 | 1431 | ||
| 1440 | #: plugins/check_http.c:1411 | 1432 | #: plugins/check_http.c:1399 |
| 1441 | msgid "This plugin can also check whether an SSL enabled web server is able to" | 1433 | msgid "This plugin can also check whether an SSL enabled web server is able to" |
| 1442 | msgstr "" | 1434 | msgstr "" |
| 1443 | 1435 | ||
| 1444 | #: plugins/check_http.c:1412 | 1436 | #: plugins/check_http.c:1400 |
| 1445 | msgid "serve content (optionally within a specified time) or whether the X509 " | 1437 | msgid "serve content (optionally within a specified time) or whether the X509 " |
| 1446 | msgstr "" | 1438 | msgstr "" |
| 1447 | 1439 | ||
| 1448 | #: plugins/check_http.c:1413 | 1440 | #: plugins/check_http.c:1401 |
| 1449 | msgid "certificate is still valid for the specified number of days." | 1441 | msgid "certificate is still valid for the specified number of days." |
| 1450 | msgstr "" | 1442 | msgstr "" |
| 1451 | 1443 | ||
| 1452 | #: plugins/check_http.c:1417 | 1444 | #: plugins/check_http.c:1405 |
| 1453 | msgid "" | 1445 | msgid "" |
| 1454 | "When the 'www.verisign.com' server returns its content within 5 seconds," | 1446 | "When the 'www.verisign.com' server returns its content within 5 seconds," |
| 1455 | msgstr "" | 1447 | msgstr "" |
| 1456 | 1448 | ||
| 1457 | #: plugins/check_http.c:1418 | 1449 | #: plugins/check_http.c:1406 |
| 1458 | msgid "" | 1450 | msgid "" |
| 1459 | "a STATE_OK will be returned. When the server returns its content but exceeds" | 1451 | "a STATE_OK will be returned. When the server returns its content but exceeds" |
| 1460 | msgstr "" | 1452 | msgstr "" |
| 1461 | 1453 | ||
| 1462 | #: plugins/check_http.c:1419 | 1454 | #: plugins/check_http.c:1407 |
| 1463 | msgid "" | 1455 | msgid "" |
| 1464 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " | 1456 | "the 5-second threshold, a STATE_WARNING will be returned. When an error " |
| 1465 | "occurs," | 1457 | "occurs," |
| 1466 | msgstr "" | 1458 | msgstr "" |
| 1467 | 1459 | ||
| 1468 | #: plugins/check_http.c:1420 | 1460 | #: plugins/check_http.c:1408 |
| 1469 | msgid "a STATE_CRITICAL will be returned." | 1461 | msgid "a STATE_CRITICAL will be returned." |
| 1470 | msgstr "" | 1462 | msgstr "" |
| 1471 | 1463 | ||
| 1472 | #: plugins/check_http.c:1423 | 1464 | #: plugins/check_http.c:1411 |
| 1473 | msgid "" | 1465 | msgid "" |
| 1474 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," | 1466 | "When the certificate of 'www.verisign.com' is valid for more than 14 days," |
| 1475 | msgstr "" | 1467 | msgstr "" |
| 1476 | 1468 | ||
| 1477 | #: plugins/check_http.c:1424 | 1469 | #: plugins/check_http.c:1412 |
| 1478 | msgid "" | 1470 | msgid "" |
| 1479 | "a STATE_OK is returned. When the certificate is still valid, but for less " | 1471 | "a STATE_OK is returned. When the certificate is still valid, but for less " |
| 1480 | "than" | 1472 | "than" |
| 1481 | msgstr "" | 1473 | msgstr "" |
| 1482 | 1474 | ||
| 1483 | #: plugins/check_http.c:1425 | 1475 | #: plugins/check_http.c:1413 |
| 1484 | msgid "" | 1476 | msgid "" |
| 1485 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" | 1477 | "14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when" |
| 1486 | msgstr "" | 1478 | msgstr "" |
| 1487 | 1479 | ||
| 1488 | #: plugins/check_http.c:1426 | 1480 | #: plugins/check_http.c:1414 |
| 1489 | msgid "the certificate is expired." | 1481 | msgid "the certificate is expired." |
| 1490 | msgstr "" | 1482 | msgstr "" |
| 1491 | 1483 | ||
| @@ -1534,81 +1526,81 @@ msgstr "" | |||
| 1534 | msgid "LDAP %s - %.3f seconds response time|%s\n" | 1526 | msgid "LDAP %s - %.3f seconds response time|%s\n" |
| 1535 | msgstr "" | 1527 | msgstr "" |
| 1536 | 1528 | ||
| 1537 | #: plugins/check_ldap.c:339 plugins/check_ldap.c:346 | 1529 | #: plugins/check_ldap.c:339 plugins/check_ldap.c:347 |
| 1538 | #, c-format | 1530 | #, c-format |
| 1539 | msgid "%s cannot be combined with %s" | 1531 | msgid "%s cannot be combined with %s" |
| 1540 | msgstr "" | 1532 | msgstr "" |
| 1541 | 1533 | ||
| 1542 | #: plugins/check_ldap.c:352 plugins/check_ping.c:246 | 1534 | #: plugins/check_ldap.c:353 plugins/check_ping.c:246 |
| 1543 | msgid "IPv6 support not available\n" | 1535 | msgid "IPv6 support not available\n" |
| 1544 | msgstr "" | 1536 | msgstr "" |
| 1545 | 1537 | ||
| 1546 | #: plugins/check_ldap.c:375 | 1538 | #: plugins/check_ldap.c:379 |
| 1547 | msgid "Please specify the host name\n" | 1539 | msgid "Please specify the host name\n" |
| 1548 | msgstr "" | 1540 | msgstr "" |
| 1549 | 1541 | ||
| 1550 | #: plugins/check_ldap.c:378 | 1542 | #: plugins/check_ldap.c:382 |
| 1551 | msgid "Please specify the LDAP base\n" | 1543 | msgid "Please specify the LDAP base\n" |
| 1552 | msgstr "" | 1544 | msgstr "" |
| 1553 | 1545 | ||
| 1554 | #: plugins/check_ldap.c:407 | 1546 | #: plugins/check_ldap.c:411 |
| 1555 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" | 1547 | msgid "ldap attribute to search (default: \"(objectclass=*)\"" |
| 1556 | msgstr "" | 1548 | msgstr "" |
| 1557 | 1549 | ||
| 1558 | #: plugins/check_ldap.c:409 | 1550 | #: plugins/check_ldap.c:413 |
| 1559 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" | 1551 | msgid "ldap base (eg. ou=my unit, o=my org, c=at" |
| 1560 | msgstr "" | 1552 | msgstr "" |
| 1561 | 1553 | ||
| 1562 | #: plugins/check_ldap.c:411 | 1554 | #: plugins/check_ldap.c:415 |
| 1563 | msgid "ldap bind DN (if required)" | 1555 | msgid "ldap bind DN (if required)" |
| 1564 | msgstr "" | 1556 | msgstr "" |
| 1565 | 1557 | ||
| 1566 | #: plugins/check_ldap.c:413 | 1558 | #: plugins/check_ldap.c:417 |
| 1567 | msgid "ldap password (if required)" | 1559 | msgid "ldap password (if required)" |
| 1568 | msgstr "" | 1560 | msgstr "" |
| 1569 | 1561 | ||
| 1570 | #: plugins/check_ldap.c:415 | 1562 | #: plugins/check_ldap.c:419 |
| 1571 | msgid "use starttls mechanism introduced in protocol version 3" | 1563 | msgid "use starttls mechanism introduced in protocol version 3" |
| 1572 | msgstr "" | 1564 | msgstr "" |
| 1573 | 1565 | ||
| 1574 | #: plugins/check_ldap.c:417 | 1566 | #: plugins/check_ldap.c:421 |
| 1575 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" | 1567 | msgid "use ldaps (ldap v2 ssl method). this also sets the default port to" |
| 1576 | msgstr "" | 1568 | msgstr "" |
| 1577 | 1569 | ||
| 1578 | #: plugins/check_ldap.c:421 | 1570 | #: plugins/check_ldap.c:425 |
| 1579 | msgid "use ldap protocol version 2" | 1571 | msgid "use ldap protocol version 2" |
| 1580 | msgstr "" | 1572 | msgstr "" |
| 1581 | 1573 | ||
| 1582 | #: plugins/check_ldap.c:423 | 1574 | #: plugins/check_ldap.c:427 |
| 1583 | msgid "use ldap protocol version 3" | 1575 | msgid "use ldap protocol version 3" |
| 1584 | msgstr "" | 1576 | msgstr "" |
| 1585 | 1577 | ||
| 1586 | #: plugins/check_ldap.c:424 | 1578 | #: plugins/check_ldap.c:428 |
| 1587 | msgid "default protocol version:" | 1579 | msgid "default protocol version:" |
| 1588 | msgstr "" | 1580 | msgstr "" |
| 1589 | 1581 | ||
| 1590 | #: plugins/check_ldap.c:435 | 1582 | #: plugins/check_ldap.c:439 |
| 1591 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" | 1583 | msgid "If this plugin is called via 'check_ldaps', method 'STARTTLS' will be" |
| 1592 | msgstr "" | 1584 | msgstr "" |
| 1593 | 1585 | ||
| 1594 | #: plugins/check_ldap.c:436 | 1586 | #: plugins/check_ldap.c:440 |
| 1595 | #, c-format | 1587 | #, c-format |
| 1596 | msgid "" | 1588 | msgid "" |
| 1597 | " implied (using default port %i) unless --port=636 is specified. In that " | 1589 | " implied (using default port %i) unless --port=636 is specified. In that " |
| 1598 | "case\n" | 1590 | "case\n" |
| 1599 | msgstr "" | 1591 | msgstr "" |
| 1600 | 1592 | ||
| 1601 | #: plugins/check_ldap.c:437 | 1593 | #: plugins/check_ldap.c:441 |
| 1602 | msgid "'SSL on connect' will be used no matter how the plugin was called." | 1594 | msgid "'SSL on connect' will be used no matter how the plugin was called." |
| 1603 | msgstr "" | 1595 | msgstr "" |
| 1604 | 1596 | ||
| 1605 | #: plugins/check_ldap.c:438 | 1597 | #: plugins/check_ldap.c:442 |
| 1606 | msgid "" | 1598 | msgid "" |
| 1607 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " | 1599 | "This detection is deprecated, please use 'check_ldap' with the '--starttls' " |
| 1608 | "or '--ssl' flags" | 1600 | "or '--ssl' flags" |
| 1609 | msgstr "" | 1601 | msgstr "" |
| 1610 | 1602 | ||
| 1611 | #: plugins/check_ldap.c:439 | 1603 | #: plugins/check_ldap.c:443 |
| 1612 | msgid "to define the behaviour explicitly instead." | 1604 | msgid "to define the behaviour explicitly instead." |
| 1613 | msgstr "" | 1605 | msgstr "" |
| 1614 | 1606 | ||
| @@ -2105,7 +2097,7 @@ msgstr "" | |||
| 2105 | msgid "Wrong client version - running: %s, required: %s" | 2097 | msgid "Wrong client version - running: %s, required: %s" |
| 2106 | msgstr "" | 2098 | msgstr "" |
| 2107 | 2099 | ||
| 2108 | #: plugins/check_nt.c:152 plugins/check_nt.c:212 | 2100 | #: plugins/check_nt.c:152 plugins/check_nt.c:217 |
| 2109 | msgid "missing -l parameters" | 2101 | msgid "missing -l parameters" |
| 2110 | msgstr "" | 2102 | msgstr "" |
| 2111 | 2103 | ||
| @@ -2136,318 +2128,318 @@ msgstr "" | |||
| 2136 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)" | 2128 | msgid "System Uptime - %u day(s) %u hour(s) %u minute(s)" |
| 2137 | msgstr "" | 2129 | msgstr "" |
| 2138 | 2130 | ||
| 2139 | #: plugins/check_nt.c:214 | 2131 | #: plugins/check_nt.c:219 |
| 2140 | msgid "wrong -l argument" | 2132 | msgid "wrong -l argument" |
| 2141 | msgstr "" | 2133 | msgstr "" |
| 2142 | 2134 | ||
| 2143 | #: plugins/check_nt.c:230 | 2135 | #: plugins/check_nt.c:235 |
| 2144 | #, c-format | 2136 | #, c-format |
| 2145 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" | 2137 | msgid "%s:\\ - total: %.2f Gb - used: %.2f Gb (%.0f%%) - free %.2f Gb (%.0f%%)" |
| 2146 | msgstr "" | 2138 | msgstr "" |
| 2147 | 2139 | ||
| 2148 | #: plugins/check_nt.c:233 | 2140 | #: plugins/check_nt.c:238 |
| 2149 | #, c-format | 2141 | #, c-format |
| 2150 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" | 2142 | msgid "'%s:\\ Used Space'=%.2fGb;%.2f;%.2f;0.00;%.2f" |
| 2151 | msgstr "" | 2143 | msgstr "" |
| 2152 | 2144 | ||
| 2153 | #: plugins/check_nt.c:247 | 2145 | #: plugins/check_nt.c:252 |
| 2154 | msgid "Free disk space : Invalid drive" | 2146 | msgid "Free disk space : Invalid drive" |
| 2155 | msgstr "" | 2147 | msgstr "" |
| 2156 | 2148 | ||
| 2157 | #: plugins/check_nt.c:257 | 2149 | #: plugins/check_nt.c:262 |
| 2158 | msgid "No service/process specified" | 2150 | msgid "No service/process specified" |
| 2159 | msgstr "" | 2151 | msgstr "" |
| 2160 | 2152 | ||
| 2161 | #: plugins/check_nt.c:281 | 2153 | #: plugins/check_nt.c:286 |
| 2162 | #, c-format | 2154 | #, c-format |
| 2163 | msgid "" | 2155 | msgid "" |
| 2164 | "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" | 2156 | "Memory usage: total:%.2f Mb - used: %.2f Mb (%.0f%%) - free: %.2f Mb (%.0f%%)" |
| 2165 | msgstr "" | 2157 | msgstr "" |
| 2166 | 2158 | ||
| 2167 | #: plugins/check_nt.c:284 | 2159 | #: plugins/check_nt.c:289 |
| 2168 | #, c-format | 2160 | #, c-format |
| 2169 | msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" | 2161 | msgid "'Memory usage'=%.2fMb;%.2f;%.2f;0.00;%.2f" |
| 2170 | msgstr "" | 2162 | msgstr "" |
| 2171 | 2163 | ||
| 2172 | #: plugins/check_nt.c:320 plugins/check_nt.c:405 plugins/check_nt.c:435 | 2164 | #: plugins/check_nt.c:325 plugins/check_nt.c:410 plugins/check_nt.c:440 |
| 2173 | msgid "No counter specified" | 2165 | msgid "No counter specified" |
| 2174 | msgstr "" | 2166 | msgstr "" |
| 2175 | 2167 | ||
| 2176 | #: plugins/check_nt.c:352 | 2168 | #: plugins/check_nt.c:357 |
| 2177 | msgid "Minimum value contains non-numbers" | 2169 | msgid "Minimum value contains non-numbers" |
| 2178 | msgstr "" | 2170 | msgstr "" |
| 2179 | 2171 | ||
| 2180 | #: plugins/check_nt.c:356 | 2172 | #: plugins/check_nt.c:361 |
| 2181 | msgid "Maximum value contains non-numbers" | 2173 | msgid "Maximum value contains non-numbers" |
| 2182 | msgstr "" | 2174 | msgstr "" |
| 2183 | 2175 | ||
| 2184 | #: plugins/check_nt.c:363 | 2176 | #: plugins/check_nt.c:368 |
| 2185 | msgid "No unit counter specified" | 2177 | msgid "No unit counter specified" |
| 2186 | msgstr "" | 2178 | msgstr "" |
| 2187 | 2179 | ||
| 2188 | #: plugins/check_nt.c:450 | 2180 | #: plugins/check_nt.c:455 |
| 2189 | msgid "Please specify a variable to check" | 2181 | msgid "Please specify a variable to check" |
| 2190 | msgstr "" | 2182 | msgstr "" |
| 2191 | 2183 | ||
| 2192 | #: plugins/check_nt.c:534 | 2184 | #: plugins/check_nt.c:539 |
| 2193 | msgid "Server port must be an integer\n" | 2185 | msgid "Server port must be an integer\n" |
| 2194 | msgstr "" | 2186 | msgstr "" |
| 2195 | 2187 | ||
| 2196 | #: plugins/check_nt.c:588 | 2188 | #: plugins/check_nt.c:593 |
| 2197 | msgid "You must provide a server address or host name" | 2189 | msgid "You must provide a server address or host name" |
| 2198 | msgstr "" | 2190 | msgstr "" |
| 2199 | 2191 | ||
| 2200 | #: plugins/check_nt.c:594 | 2192 | #: plugins/check_nt.c:599 |
| 2201 | msgid "None" | 2193 | msgid "None" |
| 2202 | msgstr "" | 2194 | msgstr "" |
| 2203 | 2195 | ||
| 2204 | #: plugins/check_nt.c:607 | 2196 | #: plugins/check_nt.c:612 |
| 2205 | msgid "could not fetch information from server\n" | 2197 | msgid "could not fetch information from server\n" |
| 2206 | msgstr "" | 2198 | msgstr "" |
| 2207 | 2199 | ||
| 2208 | #: plugins/check_nt.c:651 | 2200 | #: plugins/check_nt.c:656 |
| 2209 | msgid "This plugin collects data from the NSClient service running on a" | 2201 | msgid "This plugin collects data from the NSClient service running on a" |
| 2210 | msgstr "" | 2202 | msgstr "" |
| 2211 | 2203 | ||
| 2212 | #: plugins/check_nt.c:652 | 2204 | #: plugins/check_nt.c:657 |
| 2213 | msgid "Windows NT/2000/XP/2003 server." | 2205 | msgid "Windows NT/2000/XP/2003 server." |
| 2214 | msgstr "" | 2206 | msgstr "" |
| 2215 | 2207 | ||
| 2216 | #: plugins/check_nt.c:663 | 2208 | #: plugins/check_nt.c:668 |
| 2217 | msgid "Name of the host to check" | 2209 | msgid "Name of the host to check" |
| 2218 | msgstr "" | 2210 | msgstr "" |
| 2219 | 2211 | ||
| 2220 | #: plugins/check_nt.c:665 | 2212 | #: plugins/check_nt.c:670 |
| 2221 | msgid "Optional port number (default: " | 2213 | msgid "Optional port number (default: " |
| 2222 | msgstr "" | 2214 | msgstr "" |
| 2223 | 2215 | ||
| 2224 | #: plugins/check_nt.c:668 | 2216 | #: plugins/check_nt.c:673 |
| 2225 | msgid "Password needed for the request" | 2217 | msgid "Password needed for the request" |
| 2226 | msgstr "" | 2218 | msgstr "" |
| 2227 | 2219 | ||
| 2228 | #: plugins/check_nt.c:670 plugins/check_nwstat.c:1661 | 2220 | #: plugins/check_nt.c:675 plugins/check_nwstat.c:1661 |
| 2229 | #: plugins/check_overcr.c:432 | 2221 | #: plugins/check_overcr.c:432 |
| 2230 | msgid "Threshold which will result in a warning status" | 2222 | msgid "Threshold which will result in a warning status" |
| 2231 | msgstr "" | 2223 | msgstr "" |
| 2232 | 2224 | ||
| 2233 | #: plugins/check_nt.c:672 plugins/check_nwstat.c:1663 | 2225 | #: plugins/check_nt.c:677 plugins/check_nwstat.c:1663 |
| 2234 | #: plugins/check_overcr.c:434 | 2226 | #: plugins/check_overcr.c:434 |
| 2235 | msgid "Threshold which will result in a critical status" | 2227 | msgid "Threshold which will result in a critical status" |
| 2236 | msgstr "" | 2228 | msgstr "" |
| 2237 | 2229 | ||
| 2238 | #: plugins/check_nt.c:674 | 2230 | #: plugins/check_nt.c:679 |
| 2239 | msgid "Seconds before connection attempt times out (default: " | 2231 | msgid "Seconds before connection attempt times out (default: " |
| 2240 | msgstr "" | 2232 | msgstr "" |
| 2241 | 2233 | ||
| 2242 | #: plugins/check_nt.c:676 | 2234 | #: plugins/check_nt.c:681 |
| 2243 | msgid "Parameters passed to specified check (see below)" | 2235 | msgid "Parameters passed to specified check (see below)" |
| 2244 | msgstr "" | 2236 | msgstr "" |
| 2245 | 2237 | ||
| 2246 | #: plugins/check_nt.c:678 | 2238 | #: plugins/check_nt.c:683 |
| 2247 | msgid "Display options (currently only SHOWALL works)" | 2239 | msgid "Display options (currently only SHOWALL works)" |
| 2248 | msgstr "" | 2240 | msgstr "" |
| 2249 | 2241 | ||
| 2250 | #: plugins/check_nt.c:680 | 2242 | #: plugins/check_nt.c:685 |
| 2251 | msgid "Return UNKNOWN on timeouts" | 2243 | msgid "Return UNKNOWN on timeouts" |
| 2252 | msgstr "" | 2244 | msgstr "" |
| 2253 | 2245 | ||
| 2254 | #: plugins/check_nt.c:683 | 2246 | #: plugins/check_nt.c:688 |
| 2255 | msgid "Print this help screen" | 2247 | msgid "Print this help screen" |
| 2256 | msgstr "" | 2248 | msgstr "" |
| 2257 | 2249 | ||
| 2258 | #: plugins/check_nt.c:685 | 2250 | #: plugins/check_nt.c:690 |
| 2259 | msgid "Print version information" | 2251 | msgid "Print version information" |
| 2260 | msgstr "" | 2252 | msgstr "" |
| 2261 | 2253 | ||
| 2262 | #: plugins/check_nt.c:687 | 2254 | #: plugins/check_nt.c:692 |
| 2263 | msgid "Variable to check" | 2255 | msgid "Variable to check" |
| 2264 | msgstr "" | 2256 | msgstr "" |
| 2265 | 2257 | ||
| 2266 | #: plugins/check_nt.c:688 | 2258 | #: plugins/check_nt.c:693 |
| 2267 | msgid "Valid variables are:" | 2259 | msgid "Valid variables are:" |
| 2268 | msgstr "" | 2260 | msgstr "" |
| 2269 | 2261 | ||
| 2270 | #: plugins/check_nt.c:690 | 2262 | #: plugins/check_nt.c:695 |
| 2271 | msgid "Get the NSClient version" | 2263 | msgid "Get the NSClient version" |
| 2272 | msgstr "" | 2264 | msgstr "" |
| 2273 | 2265 | ||
| 2274 | #: plugins/check_nt.c:691 | 2266 | #: plugins/check_nt.c:696 |
| 2275 | msgid "If -l <version> is specified, will return warning if versions differ." | 2267 | msgid "If -l <version> is specified, will return warning if versions differ." |
| 2276 | msgstr "" | 2268 | msgstr "" |
| 2277 | 2269 | ||
| 2278 | #: plugins/check_nt.c:693 | 2270 | #: plugins/check_nt.c:698 |
| 2279 | msgid "Average CPU load on last x minutes." | 2271 | msgid "Average CPU load on last x minutes." |
| 2280 | msgstr "" | 2272 | msgstr "" |
| 2281 | 2273 | ||
| 2282 | #: plugins/check_nt.c:694 | 2274 | #: plugins/check_nt.c:699 |
| 2283 | msgid "Request a -l parameter with the following syntax:" | 2275 | msgid "Request a -l parameter with the following syntax:" |
| 2284 | msgstr "" | 2276 | msgstr "" |
| 2285 | 2277 | ||
| 2286 | #: plugins/check_nt.c:695 | 2278 | #: plugins/check_nt.c:700 |
| 2287 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." | 2279 | msgid "-l <minutes range>,<warning threshold>,<critical threshold>." |
| 2288 | msgstr "" | 2280 | msgstr "" |
| 2289 | 2281 | ||
| 2290 | #: plugins/check_nt.c:696 | 2282 | #: plugins/check_nt.c:701 |
| 2291 | msgid "<minute range> should be less than 24*60." | 2283 | msgid "<minute range> should be less than 24*60." |
| 2292 | msgstr "" | 2284 | msgstr "" |
| 2293 | 2285 | ||
| 2294 | #: plugins/check_nt.c:697 | 2286 | #: plugins/check_nt.c:702 |
| 2295 | msgid "" | 2287 | msgid "" |
| 2296 | "Thresholds are percentage and up to 10 requests can be done in one shot." | 2288 | "Thresholds are percentage and up to 10 requests can be done in one shot." |
| 2297 | msgstr "" | 2289 | msgstr "" |
| 2298 | 2290 | ||
| 2299 | #: plugins/check_nt.c:700 | 2291 | #: plugins/check_nt.c:705 |
| 2300 | msgid "Get the uptime of the machine." | 2292 | msgid "Get the uptime of the machine." |
| 2301 | msgstr "" | 2293 | msgstr "" |
| 2302 | 2294 | ||
| 2303 | #: plugins/check_nt.c:701 | 2295 | #: plugins/check_nt.c:706 |
| 2304 | msgid "No specific parameters. No warning or critical threshold" | 2296 | msgid "No specific parameters. No warning or critical threshold" |
| 2305 | msgstr "" | 2297 | msgstr "" |
| 2306 | 2298 | ||
| 2307 | #: plugins/check_nt.c:703 | 2299 | #: plugins/check_nt.c:708 |
| 2308 | msgid "Size and percentage of disk use." | 2300 | msgid "Size and percentage of disk use." |
| 2309 | msgstr "" | 2301 | msgstr "" |
| 2310 | 2302 | ||
| 2311 | #: plugins/check_nt.c:704 | 2303 | #: plugins/check_nt.c:709 |
| 2312 | msgid "Request a -l parameter containing the drive letter only." | 2304 | msgid "Request a -l parameter containing the drive letter only." |
| 2313 | msgstr "" | 2305 | msgstr "" |
| 2314 | 2306 | ||
| 2315 | #: plugins/check_nt.c:705 plugins/check_nt.c:708 | 2307 | #: plugins/check_nt.c:710 plugins/check_nt.c:713 |
| 2316 | msgid "Warning and critical thresholds can be specified with -w and -c." | 2308 | msgid "Warning and critical thresholds can be specified with -w and -c." |
| 2317 | msgstr "" | 2309 | msgstr "" |
| 2318 | 2310 | ||
| 2319 | #: plugins/check_nt.c:707 | 2311 | #: plugins/check_nt.c:712 |
| 2320 | msgid "Memory use." | 2312 | msgid "Memory use." |
| 2321 | msgstr "" | 2313 | msgstr "" |
| 2322 | 2314 | ||
| 2323 | #: plugins/check_nt.c:710 | 2315 | #: plugins/check_nt.c:715 |
| 2324 | msgid "Check the state of one or several services." | 2316 | msgid "Check the state of one or several services." |
| 2325 | msgstr "" | 2317 | msgstr "" |
| 2326 | 2318 | ||
| 2327 | #: plugins/check_nt.c:711 plugins/check_nt.c:720 | 2319 | #: plugins/check_nt.c:716 plugins/check_nt.c:725 |
| 2328 | msgid "Request a -l parameters with the following syntax:" | 2320 | msgid "Request a -l parameters with the following syntax:" |
| 2329 | msgstr "" | 2321 | msgstr "" |
| 2330 | 2322 | ||
| 2331 | #: plugins/check_nt.c:712 | 2323 | #: plugins/check_nt.c:717 |
| 2332 | msgid "-l <service1>,<service2>,<service3>,..." | 2324 | msgid "-l <service1>,<service2>,<service3>,..." |
| 2333 | msgstr "" | 2325 | msgstr "" |
| 2334 | 2326 | ||
| 2335 | #: plugins/check_nt.c:713 | 2327 | #: plugins/check_nt.c:718 |
| 2336 | msgid "You can specify -d SHOWALL in case you want to see working services" | 2328 | msgid "You can specify -d SHOWALL in case you want to see working services" |
| 2337 | msgstr "" | 2329 | msgstr "" |
| 2338 | 2330 | ||
| 2339 | #: plugins/check_nt.c:714 | 2331 | #: plugins/check_nt.c:719 |
| 2340 | msgid "in the returned string." | 2332 | msgid "in the returned string." |
| 2341 | msgstr "" | 2333 | msgstr "" |
| 2342 | 2334 | ||
| 2343 | #: plugins/check_nt.c:716 | 2335 | #: plugins/check_nt.c:721 |
| 2344 | msgid "Check if one or several process are running." | 2336 | msgid "Check if one or several process are running." |
| 2345 | msgstr "" | 2337 | msgstr "" |
| 2346 | 2338 | ||
| 2347 | #: plugins/check_nt.c:717 | 2339 | #: plugins/check_nt.c:722 |
| 2348 | msgid "Same syntax as SERVICESTATE." | 2340 | msgid "Same syntax as SERVICESTATE." |
| 2349 | msgstr "" | 2341 | msgstr "" |
| 2350 | 2342 | ||
| 2351 | #: plugins/check_nt.c:719 | 2343 | #: plugins/check_nt.c:724 |
| 2352 | msgid "Check any performance counter of Windows NT/2000." | 2344 | msgid "Check any performance counter of Windows NT/2000." |
| 2353 | msgstr "" | 2345 | msgstr "" |
| 2354 | 2346 | ||
| 2355 | #: plugins/check_nt.c:721 | 2347 | #: plugins/check_nt.c:726 |
| 2356 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" | 2348 | msgid "-l \"\\\\<performance object>\\\\counter\",\"<description>" |
| 2357 | msgstr "" | 2349 | msgstr "" |
| 2358 | 2350 | ||
| 2359 | #: plugins/check_nt.c:722 | 2351 | #: plugins/check_nt.c:727 |
| 2360 | msgid "The <description> parameter is optional and is given to a printf " | 2352 | msgid "The <description> parameter is optional and is given to a printf " |
| 2361 | msgstr "" | 2353 | msgstr "" |
| 2362 | 2354 | ||
| 2363 | #: plugins/check_nt.c:723 | 2355 | #: plugins/check_nt.c:728 |
| 2364 | msgid "output command which requires a float parameter." | 2356 | msgid "output command which requires a float parameter." |
| 2365 | msgstr "" | 2357 | msgstr "" |
| 2366 | 2358 | ||
| 2367 | #: plugins/check_nt.c:724 | 2359 | #: plugins/check_nt.c:729 |
| 2368 | #, c-format | 2360 | #, c-format |
| 2369 | msgid "If <description> does not include \"%%\", it is used as a label." | 2361 | msgid "If <description> does not include \"%%\", it is used as a label." |
| 2370 | msgstr "" | 2362 | msgstr "" |
| 2371 | 2363 | ||
| 2372 | #: plugins/check_nt.c:725 plugins/check_nt.c:740 | 2364 | #: plugins/check_nt.c:730 plugins/check_nt.c:745 |
| 2373 | msgid "Some examples:" | 2365 | msgid "Some examples:" |
| 2374 | msgstr "" | 2366 | msgstr "" |
| 2375 | 2367 | ||
| 2376 | #: plugins/check_nt.c:729 | 2368 | #: plugins/check_nt.c:734 |
| 2377 | msgid "Check any performance counter object of Windows NT/2000." | 2369 | msgid "Check any performance counter object of Windows NT/2000." |
| 2378 | msgstr "" | 2370 | msgstr "" |
| 2379 | 2371 | ||
| 2380 | #: plugins/check_nt.c:730 | 2372 | #: plugins/check_nt.c:735 |
| 2381 | msgid "" | 2373 | msgid "" |
| 2382 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" | 2374 | "Syntax: check_nt -H <hostname> -p <port> -v INSTANCES -l <counter object>" |
| 2383 | msgstr "" | 2375 | msgstr "" |
| 2384 | 2376 | ||
| 2385 | #: plugins/check_nt.c:731 | 2377 | #: plugins/check_nt.c:736 |
| 2386 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," | 2378 | msgid "<counter object> is a Windows Perfmon Counter object (eg. Process)," |
| 2387 | msgstr "" | 2379 | msgstr "" |
| 2388 | 2380 | ||
| 2389 | #: plugins/check_nt.c:732 | 2381 | #: plugins/check_nt.c:737 |
| 2390 | msgid "if it is two words, it should be enclosed in quotes" | 2382 | msgid "if it is two words, it should be enclosed in quotes" |
| 2391 | msgstr "" | 2383 | msgstr "" |
| 2392 | 2384 | ||
| 2393 | #: plugins/check_nt.c:733 | 2385 | #: plugins/check_nt.c:738 |
| 2394 | msgid "The returned results will be a comma-separated list of instances on " | 2386 | msgid "The returned results will be a comma-separated list of instances on " |
| 2395 | msgstr "" | 2387 | msgstr "" |
| 2396 | 2388 | ||
| 2397 | #: plugins/check_nt.c:734 | 2389 | #: plugins/check_nt.c:739 |
| 2398 | msgid " the selected computer for that object." | 2390 | msgid " the selected computer for that object." |
| 2399 | msgstr "" | 2391 | msgstr "" |
| 2400 | 2392 | ||
| 2401 | #: plugins/check_nt.c:735 | 2393 | #: plugins/check_nt.c:740 |
| 2402 | msgid "" | 2394 | msgid "" |
| 2403 | "The purpose of this is to be run from command line to determine what " | 2395 | "The purpose of this is to be run from command line to determine what " |
| 2404 | "instances" | 2396 | "instances" |
| 2405 | msgstr "" | 2397 | msgstr "" |
| 2406 | 2398 | ||
| 2407 | #: plugins/check_nt.c:736 | 2399 | #: plugins/check_nt.c:741 |
| 2408 | msgid "" | 2400 | msgid "" |
| 2409 | " are available for monitoring without having to log onto the Windows server" | 2401 | " are available for monitoring without having to log onto the Windows server" |
| 2410 | msgstr "" | 2402 | msgstr "" |
| 2411 | 2403 | ||
| 2412 | #: plugins/check_nt.c:737 | 2404 | #: plugins/check_nt.c:742 |
| 2413 | msgid " to run Perfmon directly." | 2405 | msgid " to run Perfmon directly." |
| 2414 | msgstr "" | 2406 | msgstr "" |
| 2415 | 2407 | ||
| 2416 | #: plugins/check_nt.c:738 | 2408 | #: plugins/check_nt.c:743 |
| 2417 | msgid "It can also be used in scripts that automatically create Nagios service" | 2409 | msgid "It can also be used in scripts that automatically create Nagios service" |
| 2418 | msgstr "" | 2410 | msgstr "" |
| 2419 | 2411 | ||
| 2420 | #: plugins/check_nt.c:739 | 2412 | #: plugins/check_nt.c:744 |
| 2421 | msgid " configuration files." | 2413 | msgid " configuration files." |
| 2422 | msgstr "" | 2414 | msgstr "" |
| 2423 | 2415 | ||
| 2424 | #: plugins/check_nt.c:741 | 2416 | #: plugins/check_nt.c:746 |
| 2425 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" | 2417 | msgid "check_nt -H 192.168.1.1 -p 1248 -v INSTANCES -l Process" |
| 2426 | msgstr "" | 2418 | msgstr "" |
| 2427 | 2419 | ||
| 2428 | #: plugins/check_nt.c:744 | 2420 | #: plugins/check_nt.c:749 |
| 2429 | msgid "" | 2421 | msgid "" |
| 2430 | "- The NSClient service should be running on the server to get any information" | 2422 | "- The NSClient service should be running on the server to get any information" |
| 2431 | msgstr "" | 2423 | msgstr "" |
| 2432 | 2424 | ||
| 2433 | #: plugins/check_nt.c:746 | 2425 | #: plugins/check_nt.c:751 |
| 2434 | msgid "- Critical thresholds should be lower than warning thresholds" | 2426 | msgid "- Critical thresholds should be lower than warning thresholds" |
| 2435 | msgstr "" | 2427 | msgstr "" |
| 2436 | 2428 | ||
| 2437 | #: plugins/check_nt.c:747 | 2429 | #: plugins/check_nt.c:752 |
| 2438 | msgid "- Default port 1248 is sometimes in use by other services. The error" | 2430 | msgid "- Default port 1248 is sometimes in use by other services. The error" |
| 2439 | msgstr "" | 2431 | msgstr "" |
| 2440 | 2432 | ||
| 2441 | #: plugins/check_nt.c:748 | 2433 | #: plugins/check_nt.c:753 |
| 2442 | msgid "" | 2434 | msgid "" |
| 2443 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." | 2435 | "output when this happens contains \"Cannot map xxxxx to protocol number\"." |
| 2444 | msgstr "" | 2436 | msgstr "" |
| 2445 | 2437 | ||
| 2446 | #: plugins/check_nt.c:749 | 2438 | #: plugins/check_nt.c:754 |
| 2447 | msgid "One fix for this is to change the port to something else on check_nt " | 2439 | msgid "One fix for this is to change the port to something else on check_nt " |
| 2448 | msgstr "" | 2440 | msgstr "" |
| 2449 | 2441 | ||
| 2450 | #: plugins/check_nt.c:750 | 2442 | #: plugins/check_nt.c:755 |
| 2451 | msgid "and on the client service it's connecting to." | 2443 | msgid "and on the client service it's connecting to." |
| 2452 | msgstr "" | 2444 | msgstr "" |
| 2453 | 2445 | ||
| @@ -3524,160 +3516,160 @@ msgstr "" | |||
| 3524 | msgid " with %s" | 3516 | msgid " with %s" |
| 3525 | msgstr "" | 3517 | msgstr "" |
| 3526 | 3518 | ||
| 3527 | #: plugins/check_procs.c:378 | 3519 | #: plugins/check_procs.c:380 |
| 3528 | msgid "Critical Process Count must be an integer!" | 3520 | msgid "Critical Process Count must be an integer!" |
| 3529 | msgstr "" | 3521 | msgstr "" |
| 3530 | 3522 | ||
| 3531 | #: plugins/check_procs.c:390 | 3523 | #: plugins/check_procs.c:392 |
| 3532 | msgid "Warning Process Count must be an integer!" | 3524 | msgid "Warning Process Count must be an integer!" |
| 3533 | msgstr "" | 3525 | msgstr "" |
| 3534 | 3526 | ||
| 3535 | #: plugins/check_procs.c:398 | 3527 | #: plugins/check_procs.c:400 |
| 3536 | msgid "Parent Process ID must be an integer!" | 3528 | msgid "Parent Process ID must be an integer!" |
| 3537 | msgstr "" | 3529 | msgstr "" |
| 3538 | 3530 | ||
| 3539 | #: plugins/check_procs.c:404 plugins/check_procs.c:518 | 3531 | #: plugins/check_procs.c:406 plugins/check_procs.c:527 |
| 3540 | #, c-format | 3532 | #, c-format |
| 3541 | msgid "%s%sSTATE = %s" | 3533 | msgid "%s%sSTATE = %s" |
| 3542 | msgstr "" | 3534 | msgstr "" |
| 3543 | 3535 | ||
| 3544 | #: plugins/check_procs.c:413 | 3536 | #: plugins/check_procs.c:415 |
| 3545 | msgid "UID was not found" | 3537 | msgid "UID was not found" |
| 3546 | msgstr "" | 3538 | msgstr "" |
| 3547 | 3539 | ||
| 3548 | #: plugins/check_procs.c:419 | 3540 | #: plugins/check_procs.c:421 |
| 3549 | msgid "User name was not found" | 3541 | msgid "User name was not found" |
| 3550 | msgstr "" | 3542 | msgstr "" |
| 3551 | 3543 | ||
| 3552 | #: plugins/check_procs.c:434 | 3544 | #: plugins/check_procs.c:436 |
| 3553 | #, c-format | 3545 | #, c-format |
| 3554 | msgid "%s%scommand name '%s'" | 3546 | msgid "%s%scommand name '%s'" |
| 3555 | msgstr "" | 3547 | msgstr "" |
| 3556 | 3548 | ||
| 3557 | #: plugins/check_procs.c:462 | 3549 | #: plugins/check_procs.c:471 |
| 3558 | msgid "RSS must be an integer!" | 3550 | msgid "RSS must be an integer!" |
| 3559 | msgstr "" | 3551 | msgstr "" |
| 3560 | 3552 | ||
| 3561 | #: plugins/check_procs.c:469 | 3553 | #: plugins/check_procs.c:478 |
| 3562 | msgid "VSZ must be an integer!" | 3554 | msgid "VSZ must be an integer!" |
| 3563 | msgstr "" | 3555 | msgstr "" |
| 3564 | 3556 | ||
| 3565 | #: plugins/check_procs.c:477 | 3557 | #: plugins/check_procs.c:486 |
| 3566 | msgid "PCPU must be a float!" | 3558 | msgid "PCPU must be a float!" |
| 3567 | msgstr "" | 3559 | msgstr "" |
| 3568 | 3560 | ||
| 3569 | #: plugins/check_procs.c:501 | 3561 | #: plugins/check_procs.c:510 |
| 3570 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" | 3562 | msgid "Metric must be one of PROCS, VSZ, RSS, CPU, ELAPSED!" |
| 3571 | msgstr "" | 3563 | msgstr "" |
| 3572 | 3564 | ||
| 3573 | #: plugins/check_procs.c:537 | 3565 | #: plugins/check_procs.c:546 |
| 3574 | #, c-format | 3566 | #, c-format |
| 3575 | msgid "wmax (%d) cannot be greater than cmax (%d)\n" | 3567 | msgid "wmax (%d) cannot be greater than cmax (%d)\n" |
| 3576 | msgstr "" | 3568 | msgstr "" |
| 3577 | 3569 | ||
| 3578 | #: plugins/check_procs.c:541 | 3570 | #: plugins/check_procs.c:550 |
| 3579 | #, c-format | 3571 | #, c-format |
| 3580 | msgid "wmin (%d) cannot be less than cmin (%d)\n" | 3572 | msgid "wmin (%d) cannot be less than cmin (%d)\n" |
| 3581 | msgstr "" | 3573 | msgstr "" |
| 3582 | 3574 | ||
| 3583 | #: plugins/check_procs.c:678 | 3575 | #: plugins/check_procs.c:687 |
| 3584 | msgid "" | 3576 | msgid "" |
| 3585 | "Checks all processes and generates WARNING or CRITICAL states if the " | 3577 | "Checks all processes and generates WARNING or CRITICAL states if the " |
| 3586 | "specified" | 3578 | "specified" |
| 3587 | msgstr "" | 3579 | msgstr "" |
| 3588 | 3580 | ||
| 3589 | #: plugins/check_procs.c:679 | 3581 | #: plugins/check_procs.c:688 |
| 3590 | msgid "" | 3582 | msgid "" |
| 3591 | "metric is outside the required threshold ranges. The metric defaults to " | 3583 | "metric is outside the required threshold ranges. The metric defaults to " |
| 3592 | "number" | 3584 | "number" |
| 3593 | msgstr "" | 3585 | msgstr "" |
| 3594 | 3586 | ||
| 3595 | #: plugins/check_procs.c:680 | 3587 | #: plugins/check_procs.c:689 |
| 3596 | msgid "" | 3588 | msgid "" |
| 3597 | "of processes. Search filters can be applied to limit the processes to check." | 3589 | "of processes. Search filters can be applied to limit the processes to check." |
| 3598 | msgstr "" | 3590 | msgstr "" |
| 3599 | 3591 | ||
| 3600 | #: plugins/check_procs.c:689 | 3592 | #: plugins/check_procs.c:698 |
| 3601 | msgid "Generate warning state if metric is outside this range" | 3593 | msgid "Generate warning state if metric is outside this range" |
| 3602 | msgstr "" | 3594 | msgstr "" |
| 3603 | 3595 | ||
| 3604 | #: plugins/check_procs.c:691 | 3596 | #: plugins/check_procs.c:700 |
| 3605 | msgid "Generate critical state if metric is outside this range" | 3597 | msgid "Generate critical state if metric is outside this range" |
| 3606 | msgstr "" | 3598 | msgstr "" |
| 3607 | 3599 | ||
| 3608 | #: plugins/check_procs.c:693 | 3600 | #: plugins/check_procs.c:702 |
| 3609 | msgid "Check thresholds against metric. Valid types:" | 3601 | msgid "Check thresholds against metric. Valid types:" |
| 3610 | msgstr "" | 3602 | msgstr "" |
| 3611 | 3603 | ||
| 3612 | #: plugins/check_procs.c:694 | 3604 | #: plugins/check_procs.c:703 |
| 3613 | msgid "PROCS - number of processes (default)" | 3605 | msgid "PROCS - number of processes (default)" |
| 3614 | msgstr "" | 3606 | msgstr "" |
| 3615 | 3607 | ||
| 3616 | #: plugins/check_procs.c:695 | 3608 | #: plugins/check_procs.c:704 |
| 3617 | msgid "VSZ - virtual memory size" | 3609 | msgid "VSZ - virtual memory size" |
| 3618 | msgstr "" | 3610 | msgstr "" |
| 3619 | 3611 | ||
| 3620 | #: plugins/check_procs.c:696 | 3612 | #: plugins/check_procs.c:705 |
| 3621 | msgid "RSS - resident set memory size" | 3613 | msgid "RSS - resident set memory size" |
| 3622 | msgstr "" | 3614 | msgstr "" |
| 3623 | 3615 | ||
| 3624 | #: plugins/check_procs.c:697 | 3616 | #: plugins/check_procs.c:706 |
| 3625 | msgid "CPU - percentage CPU" | 3617 | msgid "CPU - percentage CPU" |
| 3626 | msgstr "" | 3618 | msgstr "" |
| 3627 | 3619 | ||
| 3628 | #: plugins/check_procs.c:700 | 3620 | #: plugins/check_procs.c:709 |
| 3629 | msgid "ELAPSED - time elapsed in seconds" | 3621 | msgid "ELAPSED - time elapsed in seconds" |
| 3630 | msgstr "" | 3622 | msgstr "" |
| 3631 | 3623 | ||
| 3632 | #: plugins/check_procs.c:705 | 3624 | #: plugins/check_procs.c:714 |
| 3633 | msgid "Extra information. Up to 3 verbosity levels" | 3625 | msgid "Extra information. Up to 3 verbosity levels" |
| 3634 | msgstr "" | 3626 | msgstr "" |
| 3635 | 3627 | ||
| 3636 | #: plugins/check_procs.c:710 | 3628 | #: plugins/check_procs.c:719 |
| 3637 | msgid "Only scan for processes that have, in the output of `ps`, one or" | 3629 | msgid "Only scan for processes that have, in the output of `ps`, one or" |
| 3638 | msgstr "" | 3630 | msgstr "" |
| 3639 | 3631 | ||
| 3640 | #: plugins/check_procs.c:711 | 3632 | #: plugins/check_procs.c:720 |
| 3641 | msgid "more of the status flags you specify (for example R, Z, S, RS," | 3633 | msgid "more of the status flags you specify (for example R, Z, S, RS," |
| 3642 | msgstr "" | 3634 | msgstr "" |
| 3643 | 3635 | ||
| 3644 | #: plugins/check_procs.c:712 | 3636 | #: plugins/check_procs.c:721 |
| 3645 | msgid "RSZDT, plus others based on the output of your 'ps' command)." | 3637 | msgid "RSZDT, plus others based on the output of your 'ps' command)." |
| 3646 | msgstr "" | 3638 | msgstr "" |
| 3647 | 3639 | ||
| 3648 | #: plugins/check_procs.c:714 | 3640 | #: plugins/check_procs.c:723 |
| 3649 | msgid "Only scan for children of the parent process ID indicated." | 3641 | msgid "Only scan for children of the parent process ID indicated." |
| 3650 | msgstr "" | 3642 | msgstr "" |
| 3651 | 3643 | ||
| 3652 | #: plugins/check_procs.c:716 | 3644 | #: plugins/check_procs.c:725 |
| 3653 | msgid "Only scan for processes with VSZ higher than indicated." | 3645 | msgid "Only scan for processes with VSZ higher than indicated." |
| 3654 | msgstr "" | 3646 | msgstr "" |
| 3655 | 3647 | ||
| 3656 | #: plugins/check_procs.c:718 | 3648 | #: plugins/check_procs.c:727 |
| 3657 | msgid "Only scan for processes with RSS higher than indicated." | 3649 | msgid "Only scan for processes with RSS higher than indicated." |
| 3658 | msgstr "" | 3650 | msgstr "" |
| 3659 | 3651 | ||
| 3660 | #: plugins/check_procs.c:720 | 3652 | #: plugins/check_procs.c:729 |
| 3661 | msgid "Only scan for processes with PCPU higher than indicated." | 3653 | msgid "Only scan for processes with PCPU higher than indicated." |
| 3662 | msgstr "" | 3654 | msgstr "" |
| 3663 | 3655 | ||
| 3664 | #: plugins/check_procs.c:722 | 3656 | #: plugins/check_procs.c:731 |
| 3665 | msgid "Only scan for processes with user name or ID indicated." | 3657 | msgid "Only scan for processes with user name or ID indicated." |
| 3666 | msgstr "" | 3658 | msgstr "" |
| 3667 | 3659 | ||
| 3668 | #: plugins/check_procs.c:724 | 3660 | #: plugins/check_procs.c:733 |
| 3669 | msgid "Only scan for processes with args that contain STRING." | 3661 | msgid "Only scan for processes with args that contain STRING." |
| 3670 | msgstr "" | 3662 | msgstr "" |
| 3671 | 3663 | ||
| 3672 | #: plugins/check_procs.c:726 | 3664 | #: plugins/check_procs.c:735 |
| 3673 | msgid "Only scan for processes with args that contain the regex STRING." | 3665 | msgid "Only scan for processes with args that contain the regex STRING." |
| 3674 | msgstr "" | 3666 | msgstr "" |
| 3675 | 3667 | ||
| 3676 | #: plugins/check_procs.c:728 | 3668 | #: plugins/check_procs.c:737 |
| 3677 | msgid "Only scan for exact matches of COMMAND (without path)." | 3669 | msgid "Only scan for exact matches of COMMAND (without path)." |
| 3678 | msgstr "" | 3670 | msgstr "" |
| 3679 | 3671 | ||
| 3680 | #: plugins/check_procs.c:730 | 3672 | #: plugins/check_procs.c:739 |
| 3681 | #, c-format | 3673 | #, c-format |
| 3682 | msgid "" | 3674 | msgid "" |
| 3683 | "\n" | 3675 | "\n" |
| @@ -3687,7 +3679,7 @@ msgid "" | |||
| 3687 | "\n" | 3679 | "\n" |
| 3688 | msgstr "" | 3680 | msgstr "" |
| 3689 | 3681 | ||
| 3690 | #: plugins/check_procs.c:735 | 3682 | #: plugins/check_procs.c:744 |
| 3691 | #, c-format | 3683 | #, c-format |
| 3692 | msgid "" | 3684 | msgid "" |
| 3693 | "This plugin checks the number of currently running processes and\n" | 3685 | "This plugin checks the number of currently running processes and\n" |
| @@ -3698,27 +3690,27 @@ msgid "" | |||
| 3698 | "\n" | 3690 | "\n" |
| 3699 | msgstr "" | 3691 | msgstr "" |
| 3700 | 3692 | ||
| 3701 | #: plugins/check_procs.c:744 | 3693 | #: plugins/check_procs.c:753 |
| 3702 | msgid "Warning if not two processes with command name portsentry." | 3694 | msgid "Warning if not two processes with command name portsentry." |
| 3703 | msgstr "" | 3695 | msgstr "" |
| 3704 | 3696 | ||
| 3705 | #: plugins/check_procs.c:745 | 3697 | #: plugins/check_procs.c:754 |
| 3706 | msgid "Critical if < 2 or > 1024 processes" | 3698 | msgid "Critical if < 2 or > 1024 processes" |
| 3707 | msgstr "" | 3699 | msgstr "" |
| 3708 | 3700 | ||
| 3709 | #: plugins/check_procs.c:747 | 3701 | #: plugins/check_procs.c:756 |
| 3710 | msgid "Warning alert if > 10 processes with command arguments containing" | 3702 | msgid "Warning alert if > 10 processes with command arguments containing" |
| 3711 | msgstr "" | 3703 | msgstr "" |
| 3712 | 3704 | ||
| 3713 | #: plugins/check_procs.c:748 | 3705 | #: plugins/check_procs.c:757 |
| 3714 | msgid "'/usr/local/bin/perl' and owned by root" | 3706 | msgid "'/usr/local/bin/perl' and owned by root" |
| 3715 | msgstr "" | 3707 | msgstr "" |
| 3716 | 3708 | ||
| 3717 | #: plugins/check_procs.c:750 | 3709 | #: plugins/check_procs.c:759 |
| 3718 | msgid "Alert if VSZ of any processes over 50K or 100K" | 3710 | msgid "Alert if VSZ of any processes over 50K or 100K" |
| 3719 | msgstr "" | 3711 | msgstr "" |
| 3720 | 3712 | ||
| 3721 | #: plugins/check_procs.c:752 | 3713 | #: plugins/check_procs.c:761 |
| 3722 | #, c-format | 3714 | #, c-format |
| 3723 | msgid "Alert if CPU of any processes over 10%% or 20%%" | 3715 | msgid "Alert if CPU of any processes over 10%% or 20%%" |
| 3724 | msgstr "" | 3716 | msgstr "" |
| @@ -3877,7 +3869,7 @@ msgstr "" | |||
| 3877 | msgid "Invalid REAL response received from host on port %d\n" | 3869 | msgid "Invalid REAL response received from host on port %d\n" |
| 3878 | msgstr "" | 3870 | msgstr "" |
| 3879 | 3871 | ||
| 3880 | #: plugins/check_real.c:184 plugins/check_tcp.c:292 | 3872 | #: plugins/check_real.c:184 plugins/check_tcp.c:289 |
| 3881 | #, c-format | 3873 | #, c-format |
| 3882 | msgid "No data received from host\n" | 3874 | msgid "No data received from host\n" |
| 3883 | msgstr "" | 3875 | msgstr "" |
| @@ -3887,11 +3879,11 @@ msgstr "" | |||
| 3887 | msgid "REAL %s - %d second response time\n" | 3879 | msgid "REAL %s - %d second response time\n" |
| 3888 | msgstr "" | 3880 | msgstr "" |
| 3889 | 3881 | ||
| 3890 | #: plugins/check_real.c:336 plugins/check_smtp.c:576 plugins/check_ups.c:536 | 3882 | #: plugins/check_real.c:336 plugins/check_smtp.c:578 plugins/check_ups.c:536 |
| 3891 | msgid "Warning time must be a positive integer" | 3883 | msgid "Warning time must be a positive integer" |
| 3892 | msgstr "" | 3884 | msgstr "" |
| 3893 | 3885 | ||
| 3894 | #: plugins/check_real.c:345 plugins/check_smtp.c:567 plugins/check_ups.c:527 | 3886 | #: plugins/check_real.c:345 plugins/check_smtp.c:569 plugins/check_ups.c:527 |
| 3895 | msgid "Critical time must be a positive integer" | 3887 | msgid "Critical time must be a positive integer" |
| 3896 | msgstr "" | 3888 | msgstr "" |
| 3897 | 3889 | ||
| @@ -3916,7 +3908,7 @@ msgstr "" | |||
| 3916 | msgid "This plugin will attempt to open an RTSP connection with the host." | 3908 | msgid "This plugin will attempt to open an RTSP connection with the host." |
| 3917 | msgstr "" | 3909 | msgstr "" |
| 3918 | 3910 | ||
| 3919 | #: plugins/check_real.c:438 plugins/check_smtp.c:808 | 3911 | #: plugins/check_real.c:438 plugins/check_smtp.c:827 |
| 3920 | msgid "Successul connects return STATE_OK, refusals and timeouts return" | 3912 | msgid "Successul connects return STATE_OK, refusals and timeouts return" |
| 3921 | msgstr "" | 3913 | msgstr "" |
| 3922 | 3914 | ||
| @@ -3934,498 +3926,503 @@ msgstr "" | |||
| 3934 | msgid "values." | 3926 | msgid "values." |
| 3935 | msgstr "" | 3927 | msgstr "" |
| 3936 | 3928 | ||
| 3937 | #: plugins/check_smtp.c:146 plugins/check_swap.c:265 plugins/check_swap.c:271 | 3929 | #: plugins/check_smtp.c:150 plugins/check_swap.c:265 plugins/check_swap.c:271 |
| 3938 | #, c-format | 3930 | #, c-format |
| 3939 | msgid "malloc() failed!\n" | 3931 | msgid "malloc() failed!\n" |
| 3940 | msgstr "" | 3932 | msgstr "" |
| 3941 | 3933 | ||
| 3942 | #: plugins/check_smtp.c:150 | 3934 | #: plugins/check_smtp.c:154 |
| 3943 | #, c-format | 3935 | #, c-format |
| 3944 | msgid "gethostname() failed!\n" | 3936 | msgid "gethostname() failed!\n" |
| 3945 | msgstr "" | 3937 | msgstr "" |
| 3946 | 3938 | ||
| 3947 | #: plugins/check_smtp.c:185 plugins/check_smtp.c:209 | 3939 | #: plugins/check_smtp.c:189 plugins/check_smtp.c:213 |
| 3948 | #, c-format | 3940 | #, c-format |
| 3949 | msgid "recv() failed\n" | 3941 | msgid "recv() failed\n" |
| 3950 | msgstr "" | 3942 | msgstr "" |
| 3951 | 3943 | ||
| 3952 | #: plugins/check_smtp.c:196 | 3944 | #: plugins/check_smtp.c:200 |
| 3953 | #, c-format | 3945 | #, c-format |
| 3954 | msgid "Invalid SMTP response received from host: %s\n" | 3946 | msgid "Invalid SMTP response received from host: %s\n" |
| 3955 | msgstr "" | 3947 | msgstr "" |
| 3956 | 3948 | ||
| 3957 | #: plugins/check_smtp.c:198 | 3949 | #: plugins/check_smtp.c:202 |
| 3958 | #, c-format | 3950 | #, c-format |
| 3959 | msgid "Invalid SMTP response received from host on port %d: %s\n" | 3951 | msgid "Invalid SMTP response received from host on port %d: %s\n" |
| 3960 | msgstr "" | 3952 | msgstr "" |
| 3961 | 3953 | ||
| 3962 | #: plugins/check_smtp.c:219 | 3954 | #: plugins/check_smtp.c:223 |
| 3963 | #, c-format | 3955 | #, c-format |
| 3964 | msgid "WARNING - TLS not supported by server\n" | 3956 | msgid "WARNING - TLS not supported by server\n" |
| 3965 | msgstr "" | 3957 | msgstr "" |
| 3966 | 3958 | ||
| 3967 | #: plugins/check_smtp.c:231 | 3959 | #: plugins/check_smtp.c:235 |
| 3968 | #, c-format | 3960 | #, c-format |
| 3969 | msgid "Server does not support STARTTLS\n" | 3961 | msgid "Server does not support STARTTLS\n" |
| 3970 | msgstr "" | 3962 | msgstr "" |
| 3971 | 3963 | ||
| 3972 | #: plugins/check_smtp.c:237 | 3964 | #: plugins/check_smtp.c:241 |
| 3973 | #, c-format | 3965 | #, c-format |
| 3974 | msgid "CRITICAL - Cannot create SSL context.\n" | 3966 | msgid "CRITICAL - Cannot create SSL context.\n" |
| 3975 | msgstr "" | 3967 | msgstr "" |
| 3976 | 3968 | ||
| 3977 | #: plugins/check_smtp.c:257 | 3969 | #: plugins/check_smtp.c:261 |
| 3978 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." | 3970 | msgid "SMTP UNKNOWN - Cannot send EHLO command via TLS." |
| 3979 | msgstr "" | 3971 | msgstr "" |
| 3980 | 3972 | ||
| 3981 | #: plugins/check_smtp.c:262 | 3973 | #: plugins/check_smtp.c:266 |
| 3982 | #, c-format | 3974 | #, c-format |
| 3983 | msgid "sent %s" | 3975 | msgid "sent %s" |
| 3984 | msgstr "" | 3976 | msgstr "" |
| 3985 | 3977 | ||
| 3986 | #: plugins/check_smtp.c:264 | 3978 | #: plugins/check_smtp.c:268 |
| 3987 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." | 3979 | msgid "SMTP UNKNOWN - Cannot read EHLO response via TLS." |
| 3988 | msgstr "" | 3980 | msgstr "" |
| 3989 | 3981 | ||
| 3990 | #: plugins/check_smtp.c:276 | 3982 | #: plugins/check_smtp.c:312 plugins/check_snmp.c:718 |
| 3991 | msgid "CRITICAL - Cannot retrieve server certificate." | ||
| 3992 | msgstr "" | ||
| 3993 | |||
| 3994 | #: plugins/check_smtp.c:311 plugins/check_snmp.c:722 | ||
| 3995 | #, c-format | 3983 | #, c-format |
| 3996 | msgid "Could Not Compile Regular Expression" | 3984 | msgid "Could Not Compile Regular Expression" |
| 3997 | msgstr "" | 3985 | msgstr "" |
| 3998 | 3986 | ||
| 3999 | #: plugins/check_smtp.c:320 | 3987 | #: plugins/check_smtp.c:321 |
| 4000 | #, c-format | 3988 | #, c-format |
| 4001 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" | 3989 | msgid "SMTP %s - Invalid response '%s' to command '%s'\n" |
| 4002 | msgstr "" | 3990 | msgstr "" |
| 4003 | 3991 | ||
| 4004 | #: plugins/check_smtp.c:324 plugins/check_snmp.c:453 | 3992 | #: plugins/check_smtp.c:325 plugins/check_snmp.c:449 |
| 4005 | #, c-format | 3993 | #, c-format |
| 4006 | msgid "Execute Error: %s\n" | 3994 | msgid "Execute Error: %s\n" |
| 4007 | msgstr "" | 3995 | msgstr "" |
| 4008 | 3996 | ||
| 4009 | #: plugins/check_smtp.c:338 | 3997 | #: plugins/check_smtp.c:339 |
| 4010 | #, c-format | 3998 | #, c-format |
| 4011 | msgid "no authuser specified, " | 3999 | msgid "no authuser specified, " |
| 4012 | msgstr "" | 4000 | msgstr "" |
| 4013 | 4001 | ||
| 4014 | #: plugins/check_smtp.c:343 | 4002 | #: plugins/check_smtp.c:344 |
| 4015 | #, c-format | 4003 | #, c-format |
| 4016 | msgid "no authpass specified, " | 4004 | msgid "no authpass specified, " |
| 4017 | msgstr "" | 4005 | msgstr "" |
| 4018 | 4006 | ||
| 4019 | #: plugins/check_smtp.c:350 plugins/check_smtp.c:372 plugins/check_smtp.c:393 | 4007 | #: plugins/check_smtp.c:351 plugins/check_smtp.c:373 plugins/check_smtp.c:394 |
| 4020 | #: plugins/check_smtp.c:668 | 4008 | #: plugins/check_smtp.c:685 |
| 4021 | #, c-format | 4009 | #, c-format |
| 4022 | msgid "sent %s\n" | 4010 | msgid "sent %s\n" |
| 4023 | msgstr "" | 4011 | msgstr "" |
| 4024 | 4012 | ||
| 4025 | #: plugins/check_smtp.c:353 | 4013 | #: plugins/check_smtp.c:354 |
| 4026 | #, c-format | 4014 | #, c-format |
| 4027 | msgid "recv() failed after AUTH LOGIN, " | 4015 | msgid "recv() failed after AUTH LOGIN, " |
| 4028 | msgstr "" | 4016 | msgstr "" |
| 4029 | 4017 | ||
| 4030 | #: plugins/check_smtp.c:358 plugins/check_smtp.c:380 plugins/check_smtp.c:401 | 4018 | #: plugins/check_smtp.c:359 plugins/check_smtp.c:381 plugins/check_smtp.c:402 |
| 4031 | #: plugins/check_smtp.c:679 | 4019 | #: plugins/check_smtp.c:696 |
| 4032 | #, c-format | 4020 | #, c-format |
| 4033 | msgid "received %s\n" | 4021 | msgid "received %s\n" |
| 4034 | msgstr "" | 4022 | msgstr "" |
| 4035 | 4023 | ||
| 4036 | #: plugins/check_smtp.c:362 | 4024 | #: plugins/check_smtp.c:363 |
| 4037 | #, c-format | 4025 | #, c-format |
| 4038 | msgid "invalid response received after AUTH LOGIN, " | 4026 | msgid "invalid response received after AUTH LOGIN, " |
| 4039 | msgstr "" | 4027 | msgstr "" |
| 4040 | 4028 | ||
| 4041 | #: plugins/check_smtp.c:376 | 4029 | #: plugins/check_smtp.c:377 |
| 4042 | #, c-format | 4030 | #, c-format |
| 4043 | msgid "recv() failed after sending authuser, " | 4031 | msgid "recv() failed after sending authuser, " |
| 4044 | msgstr "" | 4032 | msgstr "" |
| 4045 | 4033 | ||
| 4046 | #: plugins/check_smtp.c:384 | 4034 | #: plugins/check_smtp.c:385 |
| 4047 | #, c-format | 4035 | #, c-format |
| 4048 | msgid "invalid response received after authuser, " | 4036 | msgid "invalid response received after authuser, " |
| 4049 | msgstr "" | 4037 | msgstr "" |
| 4050 | 4038 | ||
| 4051 | #: plugins/check_smtp.c:397 | 4039 | #: plugins/check_smtp.c:398 |
| 4052 | #, c-format | 4040 | #, c-format |
| 4053 | msgid "recv() failed after sending authpass, " | 4041 | msgid "recv() failed after sending authpass, " |
| 4054 | msgstr "" | 4042 | msgstr "" |
| 4055 | 4043 | ||
| 4056 | #: plugins/check_smtp.c:405 | 4044 | #: plugins/check_smtp.c:406 |
| 4057 | #, c-format | 4045 | #, c-format |
| 4058 | msgid "invalid response received after authpass, " | 4046 | msgid "invalid response received after authpass, " |
| 4059 | msgstr "" | 4047 | msgstr "" |
| 4060 | 4048 | ||
| 4061 | #: plugins/check_smtp.c:412 | 4049 | #: plugins/check_smtp.c:413 |
| 4062 | #, c-format | 4050 | #, c-format |
| 4063 | msgid "only authtype LOGIN is supported, " | 4051 | msgid "only authtype LOGIN is supported, " |
| 4064 | msgstr "" | 4052 | msgstr "" |
| 4065 | 4053 | ||
| 4066 | #: plugins/check_smtp.c:436 | 4054 | #: plugins/check_smtp.c:437 |
| 4067 | #, c-format | 4055 | #, c-format |
| 4068 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" | 4056 | msgid "SMTP %s - %s%.3f sec. response time%s%s|%s\n" |
| 4069 | msgstr "" | 4057 | msgstr "" |
| 4070 | 4058 | ||
| 4071 | #: plugins/check_smtp.c:543 plugins/check_smtp.c:555 | 4059 | #: plugins/check_smtp.c:545 plugins/check_smtp.c:557 |
| 4072 | #, c-format | 4060 | #, c-format |
| 4073 | msgid "Could not realloc() units [%d]\n" | 4061 | msgid "Could not realloc() units [%d]\n" |
| 4074 | msgstr "" | 4062 | msgstr "" |
| 4075 | 4063 | ||
| 4076 | #: plugins/check_smtp.c:603 | 4064 | #: plugins/check_smtp.c:608 |
| 4077 | msgid "SSL support not available - install OpenSSL and recompile" | 4065 | msgid "SSL support not available - install OpenSSL and recompile" |
| 4078 | msgstr "" | 4066 | msgstr "" |
| 4079 | 4067 | ||
| 4080 | #: plugins/check_smtp.c:674 | 4068 | #: plugins/check_smtp.c:676 plugins/check_smtp.c:681 |
| 4069 | #, c-format | ||
| 4070 | msgid "Connection closed by server before sending QUIT command\n" | ||
| 4071 | msgstr "" | ||
| 4072 | |||
| 4073 | #: plugins/check_smtp.c:691 | ||
| 4081 | #, c-format | 4074 | #, c-format |
| 4082 | msgid "recv() failed after QUIT." | 4075 | msgid "recv() failed after QUIT." |
| 4083 | msgstr "" | 4076 | msgstr "" |
| 4084 | 4077 | ||
| 4085 | #: plugins/check_smtp.c:676 | 4078 | #: plugins/check_smtp.c:693 |
| 4086 | #, c-format | 4079 | #, c-format |
| 4087 | msgid "Connection reset by peer." | 4080 | msgid "Connection reset by peer." |
| 4088 | msgstr "" | 4081 | msgstr "" |
| 4089 | 4082 | ||
| 4090 | #: plugins/check_smtp.c:764 | 4083 | #: plugins/check_smtp.c:781 |
| 4091 | msgid "This plugin will attempt to open an SMTP connection with the host." | 4084 | msgid "This plugin will attempt to open an SMTP connection with the host." |
| 4092 | msgstr "" | 4085 | msgstr "" |
| 4093 | 4086 | ||
| 4094 | #: plugins/check_smtp.c:778 | 4087 | #: plugins/check_smtp.c:795 |
| 4095 | #, c-format | 4088 | #, c-format |
| 4096 | msgid " String to expect in first line of server response (default: '%s')\n" | 4089 | msgid " String to expect in first line of server response (default: '%s')\n" |
| 4097 | msgstr "" | 4090 | msgstr "" |
| 4098 | 4091 | ||
| 4099 | #: plugins/check_smtp.c:780 | 4092 | #: plugins/check_smtp.c:797 |
| 4100 | msgid "SMTP command (may be used repeatedly)" | 4093 | msgid "SMTP command (may be used repeatedly)" |
| 4101 | msgstr "" | 4094 | msgstr "" |
| 4102 | 4095 | ||
| 4103 | #: plugins/check_smtp.c:782 | 4096 | #: plugins/check_smtp.c:799 |
| 4104 | msgid "Expected response to command (may be used repeatedly)" | 4097 | msgid "Expected response to command (may be used repeatedly)" |
| 4105 | msgstr "" | 4098 | msgstr "" |
| 4106 | 4099 | ||
| 4107 | #: plugins/check_smtp.c:784 | 4100 | #: plugins/check_smtp.c:801 |
| 4108 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" | 4101 | msgid "FROM-address to include in MAIL command, required by Exchange 2000" |
| 4109 | msgstr "" | 4102 | msgstr "" |
| 4110 | 4103 | ||
| 4111 | #: plugins/check_smtp.c:786 | 4104 | #: plugins/check_smtp.c:803 |
| 4112 | msgid "FQDN used for HELO" | 4105 | msgid "FQDN used for HELO" |
| 4113 | msgstr "" | 4106 | msgstr "" |
| 4114 | 4107 | ||
| 4115 | #: plugins/check_smtp.c:789 plugins/check_tcp.c:633 | 4108 | #: plugins/check_smtp.c:806 plugins/check_tcp.c:630 |
| 4116 | msgid "Minimum number of days a certificate has to be valid." | 4109 | msgid "Minimum number of days a certificate has to be valid." |
| 4117 | msgstr "" | 4110 | msgstr "" |
| 4118 | 4111 | ||
| 4119 | #: plugins/check_smtp.c:791 | 4112 | #: plugins/check_smtp.c:808 |
| 4120 | msgid "Use STARTTLS for the connection." | 4113 | msgid "Use STARTTLS for the connection." |
| 4121 | msgstr "" | 4114 | msgstr "" |
| 4122 | 4115 | ||
| 4123 | #: plugins/check_smtp.c:795 | 4116 | #: plugins/check_smtp.c:812 |
| 4124 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" | 4117 | msgid "SMTP AUTH type to check (default none, only LOGIN supported)" |
| 4125 | msgstr "" | 4118 | msgstr "" |
| 4126 | 4119 | ||
| 4127 | #: plugins/check_smtp.c:797 | 4120 | #: plugins/check_smtp.c:814 |
| 4128 | msgid "SMTP AUTH username" | 4121 | msgid "SMTP AUTH username" |
| 4129 | msgstr "" | 4122 | msgstr "" |
| 4130 | 4123 | ||
| 4131 | #: plugins/check_smtp.c:799 | 4124 | #: plugins/check_smtp.c:816 |
| 4132 | msgid "SMTP AUTH password" | 4125 | msgid "SMTP AUTH password" |
| 4133 | msgstr "" | 4126 | msgstr "" |
| 4134 | 4127 | ||
| 4135 | #: plugins/check_smtp.c:809 | 4128 | #: plugins/check_smtp.c:818 |
| 4129 | msgid "Ignore failure when sending QUIT command to server" | ||
| 4130 | msgstr "" | ||
| 4131 | |||
| 4132 | #: plugins/check_smtp.c:828 | ||
| 4136 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" | 4133 | msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful" |
| 4137 | msgstr "" | 4134 | msgstr "" |
| 4138 | 4135 | ||
| 4139 | #: plugins/check_smtp.c:810 | 4136 | #: plugins/check_smtp.c:829 |
| 4140 | msgid "connects, but incorrect reponse messages from the host result in" | 4137 | msgid "connects, but incorrect reponse messages from the host result in" |
| 4141 | msgstr "" | 4138 | msgstr "" |
| 4142 | 4139 | ||
| 4143 | #: plugins/check_smtp.c:811 | 4140 | #: plugins/check_smtp.c:830 |
| 4144 | msgid "STATE_WARNING return values." | 4141 | msgid "STATE_WARNING return values." |
| 4145 | msgstr "" | 4142 | msgstr "" |
| 4146 | 4143 | ||
| 4147 | #: plugins/check_snmp.c:299 | 4144 | #: plugins/check_snmp.c:298 |
| 4148 | #, c-format | 4145 | #, c-format |
| 4149 | msgid "External command error: %s\n" | 4146 | msgid "External command error: %s\n" |
| 4150 | msgstr "" | 4147 | msgstr "" |
| 4151 | 4148 | ||
| 4152 | #: plugins/check_snmp.c:304 | 4149 | #: plugins/check_snmp.c:303 |
| 4153 | #, c-format | 4150 | #, c-format |
| 4154 | msgid "External command error with no output (return code: %d)\n" | 4151 | msgid "External command error with no output (return code: %d)\n" |
| 4155 | msgstr "" | 4152 | msgstr "" |
| 4156 | 4153 | ||
| 4157 | #: plugins/check_snmp.c:410 | 4154 | #: plugins/check_snmp.c:406 |
| 4158 | msgid "No valid data returned" | 4155 | msgid "No valid data returned" |
| 4159 | msgstr "" | 4156 | msgstr "" |
| 4160 | 4157 | ||
| 4161 | #: plugins/check_snmp.c:417 | 4158 | #: plugins/check_snmp.c:413 |
| 4162 | msgid "Time duration between plugin calls is invalid" | 4159 | msgid "Time duration between plugin calls is invalid" |
| 4163 | msgstr "" | 4160 | msgstr "" |
| 4164 | 4161 | ||
| 4165 | #: plugins/check_snmp.c:513 | 4162 | #: plugins/check_snmp.c:509 |
| 4166 | msgid "Cannot malloc" | 4163 | msgid "Cannot malloc" |
| 4167 | msgstr "" | 4164 | msgstr "" |
| 4168 | 4165 | ||
| 4169 | #: plugins/check_snmp.c:519 | 4166 | #: plugins/check_snmp.c:515 |
| 4170 | msgid "Cannot asprintf()" | 4167 | msgid "Cannot asprintf()" |
| 4171 | msgstr "" | 4168 | msgstr "" |
| 4172 | 4169 | ||
| 4173 | #: plugins/check_snmp.c:525 | 4170 | #: plugins/check_snmp.c:521 |
| 4174 | msgid "Cannot realloc()" | 4171 | msgid "Cannot realloc()" |
| 4175 | msgstr "" | 4172 | msgstr "" |
| 4176 | 4173 | ||
| 4177 | #: plugins/check_snmp.c:541 | 4174 | #: plugins/check_snmp.c:537 |
| 4178 | msgid "No previous data to calculate rate - assume okay" | 4175 | msgid "No previous data to calculate rate - assume okay" |
| 4179 | msgstr "" | 4176 | msgstr "" |
| 4180 | 4177 | ||
| 4181 | #: plugins/check_snmp.c:680 | 4178 | #: plugins/check_snmp.c:676 |
| 4182 | msgid "Retries interval must be a positive integer" | 4179 | msgid "Retries interval must be a positive integer" |
| 4183 | msgstr "" | 4180 | msgstr "" |
| 4184 | 4181 | ||
| 4185 | #: plugins/check_snmp.c:742 | 4182 | #: plugins/check_snmp.c:738 |
| 4186 | #, c-format | 4183 | #, c-format |
| 4187 | msgid "Could not reallocate labels[%d]" | 4184 | msgid "Could not reallocate labels[%d]" |
| 4188 | msgstr "" | 4185 | msgstr "" |
| 4189 | 4186 | ||
| 4190 | #: plugins/check_snmp.c:754 | 4187 | #: plugins/check_snmp.c:750 |
| 4191 | msgid "Could not reallocate labels\n" | 4188 | msgid "Could not reallocate labels\n" |
| 4192 | msgstr "" | 4189 | msgstr "" |
| 4193 | 4190 | ||
| 4194 | #: plugins/check_snmp.c:771 | 4191 | #: plugins/check_snmp.c:767 |
| 4195 | #, c-format | 4192 | #, c-format |
| 4196 | msgid "Could not reallocate units [%d]\n" | 4193 | msgid "Could not reallocate units [%d]\n" |
| 4197 | msgstr "" | 4194 | msgstr "" |
| 4198 | 4195 | ||
| 4199 | #: plugins/check_snmp.c:783 | 4196 | #: plugins/check_snmp.c:779 |
| 4200 | msgid "Could not realloc() units\n" | 4197 | msgid "Could not realloc() units\n" |
| 4201 | msgstr "" | 4198 | msgstr "" |
| 4202 | 4199 | ||
| 4203 | #: plugins/check_snmp.c:800 | 4200 | #: plugins/check_snmp.c:796 |
| 4204 | msgid "Rate multiplier must be a positive integer" | 4201 | msgid "Rate multiplier must be a positive integer" |
| 4205 | msgstr "" | 4202 | msgstr "" |
| 4206 | 4203 | ||
| 4207 | #: plugins/check_snmp.c:852 | 4204 | #: plugins/check_snmp.c:848 |
| 4208 | msgid "No host specified\n" | 4205 | msgid "No host specified\n" |
| 4209 | msgstr "" | 4206 | msgstr "" |
| 4210 | 4207 | ||
| 4211 | #: plugins/check_snmp.c:856 | 4208 | #: plugins/check_snmp.c:852 |
| 4212 | msgid "No OIDs specified\n" | 4209 | msgid "No OIDs specified\n" |
| 4213 | msgstr "" | 4210 | msgstr "" |
| 4214 | 4211 | ||
| 4215 | #: plugins/check_snmp.c:878 | 4212 | #: plugins/check_snmp.c:874 |
| 4216 | msgid "Invalid seclevel" | 4213 | msgid "Invalid seclevel" |
| 4217 | msgstr "" | 4214 | msgstr "" |
| 4218 | 4215 | ||
| 4219 | #: plugins/check_snmp.c:885 plugins/check_snmp.c:888 plugins/check_snmp.c:906 | 4216 | #: plugins/check_snmp.c:881 plugins/check_snmp.c:884 plugins/check_snmp.c:902 |
| 4220 | #, c-format | 4217 | #, c-format |
| 4221 | msgid "Required parameter: %s\n" | 4218 | msgid "Required parameter: %s\n" |
| 4222 | msgstr "" | 4219 | msgstr "" |
| 4223 | 4220 | ||
| 4224 | #: plugins/check_snmp.c:927 | 4221 | #: plugins/check_snmp.c:923 |
| 4225 | msgid "Invalid SNMP version" | 4222 | msgid "Invalid SNMP version" |
| 4226 | msgstr "" | 4223 | msgstr "" |
| 4227 | 4224 | ||
| 4228 | #: plugins/check_snmp.c:944 | 4225 | #: plugins/check_snmp.c:940 |
| 4229 | msgid "Unbalanced quotes\n" | 4226 | msgid "Unbalanced quotes\n" |
| 4230 | msgstr "" | 4227 | msgstr "" |
| 4231 | 4228 | ||
| 4232 | #: plugins/check_snmp.c:993 | 4229 | #: plugins/check_snmp.c:989 |
| 4233 | msgid "Check status of remote machines and obtain system information via SNMP" | 4230 | msgid "Check status of remote machines and obtain system information via SNMP" |
| 4234 | msgstr "" | 4231 | msgstr "" |
| 4235 | 4232 | ||
| 4236 | #: plugins/check_snmp.c:1006 | 4233 | #: plugins/check_snmp.c:1002 |
| 4237 | msgid "Use SNMP GETNEXT instead of SNMP GET" | 4234 | msgid "Use SNMP GETNEXT instead of SNMP GET" |
| 4238 | msgstr "" | 4235 | msgstr "" |
| 4239 | 4236 | ||
| 4240 | #: plugins/check_snmp.c:1008 | 4237 | #: plugins/check_snmp.c:1004 |
| 4241 | msgid "SNMP protocol version" | 4238 | msgid "SNMP protocol version" |
| 4242 | msgstr "" | 4239 | msgstr "" |
| 4243 | 4240 | ||
| 4244 | #: plugins/check_snmp.c:1010 | 4241 | #: plugins/check_snmp.c:1006 |
| 4245 | msgid "SNMPv3 securityLevel" | 4242 | msgid "SNMPv3 securityLevel" |
| 4246 | msgstr "" | 4243 | msgstr "" |
| 4247 | 4244 | ||
| 4248 | #: plugins/check_snmp.c:1012 | 4245 | #: plugins/check_snmp.c:1008 |
| 4249 | msgid "SNMPv3 auth proto" | 4246 | msgid "SNMPv3 auth proto" |
| 4250 | msgstr "" | 4247 | msgstr "" |
| 4251 | 4248 | ||
| 4252 | #: plugins/check_snmp.c:1014 | 4249 | #: plugins/check_snmp.c:1010 |
| 4253 | msgid "SNMPv3 priv proto (default DES)" | 4250 | msgid "SNMPv3 priv proto (default DES)" |
| 4254 | msgstr "" | 4251 | msgstr "" |
| 4255 | 4252 | ||
| 4256 | #: plugins/check_snmp.c:1018 | 4253 | #: plugins/check_snmp.c:1014 |
| 4257 | msgid "Optional community string for SNMP communication" | 4254 | msgid "Optional community string for SNMP communication" |
| 4258 | msgstr "" | 4255 | msgstr "" |
| 4259 | 4256 | ||
| 4260 | #: plugins/check_snmp.c:1019 | 4257 | #: plugins/check_snmp.c:1015 |
| 4261 | msgid "default is" | 4258 | msgid "default is" |
| 4262 | msgstr "" | 4259 | msgstr "" |
| 4263 | 4260 | ||
| 4264 | #: plugins/check_snmp.c:1021 | 4261 | #: plugins/check_snmp.c:1017 |
| 4265 | msgid "SNMPv3 username" | 4262 | msgid "SNMPv3 username" |
| 4266 | msgstr "" | 4263 | msgstr "" |
| 4267 | 4264 | ||
| 4268 | #: plugins/check_snmp.c:1023 | 4265 | #: plugins/check_snmp.c:1019 |
| 4269 | msgid "SNMPv3 authentication password" | 4266 | msgid "SNMPv3 authentication password" |
| 4270 | msgstr "" | 4267 | msgstr "" |
| 4271 | 4268 | ||
| 4272 | #: plugins/check_snmp.c:1025 | 4269 | #: plugins/check_snmp.c:1021 |
| 4273 | msgid "SNMPv3 privacy password" | 4270 | msgid "SNMPv3 privacy password" |
| 4274 | msgstr "" | 4271 | msgstr "" |
| 4275 | 4272 | ||
| 4276 | #: plugins/check_snmp.c:1029 | 4273 | #: plugins/check_snmp.c:1025 |
| 4277 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" | 4274 | msgid "Object identifier(s) or SNMP variables whose value you wish to query" |
| 4278 | msgstr "" | 4275 | msgstr "" |
| 4279 | 4276 | ||
| 4280 | #: plugins/check_snmp.c:1031 | 4277 | #: plugins/check_snmp.c:1027 |
| 4281 | msgid "" | 4278 | msgid "" |
| 4282 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" | 4279 | "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL'" |
| 4283 | msgstr "" | 4280 | msgstr "" |
| 4284 | 4281 | ||
| 4285 | #: plugins/check_snmp.c:1032 | 4282 | #: plugins/check_snmp.c:1028 |
| 4286 | msgid "for symbolic OIDs.)" | 4283 | msgid "for symbolic OIDs.)" |
| 4287 | msgstr "" | 4284 | msgstr "" |
| 4288 | 4285 | ||
| 4289 | #: plugins/check_snmp.c:1034 | 4286 | #: plugins/check_snmp.c:1030 |
| 4290 | msgid "Delimiter to use when parsing returned data. Default is" | 4287 | msgid "Delimiter to use when parsing returned data. Default is" |
| 4291 | msgstr "" | 4288 | msgstr "" |
| 4292 | 4289 | ||
| 4293 | #: plugins/check_snmp.c:1035 | 4290 | #: plugins/check_snmp.c:1031 |
| 4294 | msgid "Any data on the right hand side of the delimiter is considered" | 4291 | msgid "Any data on the right hand side of the delimiter is considered" |
| 4295 | msgstr "" | 4292 | msgstr "" |
| 4296 | 4293 | ||
| 4297 | #: plugins/check_snmp.c:1036 | 4294 | #: plugins/check_snmp.c:1032 |
| 4298 | msgid "to be the data that should be used in the evaluation." | 4295 | msgid "to be the data that should be used in the evaluation." |
| 4299 | msgstr "" | 4296 | msgstr "" |
| 4300 | 4297 | ||
| 4301 | #: plugins/check_snmp.c:1040 | 4298 | #: plugins/check_snmp.c:1036 |
| 4302 | msgid "Warning threshold range(s)" | 4299 | msgid "Warning threshold range(s)" |
| 4303 | msgstr "" | 4300 | msgstr "" |
| 4304 | 4301 | ||
| 4305 | #: plugins/check_snmp.c:1042 | 4302 | #: plugins/check_snmp.c:1038 |
| 4306 | msgid "Critical threshold range(s)" | 4303 | msgid "Critical threshold range(s)" |
| 4307 | msgstr "" | 4304 | msgstr "" |
| 4308 | 4305 | ||
| 4309 | #: plugins/check_snmp.c:1044 | 4306 | #: plugins/check_snmp.c:1040 |
| 4310 | msgid "Enable rate calculation. See 'Rate Calculation' below" | 4307 | msgid "Enable rate calculation. See 'Rate Calculation' below" |
| 4311 | msgstr "" | 4308 | msgstr "" |
| 4312 | 4309 | ||
| 4313 | #: plugins/check_snmp.c:1046 | 4310 | #: plugins/check_snmp.c:1042 |
| 4314 | msgid "" | 4311 | msgid "" |
| 4315 | "Converts rate per second. For example, set to 60 to convert to per minute" | 4312 | "Converts rate per second. For example, set to 60 to convert to per minute" |
| 4316 | msgstr "" | 4313 | msgstr "" |
| 4317 | 4314 | ||
| 4318 | #: plugins/check_snmp.c:1050 | 4315 | #: plugins/check_snmp.c:1046 |
| 4319 | msgid "Return OK state (for that OID) if STRING is an exact match" | 4316 | msgid "Return OK state (for that OID) if STRING is an exact match" |
| 4320 | msgstr "" | 4317 | msgstr "" |
| 4321 | 4318 | ||
| 4322 | #: plugins/check_snmp.c:1052 | 4319 | #: plugins/check_snmp.c:1048 |
| 4323 | msgid "" | 4320 | msgid "" |
| 4324 | "Return OK state (for that OID) if extended regular expression REGEX matches" | 4321 | "Return OK state (for that OID) if extended regular expression REGEX matches" |
| 4325 | msgstr "" | 4322 | msgstr "" |
| 4326 | 4323 | ||
| 4327 | #: plugins/check_snmp.c:1054 | 4324 | #: plugins/check_snmp.c:1050 |
| 4328 | msgid "" | 4325 | msgid "" |
| 4329 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" | 4326 | "Return OK state (for that OID) if case-insensitive extended REGEX matches" |
| 4330 | msgstr "" | 4327 | msgstr "" |
| 4331 | 4328 | ||
| 4332 | #: plugins/check_snmp.c:1056 | 4329 | #: plugins/check_snmp.c:1052 |
| 4333 | msgid "Invert search result (CRITICAL if found)" | 4330 | msgid "Invert search result (CRITICAL if found)" |
| 4334 | msgstr "" | 4331 | msgstr "" |
| 4335 | 4332 | ||
| 4336 | #: plugins/check_snmp.c:1060 | 4333 | #: plugins/check_snmp.c:1056 |
| 4337 | msgid "Prefix label for output from plugin" | 4334 | msgid "Prefix label for output from plugin" |
| 4338 | msgstr "" | 4335 | msgstr "" |
| 4339 | 4336 | ||
| 4340 | #: plugins/check_snmp.c:1062 | 4337 | #: plugins/check_snmp.c:1058 |
| 4341 | msgid "Units label(s) for output data (e.g., 'sec.')." | 4338 | msgid "Units label(s) for output data (e.g., 'sec.')." |
| 4342 | msgstr "" | 4339 | msgstr "" |
| 4343 | 4340 | ||
| 4344 | #: plugins/check_snmp.c:1064 | 4341 | #: plugins/check_snmp.c:1060 |
| 4345 | msgid "Separates output on multiple OID requests" | 4342 | msgid "Separates output on multiple OID requests" |
| 4346 | msgstr "" | 4343 | msgstr "" |
| 4347 | 4344 | ||
| 4348 | #: plugins/check_snmp.c:1068 | 4345 | #: plugins/check_snmp.c:1064 |
| 4349 | msgid "Number of retries to be used in the requests" | 4346 | msgid "Number of retries to be used in the requests" |
| 4350 | msgstr "" | 4347 | msgstr "" |
| 4351 | 4348 | ||
| 4352 | #: plugins/check_snmp.c:1073 | 4349 | #: plugins/check_snmp.c:1069 |
| 4353 | msgid "" | 4350 | msgid "" |
| 4354 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." | 4351 | "This plugin uses the 'snmpget' command included with the NET-SNMP package." |
| 4355 | msgstr "" | 4352 | msgstr "" |
| 4356 | 4353 | ||
| 4357 | #: plugins/check_snmp.c:1074 | 4354 | #: plugins/check_snmp.c:1070 |
| 4358 | msgid "" | 4355 | msgid "" |
| 4359 | "if you don't have the package installed, you will need to download it from" | 4356 | "if you don't have the package installed, you will need to download it from" |
| 4360 | msgstr "" | 4357 | msgstr "" |
| 4361 | 4358 | ||
| 4362 | #: plugins/check_snmp.c:1075 | 4359 | #: plugins/check_snmp.c:1071 |
| 4363 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." | 4360 | msgid "http://net-snmp.sourceforge.net before you can use this plugin." |
| 4364 | msgstr "" | 4361 | msgstr "" |
| 4365 | 4362 | ||
| 4366 | #: plugins/check_snmp.c:1079 | 4363 | #: plugins/check_snmp.c:1075 |
| 4367 | msgid "" | 4364 | msgid "" |
| 4368 | "- Multiple OIDs may be indicated by a comma or space-delimited list (lists " | 4365 | "- Multiple OIDs may be indicated by a comma or space-delimited list (lists " |
| 4369 | "with" | 4366 | "with" |
| 4370 | msgstr "" | 4367 | msgstr "" |
| 4371 | 4368 | ||
| 4372 | #: plugins/check_snmp.c:1080 | 4369 | #: plugins/check_snmp.c:1076 |
| 4373 | msgid "internal spaces must be quoted). Maximum:" | 4370 | msgid "internal spaces must be quoted). Maximum:" |
| 4374 | msgstr "" | 4371 | msgstr "" |
| 4375 | 4372 | ||
| 4376 | #: plugins/check_snmp.c:1080 | 4373 | #: plugins/check_snmp.c:1076 |
| 4377 | msgid "OIDs." | 4374 | msgid "OIDs." |
| 4378 | msgstr "" | 4375 | msgstr "" |
| 4379 | 4376 | ||
| 4380 | #: plugins/check_snmp.c:1084 | 4377 | #: plugins/check_snmp.c:1080 |
| 4381 | msgid "" | 4378 | msgid "" |
| 4382 | "- When checking multiple OIDs, separate ranges by commas like '-w " | 4379 | "- When checking multiple OIDs, separate ranges by commas like '-w " |
| 4383 | "1:10,1:,:20'" | 4380 | "1:10,1:,:20'" |
| 4384 | msgstr "" | 4381 | msgstr "" |
| 4385 | 4382 | ||
| 4386 | #: plugins/check_snmp.c:1085 | 4383 | #: plugins/check_snmp.c:1081 |
| 4387 | msgid "- Note that only one string and one regex may be checked at present" | 4384 | msgid "- Note that only one string and one regex may be checked at present" |
| 4388 | msgstr "" | 4385 | msgstr "" |
| 4389 | 4386 | ||
| 4390 | #: plugins/check_snmp.c:1086 | 4387 | #: plugins/check_snmp.c:1082 |
| 4391 | msgid "" | 4388 | msgid "" |
| 4392 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" | 4389 | "- All evaluation methods other than PR, STR, and SUBSTR expect that the value" |
| 4393 | msgstr "" | 4390 | msgstr "" |
| 4394 | 4391 | ||
| 4395 | #: plugins/check_snmp.c:1087 | 4392 | #: plugins/check_snmp.c:1083 |
| 4396 | msgid "returned from the SNMP query is an unsigned integer." | 4393 | msgid "returned from the SNMP query is an unsigned integer." |
| 4397 | msgstr "" | 4394 | msgstr "" |
| 4398 | 4395 | ||
| 4399 | #: plugins/check_snmp.c:1090 | 4396 | #: plugins/check_snmp.c:1086 |
| 4400 | msgid "Rate Calculation:" | 4397 | msgid "Rate Calculation:" |
| 4401 | msgstr "" | 4398 | msgstr "" |
| 4402 | 4399 | ||
| 4403 | #: plugins/check_snmp.c:1091 | 4400 | #: plugins/check_snmp.c:1087 |
| 4404 | msgid "In many places, SNMP returns counters that are only meaningful when" | 4401 | msgid "In many places, SNMP returns counters that are only meaningful when" |
| 4405 | msgstr "" | 4402 | msgstr "" |
| 4406 | 4403 | ||
| 4407 | #: plugins/check_snmp.c:1092 | 4404 | #: plugins/check_snmp.c:1088 |
| 4408 | msgid "calculating the counter difference since the last check. check_snmp" | 4405 | msgid "calculating the counter difference since the last check. check_snmp" |
| 4409 | msgstr "" | 4406 | msgstr "" |
| 4410 | 4407 | ||
| 4411 | #: plugins/check_snmp.c:1093 | 4408 | #: plugins/check_snmp.c:1089 |
| 4412 | msgid "saves the last state information in a file so that the rate per second" | 4409 | msgid "saves the last state information in a file so that the rate per second" |
| 4413 | msgstr "" | 4410 | msgstr "" |
| 4414 | 4411 | ||
| 4415 | #: plugins/check_snmp.c:1094 | 4412 | #: plugins/check_snmp.c:1090 |
| 4416 | msgid "can be calculated. Use the --rate option to save state information." | 4413 | msgid "can be calculated. Use the --rate option to save state information." |
| 4417 | msgstr "" | 4414 | msgstr "" |
| 4418 | 4415 | ||
| 4419 | #: plugins/check_snmp.c:1095 | 4416 | #: plugins/check_snmp.c:1091 |
| 4420 | msgid "" | 4417 | msgid "" |
| 4421 | "On the first run, there will be no prior state - this will return with OK." | 4418 | "On the first run, there will be no prior state - this will return with OK." |
| 4422 | msgstr "" | 4419 | msgstr "" |
| 4423 | 4420 | ||
| 4424 | #: plugins/check_snmp.c:1096 | 4421 | #: plugins/check_snmp.c:1092 |
| 4425 | msgid "The state is uniquely determined by the arguments to the plugin, so" | 4422 | msgid "The state is uniquely determined by the arguments to the plugin, so" |
| 4426 | msgstr "" | 4423 | msgstr "" |
| 4427 | 4424 | ||
| 4428 | #: plugins/check_snmp.c:1097 | 4425 | #: plugins/check_snmp.c:1093 |
| 4429 | msgid "changing the arguments will create a new state file." | 4426 | msgid "changing the arguments will create a new state file." |
| 4430 | msgstr "" | 4427 | msgstr "" |
| 4431 | 4428 | ||
| @@ -4433,26 +4430,26 @@ msgstr "" | |||
| 4433 | msgid "Port number must be a positive integer" | 4430 | msgid "Port number must be a positive integer" |
| 4434 | msgstr "" | 4431 | msgstr "" |
| 4435 | 4432 | ||
| 4436 | #: plugins/check_ssh.c:228 | 4433 | #: plugins/check_ssh.c:232 |
| 4437 | #, c-format | 4434 | #, c-format |
| 4438 | msgid "Server answer: %s" | 4435 | msgid "Server answer: %s" |
| 4439 | msgstr "" | 4436 | msgstr "" |
| 4440 | 4437 | ||
| 4441 | #: plugins/check_ssh.c:247 | 4438 | #: plugins/check_ssh.c:251 |
| 4442 | #, c-format | 4439 | #, c-format |
| 4443 | msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" | 4440 | msgid "SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n" |
| 4444 | msgstr "" | 4441 | msgstr "" |
| 4445 | 4442 | ||
| 4446 | #: plugins/check_ssh.c:254 | 4443 | #: plugins/check_ssh.c:260 |
| 4447 | #, c-format | 4444 | #, c-format |
| 4448 | msgid "SSH OK - %s (protocol %s)\n" | 4445 | msgid "SSH OK - %s (protocol %s) | %s\n" |
| 4449 | msgstr "" | 4446 | msgstr "" |
| 4450 | 4447 | ||
| 4451 | #: plugins/check_ssh.c:274 | 4448 | #: plugins/check_ssh.c:281 |
| 4452 | msgid "Try to connect to an SSH server at specified server and port" | 4449 | msgid "Try to connect to an SSH server at specified server and port" |
| 4453 | msgstr "" | 4450 | msgstr "" |
| 4454 | 4451 | ||
| 4455 | #: plugins/check_ssh.c:290 | 4452 | #: plugins/check_ssh.c:297 |
| 4456 | msgid "" | 4453 | msgid "" |
| 4457 | "Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" | 4454 | "Warn if string doesn't match expected server version (ex: OpenSSH_3.9p1)" |
| 4458 | msgstr "" | 4455 | msgstr "" |
| @@ -4552,98 +4549,93 @@ msgstr "" | |||
| 4552 | msgid "With UDP checks, a send/expect string must be specified." | 4549 | msgid "With UDP checks, a send/expect string must be specified." |
| 4553 | msgstr "" | 4550 | msgstr "" |
| 4554 | 4551 | ||
| 4555 | #: plugins/check_tcp.c:240 | 4552 | #: plugins/check_tcp.c:415 |
| 4556 | #, c-format | ||
| 4557 | msgid "CRITICAL - Cannot retrieve server certificate.\n" | ||
| 4558 | msgstr "" | ||
| 4559 | |||
| 4560 | #: plugins/check_tcp.c:418 | ||
| 4561 | msgid "No arguments found" | 4553 | msgid "No arguments found" |
| 4562 | msgstr "" | 4554 | msgstr "" |
| 4563 | 4555 | ||
| 4564 | #: plugins/check_tcp.c:519 | 4556 | #: plugins/check_tcp.c:516 |
| 4565 | msgid "Maxbytes must be a positive integer" | 4557 | msgid "Maxbytes must be a positive integer" |
| 4566 | msgstr "" | 4558 | msgstr "" |
| 4567 | 4559 | ||
| 4568 | #: plugins/check_tcp.c:537 | 4560 | #: plugins/check_tcp.c:534 |
| 4569 | msgid "Refuse must be one of ok, warn, crit" | 4561 | msgid "Refuse must be one of ok, warn, crit" |
| 4570 | msgstr "" | 4562 | msgstr "" |
| 4571 | 4563 | ||
| 4572 | #: plugins/check_tcp.c:547 | 4564 | #: plugins/check_tcp.c:544 |
| 4573 | msgid "Mismatch must be one of ok, warn, crit" | 4565 | msgid "Mismatch must be one of ok, warn, crit" |
| 4574 | msgstr "" | 4566 | msgstr "" |
| 4575 | 4567 | ||
| 4576 | #: plugins/check_tcp.c:553 | 4568 | #: plugins/check_tcp.c:550 |
| 4577 | msgid "Delay must be a positive integer" | 4569 | msgid "Delay must be a positive integer" |
| 4578 | msgstr "" | 4570 | msgstr "" |
| 4579 | 4571 | ||
| 4580 | #: plugins/check_tcp.c:581 | 4572 | #: plugins/check_tcp.c:578 |
| 4581 | msgid "You must provide a server address" | 4573 | msgid "You must provide a server address" |
| 4582 | msgstr "" | 4574 | msgstr "" |
| 4583 | 4575 | ||
| 4584 | #: plugins/check_tcp.c:583 | 4576 | #: plugins/check_tcp.c:580 |
| 4585 | msgid "Invalid hostname, address or socket" | 4577 | msgid "Invalid hostname, address or socket" |
| 4586 | msgstr "" | 4578 | msgstr "" |
| 4587 | 4579 | ||
| 4588 | #: plugins/check_tcp.c:597 | 4580 | #: plugins/check_tcp.c:594 |
| 4589 | #, c-format | 4581 | #, c-format |
| 4590 | msgid "" | 4582 | msgid "" |
| 4591 | "This plugin tests %s connections with the specified host (or unix socket).\n" | 4583 | "This plugin tests %s connections with the specified host (or unix socket).\n" |
| 4592 | "\n" | 4584 | "\n" |
| 4593 | msgstr "" | 4585 | msgstr "" |
| 4594 | 4586 | ||
| 4595 | #: plugins/check_tcp.c:610 | 4587 | #: plugins/check_tcp.c:607 |
| 4596 | msgid "" | 4588 | msgid "" |
| 4597 | "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " | 4589 | "Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or " |
| 4598 | "quit option" | 4590 | "quit option" |
| 4599 | msgstr "" | 4591 | msgstr "" |
| 4600 | 4592 | ||
| 4601 | #: plugins/check_tcp.c:611 | 4593 | #: plugins/check_tcp.c:608 |
| 4602 | msgid "Default: nothing added to send, \\r\\n added to end of quit" | 4594 | msgid "Default: nothing added to send, \\r\\n added to end of quit" |
| 4603 | msgstr "" | 4595 | msgstr "" |
| 4604 | 4596 | ||
| 4605 | #: plugins/check_tcp.c:613 | 4597 | #: plugins/check_tcp.c:610 |
| 4606 | msgid "String to send to the server" | 4598 | msgid "String to send to the server" |
| 4607 | msgstr "" | 4599 | msgstr "" |
| 4608 | 4600 | ||
| 4609 | #: plugins/check_tcp.c:615 | 4601 | #: plugins/check_tcp.c:612 |
| 4610 | msgid "String to expect in server response" | 4602 | msgid "String to expect in server response" |
| 4611 | msgstr "" | 4603 | msgstr "" |
| 4612 | 4604 | ||
| 4613 | #: plugins/check_tcp.c:615 | 4605 | #: plugins/check_tcp.c:612 |
| 4614 | msgid "(may be repeated)" | 4606 | msgid "(may be repeated)" |
| 4615 | msgstr "" | 4607 | msgstr "" |
| 4616 | 4608 | ||
| 4617 | #: plugins/check_tcp.c:617 | 4609 | #: plugins/check_tcp.c:614 |
| 4618 | msgid "All expect strings need to occur in server response. Default is any" | 4610 | msgid "All expect strings need to occur in server response. Default is any" |
| 4619 | msgstr "" | 4611 | msgstr "" |
| 4620 | 4612 | ||
| 4621 | #: plugins/check_tcp.c:619 | 4613 | #: plugins/check_tcp.c:616 |
| 4622 | msgid "String to send server to initiate a clean close of the connection" | 4614 | msgid "String to send server to initiate a clean close of the connection" |
| 4623 | msgstr "" | 4615 | msgstr "" |
| 4624 | 4616 | ||
| 4625 | #: plugins/check_tcp.c:621 | 4617 | #: plugins/check_tcp.c:618 |
| 4626 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" | 4618 | msgid "Accept TCP refusals with states ok, warn, crit (default: crit)" |
| 4627 | msgstr "" | 4619 | msgstr "" |
| 4628 | 4620 | ||
| 4629 | #: plugins/check_tcp.c:623 | 4621 | #: plugins/check_tcp.c:620 |
| 4630 | msgid "" | 4622 | msgid "" |
| 4631 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" | 4623 | "Accept expected string mismatches with states ok, warn, crit (default: warn)" |
| 4632 | msgstr "" | 4624 | msgstr "" |
| 4633 | 4625 | ||
| 4634 | #: plugins/check_tcp.c:625 | 4626 | #: plugins/check_tcp.c:622 |
| 4635 | msgid "Hide output from TCP socket" | 4627 | msgid "Hide output from TCP socket" |
| 4636 | msgstr "" | 4628 | msgstr "" |
| 4637 | 4629 | ||
| 4638 | #: plugins/check_tcp.c:627 | 4630 | #: plugins/check_tcp.c:624 |
| 4639 | msgid "Close connection once more than this number of bytes are received" | 4631 | msgid "Close connection once more than this number of bytes are received" |
| 4640 | msgstr "" | 4632 | msgstr "" |
| 4641 | 4633 | ||
| 4642 | #: plugins/check_tcp.c:629 | 4634 | #: plugins/check_tcp.c:626 |
| 4643 | msgid "Seconds to wait between sending string and polling for response" | 4635 | msgid "Seconds to wait between sending string and polling for response" |
| 4644 | msgstr "" | 4636 | msgstr "" |
| 4645 | 4637 | ||
| 4646 | #: plugins/check_tcp.c:635 | 4638 | #: plugins/check_tcp.c:632 |
| 4647 | msgid "Use SSL for the connection." | 4639 | msgid "Use SSL for the connection." |
| 4648 | msgstr "" | 4640 | msgstr "" |
| 4649 | 4641 | ||
