Fix ps command.

This commit is contained in:
Daniel Nichter
2013-05-13 17:04:06 -07:00
parent 98a909fdb2
commit 7516f458c7

View File

@@ -6861,7 +6861,6 @@ sub agent_status {
my %have_service;
if ( -d "$lib_dir/services" ) {
_info("Services:");
SERVICE:
foreach my $service_file ( glob "$lib_dir/services/*" ) {
my $service = eval {
@@ -7043,7 +7042,7 @@ sub get_agent_pid {
chop($pid = slurp($pid_file));
}
else {
my $ps_output = `ps ax | grep 'pt-agent --daemonize | grep -v grep`;
my $ps_output = `ps ax | grep 'pt-agent' --daemonize | grep -v grep`;
PTDEBUG && _d('Reading PID from ps', $ps_output);
if ( !$ps_output ) {
die Percona::Agent::Exception::PIDNotFound->new(