package Cpanel::Easy::Apache::UniqueId;

# cpanel - Cpanel/Easy/Apache/UniqueId.pm         Copyright(c) 2014 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'      => 'UniqueId',
    'verify_on' => 'NOTE! When using mod_unique_id, you must be sure never to change your hostname manually from the command line, but only by using the "change hostname" WHM page.',

    'url'  => 'http://httpd.apache.org/docs/[% apache_uri_version %]/mod/mod_unique_id.html',
    'step' => {
        '1' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--enable-unique-id' => '' } );
                return ( 1, 'Ok' );
            },
        },
    },
};

1;
