Server : Apache System : Linux copper.netcy.com 2.6.32-754.27.1.el6.centos.plus.x86_64 #1 SMP Thu Jan 30 13:54:25 UTC 2020 x86_64 User : montcaro ( 581) PHP Version : 7.4.28 Disable Function : NONE Directory : /scripts/ |
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/sync_mysql_users_from_grants Copyright 2018 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::sync_mysql_users_from_grants; use strict; use warnings; =encoding utf-8 =head1 NAME sync_mysql_users_from_grants =head1 USAGE sync_mysql_users_from_grants [ --help ] =head1 DESCRIPTION Ordinarily the system creates a DB user in MySQL/MariaDB for each cPanel user account. If MySQL/MariaDB is disabled, however, when the account is created, and that service is later reenabled, it is necessary to create the DB users that the system would have created had such been possible at account creation time. This script fulfills that purpose. =cut use parent qw( Cpanel::HelpfulScript ); use Cpanel::Mysql::SyncUsers (); use constant _OPTIONS => (); __PACKAGE__->new(@ARGV)->run() if !caller; sub run { my ($self) = @_; Cpanel::Mysql::SyncUsers::sync_grant_files_to_db( output => \*STDOUT, ); return; } 1;