NAME
Ixchel::Actions::lilith_config - Generates the config for Lilith.
VERSION
Version 0.0.1
CLI SYNOPSIS
ixchel -a lilith_config [-w] [-o <outfile>]
CODE SYNOPSIS
use Data::Dumper;
my $results=$ixchel->action(action=>'lilith_config', opts=>{});
if ($results->{ok}) {
print $results->{config};
}else{
die('Action errored... '.joined("\n", @{$results->{errors}}));
}
FLAGS
-w
Write it out.
-o <outfile>
The file to write it out to.
Default :: /usr/local/etc/lilith.toml
CONFIG
.lilith.config is used for generating the config.
RESULT HASH REF
.errors :: A array of errors encountered.
.status_text :: A string description of what was done and the results.
.ok :: Set to zero if any of the above errored.
.config :: The generated config.