#!/usr/bin/perl

# imvirt - I'm virtualized?
#
# $Id: imvirt 517 2010-03-29 17:58:20Z liske $
#
# Authors:
#   Thomas Liske <liske@ibh.de>
#
# Copyright Holder:
#   2008-2010 (C) IBH IT-Service GmbH [http://www.ibh.de/]
#
# License:
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   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 package; if not, write to the Free Software
#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
#

use strict;
use warnings;
use ImVirt;
use Getopt::Long;

sub HELP_MESSAGE {
    print STDERR <<EOH;

Usage: $0 [-d]
    -d	debug

EOH
    exit;
}

my %opts;
GetOptions(
    'd' => sub { ImVirt::set_debug(1); },
    help => sub { HELP_MESSAGE(); },
) or HELP_MESSAGE();

unless(ImVirt::get_debug()) {
    print imv_get(IMV_PROB_DEFAULT),"\n";
}
else {
    use Data::Dumper;

    my %res = imv_get_all();
    print Dumper(\%res);
}
