package Cpanel::Easy::Apache::DIR;

# cpanel - Cpanel/Easy/Apache/DIR.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'    => 'DIR',
    'reverse' => 1,
    'skip'    => 1,                                                                          # case 1706
    'url'     => 'http://httpd.apache.org/docs/[% apache_uri_version %]/mod/mod_dir.html',
    'step'    => {
        '0' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--disable-dir' => '' } );
                return ( 1, 'Ok' );
            },
        },
    },
};

1;
