File: imvirt

package info (click to toggle)
imvirt 0.9.6-13
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,364 kB
  • sloc: perl: 2,778; sh: 802; ansic: 316; makefile: 61
file content (75 lines) | stat: -rwxr-xr-x 2,048 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/perl

# imvirt - I'm virtualized?
#
# Authors:
#   Thomas Liske <liske@ibh.de>
#
# Copyright Holder:
#   2008 - 2012 (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 {
    my $prod = 'ImVirt';
    $prod .= ' Portable' if(exists($ENV{PAR_0}) && __FILE__ =~ /^script\//);

    print STDERR <<EOH;
$prod $ImVirt::VERSION - I'm virtualized?

Authors:
  Thomas Liske <liske\@ibh.de>

Copyright Holder:
  2008 - 2013 (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.

About:
  imvirt tries to detect if it runs on a physical machine or on a
  virtualized one. If it detects that it is a virtualized one it also
  tries to find out which virtualization technology is used.

Usage:
  imvirt [-d]
    -d			enable debug output

Output:
EOH
    #'

    print "    ",join("\n    ", imv_get_pos_results()),"\n\n";

    exit;
}

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

print imv_get(IMV_PROB_DEFAULT),"\n";