package Cpanel::Easy::Apache::AuthnDefault;

# cpanel - Cpanel/Easy/Apache/2_2/AuthnDefault.pm Copyright(c) 2011 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

our $easyconfig = {
    'name'    => 'AuthnDefault',
    'reverse' => 1,
    'skip'    => 0,
    'step'    => {
        '0' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--disable-authn-default' => '' } );
                return ( 1, 'Ok' );
            },
        },
    },
};

1;
