From a5a94552456f9840b8d3f6ac1f7a49f297c8396e Mon Sep 17 00:00:00 2001 From: Baebeca Date: Sun, 10 Aug 2014 19:18:16 +0200 Subject: [PATCH] Update mysqltuner.pl minor format fixes --- mysqltuner.pl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index ecf2cb1..29ef37e 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -51,14 +51,14 @@ my %opt = ( "noinfo" => 0, "nocolor" => 0, "forcemem" => 0, - "forceswap" => 0, + "forceswap" => 0, "host" => 0, "socket" => 0, "port" => 0, "user" => 0, "pass" => 0, "skipsize" => 0, - "checkversion" => 0, + "checkversion" => 0, ); # Gather the options from the command line @@ -1002,15 +1002,15 @@ sub make_recommendations { print "\n >> MySQLTuner $tunerversion - Major Hayden \n". " >> Bug reports, feature requests, and downloads at http://mysqltuner.com/\n". " >> Run with '--help' for additional options and output filtering\n"; -mysql_setup; # Gotta login first -os_setup; # Set up some OS variables -get_all_vars; # Toss variables/status into hashes +mysql_setup; # Gotta login first +os_setup; # Set up some OS variables +get_all_vars; # Toss variables/status into hashes validate_mysql_version; # Check current MySQL version -check_architecture; # Suggest 64-bit upgrade +check_architecture; # Suggest 64-bit upgrade check_storage_engines; # Show enabled storage engines security_recommendations; # Display some security recommendations -calculations; # Calculate everything we need -mysql_stats; # Print the server stats +calculations; # Calculate everything we need +mysql_stats; # Print the server stats make_recommendations; # Make recommendations based on stats # --------------------------------------------------------------------------- # END 'MAIN'