import torrus 1.0.9
[freeside.git] / torrus / examples / torrus-siteconfig.powerbook.pl
1 # Torrus Site config. Put all your site specifics here.
2 # You need to stop and start Apache server every time you change this file.
3 #
4 # An example using the rainbow-schema overlay.
5 # Shawn Ferry <sferry at sevenspace dot com> <lalartu at obscure dot org>
6 #
7 # (ssinyagin) You can use statements like these from inside your
8 # XML configurations:
9 #   <include filename="generic/rfc2790.host-resources.xml"/>
10 # Besides, "devdiscover" discovery tool will soon support most
11 # of these vendor definitions.
12
13 # $Id: torrus-siteconfig.powerbook.pl,v 1.1 2010-12-27 00:04:40 ivan Exp $
14 # @(#) 10/18/03 torrus-siteconfig.pl 1.3 (10/18/03 18:44:31) sferry
15
16 @Torrus::Global::xmlAlwaysIncludeFirst =
17     qw(
18        defaults.xml
19        snmp-defs.xml
20        collector-periods.xml
21        vendor/cisco.ios.xml
22        generic/rfc2790.host-resources.xml
23        generic/rfc1213.xml
24        vendor/ucd-snmp.xml
25     );
26
27 %Torrus::Global::treeConfig =
28     (
29     'powerbook' => {
30             'description' => 'Powerbook Laptop Tree',
31             'xmlfiles' => [qw(
32                     powerbook/powerbook-defaults.xml
33                     powerbook/powerbook-ti.xml
34                     )],
35             'run' => {
36                     'collector' => 1,
37                     }
38             },
39
40      ); # CLOSE %Torrus::Global::treeConfig
41
42
43      # Override values in the current schema with those in
44      # rainbow schema, schema changes require an apache restart
45      $Torrus::Renderer::stylingProfileOverlay = "rainbow-schema";
46
47
48 1;