38 lines
601 B
Perl
38 lines
601 B
Perl
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use centreon::script::centreonesxd;
|
|
|
|
centreon::script::centreonesxd->new()->run();
|
|
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
centreon_esxd - a daemon to handle VMWare checks.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
centreon_esxd [options]
|
|
|
|
=head1 OPTIONS
|
|
|
|
=over 8
|
|
|
|
=item B<--config-extra>
|
|
|
|
Specify the path to the centreonesxd configuration file (default: /etc/centreon/centreon_esxd.pm).
|
|
|
|
=item B<--help>
|
|
|
|
Print a brief help message and exits.
|
|
|
|
=back
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
B<centreon_esxd> will connect to ESX and/or VirtualCenter. Use the script 'centreon_esx_client.pl'
|
|
to do checks through the daemon.
|
|
|
|
=cut
|