From 161504e3a4317ed02a163ee135ec473098a4d067 Mon Sep 17 00:00:00 2001 From: Liam Whalen Date: Mon, 16 Dec 2013 15:00:45 -0800 Subject: [PATCH] [RT18107] clean up access_pathmap.pl I left a few artifacts from testing in access_pathmap.pl. These are removed with this commit. Signed-off-by: Liam Whalen --- deployment/access_pathmap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/access_pathmap.pl b/deployment/access_pathmap.pl index 58b21c3..83c17d3 100755 --- a/deployment/access_pathmap.pl +++ b/deployment/access_pathmap.pl @@ -4,13 +4,13 @@ use warnings; use Config::Simple; use Getopt::Long; -my ($help, $config_file, $component, $srcpath, $host); +my ($help, $config_file, $component, $srcpath); GetOptions( 'help' => \$help, # show help message and exit 'config=s' => \$config_file, # INI file for path mappings 'component=s' => \$component, # The component to grab the source paths for - 'srcpath=s' => \$srcpath, # The source path to grap the destination path for + 'srcpath=s' => \$srcpath # The source path to grap the destination path for ); if ($help) { -- 2.3.6