#!/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;
use ZRM::MySQL;

#usage strings
my $USAGE_CHECK_STRING=
                "\t\t[--backup-level <0|1>]\n";

my @CHECKOPT = qw/backup-level=i/;


#implements the check action
sub doCheck()
{
	if( $zrm_error == 0 ){
		&printLog( "Configuration check successful\n" );
	}else{
		&printError( "Errors found during configuration check\n" );
	}
}

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


sub main()
{
        &setupDefaults();
        &initMySQL(@CHECKOPT);
	&verifySnapshotParams();
        &doCheck();
        &my_exit();
}

&main();
