�&ǐk�@'bJ�h�ۊL'}T� :��'2�Z#$��n�a��� �>a��`��_3d�Qpt�/�P -��#5�,�M��� �pA:©�q�����NW��ډ�A���� �9nʺج���� �TSM��{J6?7��r�@�\����D��� �׶���s�f�TJj?"��D��`?��̒� b�#�%�C*v�$�{�$����5Ծ�F�s��y�e/8��h-�f�̰&(����Gj�L:U� 2�� ����v�_k����Y��gp,�k�WF�R������_C�R��N@���R�@�ߔ?A�w9���F("iNa-S���Q�o�3tDMLh*�#4k�T/iQ��Y*�G��m����)��8�hBm/�I�,g�ﯖ���Z��}�Cz�q@´��d.����L�ŕ�,��1�Z�܌�: ̪���F+J-'��c�tvJ8��]Q-��b��y �6;*J`r_�d ��'�G ~p��)'�C,�%F��E(��2�k�����lР�z�!�=t ��_�0��f7��� ;�p�|�U �% | --help ] =head1 DESCRIPTION This command will check the database schema of each bandwidth database on the system and upgrade it if needed. =cut our $PID_FILE = '/var/run/upgrade_bandwidth_dbs.pid'; sub _OPTIONS { return qw( user=s all ); } __PACKAGE__->new(@ARGV)->script() unless caller(); sub script { my ($self) = @_; if ( $self->getopt('user') ) { my $user = $self->getopt('user'); print "Upgrading bandwidth database schema for the user '$user'.\n"; try { $self->call_for_one_user($user); } catch { warn "There was an error upgrading the schema of the bandwidth database for '$user': $_\n"; }; return; } elsif ( !$self->getopt('all') ) { print "\n" . $self->help(); return; } Cpanel::PIDFile->do( $PID_FILE, sub { print "Checking and upgrading the bandwidth databases for all users.\n"; for my $user ( Cpanel::Config::Users::getcpusers() ) { try { $self->call_for_one_user($user); } catch { warn "There was an error upgrading the schema of the bandwidth database for '$user': $_\n"; }; } } ); return; } sub call_for_one_user { my ( $self, $user ) = @_; Cpanel::AcctUtils::Account::accountexists_or_die($user); Cpanel::BandwidthDB::get_reader_for_root($user); return; } 1;