#!/usr/bin/perl
#
# Copyright (c) 2006 Zmanda Inc.  All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 as published
# by the Free Software Foundation.
#
# 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, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
#
# Contact information: Zmanda Inc, 505 N Mathlida Ave, Suite 120
# Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
#
#


use strict;
use warnings;
use File::Spec::Functions;
use lib "/usr/local/lib/mysql-zrm";
use ZRM::Common;


#usage strings 
my $USAGE_GETCONF_STRING=  
		"\t\t[--global]\n";  

my @GETCONFOPT = qw/global/;

sub getconf()
{
	my %params;
	if( defined $inputs{"global"} ){
		if( -e $MYSQL_ZRM_CONFIG_FILE ) {
                	&readOptionsFile( $MYSQL_ZRM_CONFIG_FILE, \%params );
        	}	
	}else{
		my $backupset_conf=catfile($backupset_dir, "mysql-zrm.conf");
                if( -e $backupset_conf ){
                        &readOptionsFile( $backupset_conf, \%params );
                }
	}
	for (keys%params) {
		print "$_\n";
		print $params{$_}."\n";
        }
}

#Sets up defaults for backup
sub setupDefaults()
{
        $action = "getconf";
        $USAGE_STRING = $USAGE_GETCONF_STRING.$USAGE_COMMON_OPTIONS_STRING;
}

sub main()
{
        &setupDefaults();
	&initCommon(@GETCONFOPT);
	&createConfigFile();
	&getconf();
        &my_exit();
}

&main();


