#!/usr/local/cpanel/3rdparty/bin/perl
#                                      Copyright 2026 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 autofixer2::cpanel_feature;

use strict;
use warnings;

exit run() unless caller;

sub run {
    return 0 if -e '/var/cpanel/dev_sandbox';
    unlink '/usr/local/cpanel/Cpanel/Admin/Modules/Cpanel/feature.pm';
    return 0;
}

1;
