OwlCyberSecurity - MANAGER
Edit File: safe_configure_postgres_for_cpanel
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - SOURCES/safe_configure_postgres_for_cpanel # Copyright 2019 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::safe_configure_postgres_for_cpanel; use strict; use warnings; use Cpanel::ServerTasks (); exit run() unless caller(); sub run { Cpanel::ServerTasks::schedule_task( ['CCSTasks'], 60, "safe_configure_postgres_for_cpanel" ); return 0; } 1;