From cd8a027445eb9b1a9c7efa2d2e95bd0e58384ee4 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Thu, 19 Dec 2013 16:05:57 -0800 Subject: [PATCH] Don't check for /etc/percona/agent/my.cnf on install because slave installs need it. --- bin/pt-agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pt-agent b/bin/pt-agent index 395bcdd4..b95f8528 100755 --- a/bin/pt-agent +++ b/bin/pt-agent @@ -8558,7 +8558,7 @@ sub install { # Verify pt-agent is not installed $next_step->(); - my @install_files = ($agent_my_cnf, $config_file, "$lib_dir/agent"); + my @install_files = ($config_file, "$lib_dir/agent"); my @have_files; foreach my $file (@install_files) { push @have_files, $file if -f $file;