package Cpanel::Easy::Apache::DAVFs;

# cpanel - Cpanel/Easy/Apache/DAVFs.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'    => 'DAVFs',
    'url'     => 'http://httpd.apache.org/docs/[% apache_uri_version %]/mod/mod_dav_fs.html',
    'depends' => { 'optmods' => { 'Cpanel::Easy::Apache::Dav' => 1 }, },
    'step'    => {
        '0' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--enable-dav-fs' => '' } );
                return ( 1, 'Ok' );
            },
        },
    },
};

1;
