We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70680bf commit 3d16729Copy full SHA for 3d16729
mysqltuner.pl
@@ -7805,19 +7805,6 @@ sub which {
7805
return 0;
7806
}
7807
7808
-# Generic SSH command executor
7809
-sub ssh_executor {
7810
- my $remote_cmd = shift;
7811
- my $full_ssh_cmd = build_ssh_command($remote_cmd);
7812
- debugprint "Executing remote command: $full_ssh_cmd";
7813
- my @output = `$full_ssh_cmd 2>&1`;
7814
- if ($? != 0) {
7815
- badprint "Remote command execution failed: $remote_cmd";
7816
- infoprintml @output;
7817
- }
7818
- return @output;
7819
-}
7820
-
7821
# ---------------------------------------------------------------------------
7822
# BEGIN 'MAIN'
7823
0 commit comments