App-Oozie
view release on metacpan or search on metacpan
lib/App/Oozie/Role/Fields/Generic.pm view on Meta::CPAN
package App::Oozie::Role::Fields::Generic;
use 5.014;
use strict;
use warnings;
our $VERSION = '0.020'; # VERSION
use namespace::autoclean -except => [qw/_options_data _options_config/];
use App::Oozie::Constants qw(
DEFAULT_TIMEOUT
DEFAULT_MAX_RETRY
);
use Moo::Role;
use MooX::Options;
use Types::Standard qw( Int );
option dryrun => (
is => 'rw',
short => 'd',
doc => 'Do not perform the actions (also call dry-run versions of the underlying commands)',
);
option force => (
is => 'rw',
short => 'f',
doc => 'force a run even though some errors were encountered',
);
option max_retry => (
is => 'rw',
isa => Int,
default => sub { DEFAULT_MAX_RETRY },
doc => 'Maximum number of retries for various function calls',
);
option timeout => (
is => 'rw',
default => sub { DEFAULT_TIMEOUT },
isa => Int,
format => 'i',
doc => sprintf( 'The timeout value in seconds for the system calls. Defaults to %s seconds',
DEFAULT_TIMEOUT ),
);
option verbose => (
is => 'rw',
short => 'v',
doc => 'Enable verbose messages',
);
has effective_username => (
is => 'ro',
default => sub {
(getpwuid $<)[0]
|| die 'Unable to locate the effective user name';
},
);
1;
__END__
=pod
=encoding UTF-8
( run in 0.479 second using v1.01-cache-2.11-cpan-56fb94df46f )