sub checkXsand()

in client_script/profile_reader.pl [204:211]


sub checkXsand {
  my $xsandContent = `pgrep xsand`;
  if ($xsandContent eq '') {
    return 'Not running';
  } else {
    return 'Running';
  }
}