#!/usr/bin/perl
use strict; use warnings;

use Gantry::Conf;

my $location = shift;

my $conf = Gantry::Conf->retrieve(
    {
        instance    => 'jobad',
        config_file => '/etc/gantry.conf.2',
        location    => $location,
    }
);

use Data::Dumper; warn Dumper( $conf );
