| line | stmt | bran | cond | sub | pod | time | code | 
| 1 | 1 |  |  | 1 |  | 817 | use strict; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 43 |  | 
| 2 |  |  |  |  |  |  |  | 
| 3 | 1 |  |  | 1 |  | 6 | use HH::Unispool::Config; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 19 |  | 
| 4 | 1 |  |  | 1 |  | 5 | use HH::Unispool::Config::OS; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 23 |  | 
| 5 | 1 |  |  | 1 |  | 7 | use HH::Unispool::Config::Scope; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 16 |  | 
| 6 | 1 |  |  | 1 |  | 5 | use HH::Unispool::Config::DateFormat; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 17 |  | 
| 7 | 1 |  |  | 1 |  | 5 | use HH::Unispool::Config::Entry::System; | 
|  | 1 |  |  |  |  | 3 |  | 
|  | 1 |  |  |  |  | 153 |  | 
| 8 |  |  |  |  |  |  |  | 
| 9 |  |  |  |  |  |  | # Create a config from scratch with a _Local_ scope | 
| 10 |  |  |  |  |  |  | my $conf = HH::Unispool::Config->new( { | 
| 11 |  |  |  |  |  |  | scope => HH::Unispool::Config::Scope->new ( { | 
| 12 |  |  |  |  |  |  | scope => [ qw( _Local_) ], | 
| 13 |  |  |  |  |  |  | } ), | 
| 14 |  |  |  |  |  |  | } ); | 
| 15 |  |  |  |  |  |  |  | 
| 16 |  |  |  |  |  |  | # Create the _Local_ system and add it to the configuration | 
| 17 |  |  |  |  |  |  | my $sysn = HH::Unispool::Config::Entry::System->new( { | 
| 18 |  |  |  |  |  |  | name => '_Local_', | 
| 19 |  |  |  |  |  |  | local_system_name => 'foo', | 
| 20 |  |  |  |  |  |  | network_name => 'foo.bar.org', | 
| 21 |  |  |  |  |  |  | os => HH::Unispool::Config::OS->new( { | 
| 22 |  |  |  |  |  |  | os => 'Solaris', | 
| 23 |  |  |  |  |  |  | } ), | 
| 24 |  |  |  |  |  |  | date_format => HH::Unispool::Config::DateFormat->new( { | 
| 25 |  |  |  |  |  |  | date_format => 'YY/MM/DD', | 
| 26 |  |  |  |  |  |  | } ), | 
| 27 |  |  |  |  |  |  | } ); | 
| 28 |  |  |  |  |  |  | $conf->add_system($sysn); | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | # Write the configuration | 
| 31 |  |  |  |  |  |  | $conf->write('t/config.sample.d0.out'); | 
| 32 |  |  |  |  |  |  | 1; |