capture origin/<name> of active branch in case remote is not tracked
[scpubgit/System-Introspector.git] / lib / System / Introspector.pm
1 use strictures 1;
2
3 package System::Introspector;
4
5 our $VERSION = '0.001_001';
6 $VERSION = eval $VERSION;
7
8 1;
9
10 =head1 NAME
11
12 System::Introspector - framework for remote system introspection
13
14 =head1 SYNOPSIS
15
16   $ system-introspector --storage <path> --config <path> [OPTIONS]
17
18 See L<system-introspector(1)> for detailed information about which OPTIONS
19 can be used.
20
21 =head1 DESCRIPTION
22
23 System::Introspector is a framework for remotely executing system wide
24 introspection. The introspection is done executing a set of probes
25 on the remote system that gather specific information. Gathered results
26 are stored in JSON format.
27
28 =head1 AUTHOR
29
30  phaylon - Robert Sedlacek (cpan:PHAYLON) <r.sedlacek@shadowcat.co.uk>
31
32 =head1 CONTRIBUTORS
33
34  mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
35
36 =head1 SPONSORS
37
38 Parts of this code were paid for by
39
40 =over
41
42 =item Socialflow L<http://www.socialflow.com>
43
44 =item Shadowcat Systems L<http://www.shadow.cat>
45
46 =back
47
48 =head1 COPYRIGHT
49
50 Copyright (c) 2012 the System::Introspector L</AUTHOR>, L</CONTRIBUTORS>
51 and L</SPONSORS> as listed above.
52
53 =head1 LICENSE
54
55 This library is free software and may be distributed under the same terms
56 as perl itself.
57
58 =cut