jablonka.czprosek.czf

hotsanic

Subversion Repositories:
[/] [branches/] [HotSaNIC-0.5.0-pre6/] [modules/] [ntp/] [setup.pl] - Blame information for rev 17

 

Line No. Rev Author Line
11simandl#!/usr/bin/env perl
2 
3# $Id: setup.pl,v 1.4 2004/07/12 07:50:14 bernisys Exp $
4 
5# include PERL libraries
6use strict;
7use warnings;
8use diagnostics;
9 
10# include HotSaNIC libraries
11use lib "../../lib";
12use lib "./platform";
13use HotSaNICparser;
14use HotSaNICshellio;
15use HotSaNIClog;
16use common;
17 
18$|=1;
19 
20(my $VERSION = '$Revision: 1.4 $') =~ s/.*(\d+\.\d+).*/$1/;
21(my $IDENTIFIER = '$Id: setup.pl,v 1.4 2004/07/12 07:50:14 bernisys Exp $') =~ s/.*,v (.*) \$/$1/;
22 
23my $MODNAME=HotSaNICparser::get_module_name();
24my %MODCONF=HotSaNICmod::common::configure();
25my $OUTFILE="settings.new";
26if ( ! -e "settings" ) { $OUTFILE="settings"; }
27open OUTFILE,">$OUTFILE" || die "could not open ".HotSaNICparser::get_module_name()." settings file for writing.\n";
28 
29if (@{$MODCONF{HOST}}) { $MODCONF{HOST}="HOST=\"".join("\"\nHOST=\"",@{$MODCONF{HOST}})."\""; }
30 
31print OUTFILE "# SHORT DESCRIPTION
32#
33# ntpd-client command
34#
35NTPCOMMAND=\"$MODCONF{NTPCOMMAND}\"
36 
37#
38# configure targets
39#
40# HOST=<host or IP>,<description>
41#
42# if you want to query the local host, just add: HOST=\",\"
43#
44$MODCONF{HOST}
45";
46 
47close OUTFILE;
48 
49if ($OUTFILE eq "settings.new") {
50 HotSaNICparser::backup_file("settings");
51 rename "settings.new","settings";
52 }
53 
54print "Please check the settings file and adapt it to satisfy your needs.\n";
55 

Powered by WebSVN 2.2.1