uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
run
/
.
/
.
/
..
/
usr
/
share
/
logwatch
/
scripts
/
services
/
init
/
/
#!/usr/bin/perl ########################################################################## # $Id: init 150 2013-06-18 22:19:38Z mtremaine $ ########################################################################## ##################################################### ## Copyright (c) 2008 Kirk Bauer ## Covered under the included MIT/X-Consortium License: ## http://www.opensource.org/licenses/mit-license.php ## All modifications and contributions by other persons to ## this script are assumed to have been donated to the ## Logwatch project and thus assume the above copyright ## and licensing terms. If you want to make contributions ## under your own copyright or a different license this ## must be explicitly stated in the contribution an the ## Logwatch project reserves the right to not accept such ## contributions. If you have made significant ## contributions to this script and want to claim ## copyright please contact logwatch-devel@lists.sourceforge.net. ######################################################### $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0; while (defined($ThisLine = <STDIN>)) { if (( $ThisLine =~ /open\(.*\): No such file or directory/) or ( $ThisLine =~ /Id "r" respawning too fast: disabled for 5 minutes/) or ( $ThisLine =~ /Re-reading inittab/) or ( $ThisLine =~ /.* main process ended, respawning/) or ( $ThisLine =~ /Disconnected from system bus/)) { # We don't care about these } elsif ( $ThisLine =~ s/Switching to runlevel: (.)\s*$/$1/ ) { # Which runlevel did we change to? chomp ($ThisLine); $RunLevel{$ThisLine}++; } elsif ( $ThisLine =~ s/^Entering runlevel: (.)\s*$/$1/ ) { # Which runlevel did we enter? chomp ($ThisLine); $RunLevel{$ThisLine}++; } elsif ( $ThisLine =~ s/^Trying to re-exec init// ) { # Look for telinit executions chomp ($ThisLine); $ReExecInit++; } elsif ( ($Name,$Cause) = ($ThisLine =~ /(.*) main process \([0-9]*\) killed by (.*)/)) { $ProcessKilled{"$Name,$Cause"}++; } elsif ( ($Name, $Status) = ($ThisLine =~ /(.*) main process \([0-9]*\) terminated with status ([0-9]*)/)) { $ProcessTerminated{"$Name,Status"}++; } elsif ( $ThisLine =~ /Re-executing \/sbin\/init/) { $ReExecSbinInit++; } else { # report any unmatched entries push @OtherList,$ThisLine; } } if ((keys %RunLevel) and ($Detail >= 10)) { foreach $Level (sort keys %RunLevel) { print " Entered or switched to runlevel " . $Level . ": " . $RunLevel{$Level} . " Time(s)\n"; } } if ($ReExecInit and $Detail) { print "\n\nRe-execs of init: $ReExecInit times\n"; } if ($ReExecSbinInit and $Detail) { print "\n\nRe-executing \/sbin\/init/: $ReExecSbinInit times\n"; } if ((keys %ProcessKilled) and ($Detail >=10)) { print "\nKilled processses:\n"; foreach (keys %ProcessKilled) { my ($Name,$Cause)=split ","; print " Process " . $Name. " killed by " . $Cause . ": " . $ProcessKilled{"$Name,$Cause"} . " Time(s)\n"; } } if ((keys %ProcessTerminated) and ($Detail >=10)) { print "\nTerminated processses:\n"; foreach (keys %ProcessTerminated) { my ($Name,$Status)=split ","; print " Process " . $Name. " terminated with status " . $Cause . ": " . $ProcessTerminated{"$Name,$Status"} . " Time(s)\n"; } } if ($#OtherList >= 0) { print "\n**Unmatched Entries**\n"; print @OtherList; } exit(0); # vi: shiftwidth=3 tabstop=3 syntax=perl et # Local Variables: # mode: perl # perl-indent-level: 3 # indent-tabs-mode: nil # End:
/var/run/././../usr/share/logwatch/scripts/services/init