#!/usr/local/cpanel/3rdparty/bin/perl

#                                      Copyright 2024 WebPros International, LLC
#                                                           All rights reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited.

package onboot::wp2;

use cPstrict;

use Cpanel::ServerTasks ();

exit( run(@ARGV) ) unless caller();

sub run (@args) {

    Cpanel::ServerTasks::schedule_task( ['WP2'], 10, "setup_cloudlinux" );

    return 0;
}

1;
