From 622550ee1a97a8c4dcab57b5e1f00725be9a6934 Mon Sep 17 00:00:00 2001 From: Clinton Wolfe <clinton@omniti.com> Date: Tue, 18 Sep 2012 17:32:08 -0400 Subject: [PATCH] Correct report default path --- lib/Core/ChefLastGoodRun.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Core/ChefLastGoodRun.pm b/lib/Core/ChefLastGoodRun.pm index be20166..2f44c4c 100644 --- a/lib/Core/ChefLastGoodRun.pm +++ b/lib/Core/ChefLastGoodRun.pm @@ -15,7 +15,7 @@ Core::ChefLastGoodRun =head1 SYNOPSIS Core::ChefLastGoodRun { - local : report_path => /var/chef/reports/last_good_run.json + chef : report_path => /var/chef/reports/last-good-run.json } =head1 DESCRIPTION @@ -63,7 +63,7 @@ my $MODS_LOADED; sub handler { my $self = shift; my $config = $self->{'config'}; - my $report_path = $config->{'report_path'} || '/var/chef/reports/last_good_run.json'; + my $report_path = $config->{'report_path'} || '/var/chef/reports/last-good-run.json'; unless (-e $report_path) { return {} } -- GitLab