mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 12:18:46 +00:00
ccurpcd: Minor bug fix
git-svn-id: https://svn.fhem.de/fhem/trunk@10372 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
d07ce55c36
commit
d24dad77e2
@ -56,6 +56,8 @@ sub CheckProcess ($)
|
|||||||
my $pdump = `ps -ef | grep $prcname | grep -v grep`;
|
my $pdump = `ps -ef | grep $prcname | grep -v grep`;
|
||||||
my @plist = split "\n", $pdump;
|
my @plist = split "\n", $pdump;
|
||||||
foreach my $proc (@plist) {
|
foreach my $proc (@plist) {
|
||||||
|
# Remove leading blanks, fix for MacOS. Thanks to mcdeck
|
||||||
|
$proc =~ s/^\s+//;
|
||||||
my @procattr = split /\s+/, $proc;
|
my @procattr = split /\s+/, $proc;
|
||||||
if ($procattr[1] != $$ && $procattr[7] =~ /perl$/ && $procattr[8] eq $prcname) {
|
if ($procattr[1] != $$ && $procattr[7] =~ /perl$/ && $procattr[8] eq $prcname) {
|
||||||
Log "Process $proc is running";
|
Log "Process $proc is running";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user