Deprecated.
The maintainer of this distribution has indicated that it is deprecated and no longer suitable for use.
NAME
Clustericious::Command::configtest - Test a Clustericious application's configuration
VERSION
version 1.29
SYNOPSIS
Your app:
package YourApp;
use Mojo::Base qw( Clustericious::App );
sub sanity_check
{
my($self) = @_;
# ... return true if sane, return false otherwise
unless($self->config->foo(default => '') eq 'bar')
{
say 'your config should set foo to bar';
return 0;
}
return 1;
}
1;
do a sanity check of the configuration:
% yourapp configtest
DESCRIPTION
This command does a basic sanity check on the configuration for your Clustericious application, and calls the application's sanity_check
SEE ALSO
AUTHOR
Original author: Brian Duggan
Current maintainer: Graham Ollis <plicease@cpan.org>
Contributors:
Curt Tilmes
Yanick Champoux
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by NASA GSFC.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.