From c0e81168c524c4ad2838066dc6d57bc591254b04 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Thu, 17 Mar 2005 18:52:05 +0000 Subject: [PATCH] skel for matt --- docs/upgrades/upgrade_6.5.2-6.5.3.pl | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/upgrades/upgrade_6.5.2-6.5.3.pl diff --git a/docs/upgrades/upgrade_6.5.2-6.5.3.pl b/docs/upgrades/upgrade_6.5.2-6.5.3.pl new file mode 100644 index 000000000..84a2ffaa4 --- /dev/null +++ b/docs/upgrades/upgrade_6.5.2-6.5.3.pl @@ -0,0 +1,26 @@ +#!/usr/bin/perl + +use lib "../../lib"; +use Getopt::Long; +use strict; +use WebGUI::Session; +use WebGUI::Asset; + +my $configFile; +my $quiet; + +GetOptions( + 'configFile=s'=>\$configFile, + 'quiet'=>\$quiet +); + +WebGUI::Session::open("../..",$configFile); + +#-------------------------------------------- +print "\tmatt's going to do something here\n" unless ($quiet); + + + +WebGUI::Session::close(); + +