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/distro_changed_hook Copyright 2020 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited package scripts::distro_changed_hook; use strict; use warnings; ## no critic qw(Proto) use experimental 'signatures'; =encoding utf-8 =head1 NAME F<distro_changed_hook> =head1 USAGE distro_changed_hook [--help] =head1 DESCRIPTION This is executed by RPM triggers in the cpanel-trigger-os-release package when one of the supported OS release packages is changed. =cut #---------------------------------------------------------------------- use parent qw( Cpanel::HelpfulScript ); use constant _OPTIONS => (); use Cpanel::GenSysInfo (); exit( __PACKAGE__->new(@ARGV)->run() ) if !caller; #---------------------------------------------------------------------- sub run ($self) { Cpanel::GenSysInfo::rebuild(); return 0; # exit() value } 1;