Prv8 Shell
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4
System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64
User : jackjohn ( 502)
PHP Version : 5.3.17
Disable Function : NONE
Directory :  /scripts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //scripts/auto-adjust-mysql-limits
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - scripts/auto-adjust-mysql-limits        Copyright(c) 2014 cPanel, Inc.
#                                                            All rights Reserved.
# copyright@cpanel.net                                          http://cpanel.net
# This code is subject to the cPanel license.  Unauthorized copying is prohibited

package scripts::auto_adjust_mysql_limits;

use strict;

use Cpanel::Usage                     ();
use Cpanel::MysqlUtils::MyCnf::Adjust ();

run(@ARGV) unless caller();

sub run {
    my (@args) = @_;

    my $verbose    = 0;
    my $debug      = 0;
    my $no_restart = 0;
    my $force      = 0;

    my %opts = (
        'verbose'    => \$verbose,
        'no-restart' => \$no_restart,
        'force'      => \$force,
        'debug'      => \$debug,
    );

    Cpanel::Usage::wrap_options( \@args, \&usage, \%opts );

    Cpanel::MysqlUtils::MyCnf::Adjust::auto_adjust(
        {
            'force'      => ( $force      || 0 ),
            'debug'      => ( $debug      || 0 ),
            'verbose'    => ( $verbose    || 0 ),
            'no-restart' => ( $no_restart || 0 ),
        }
    );

    return 1;
}

sub usage {
    my $prog = $0;
    $prog =~ s{^.+/(.+)$}{$1};
    print <<EOF;
$prog [options]

This script auto adjusts MySQL limits.

Modifiers Flags:

    --verbose       - display some friendly verbose messages.
    --debug         - do not perform the update.
    --help          - display this help message and exit.
    --no-restart    - do not restart MySQL upon update.
EOF
    exit;
}

1;

haha - 2025