#!/usr/bin/env perl

use strict;
use warnings;
use File::Basename;
use POSIX qw/ WIFEXITED /;
use Carp;
use Env;

# Delta Reporting is a central server compliance log that uses CFEngine.
# 
# Copyright (C) 2016 Neil H. Watson http://watson-wilson.ca
# 
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# This is wrapper to load agent logs

my $log = $ARGV[0];

if ( $log eq '' ) {
   croak "Missing file arguement";
   exit 1;
}

my $dir = dirname( $0 );

if ( -e "$log" ){
   chdir "${dir}/..";
   if ( WIFEXITED( system( "./DeltaR.pl load '$log'" ) >> 8 ) ){
      exit;
   }
   else{
      croak "DeltaR.pl load [$log] exited with an error";
      exit 2;
   }
}
else {
   croak "[$log] does not exist";
   exit 4
}
