Skip to content

darrkz/ntppool

 
 

Repository files navigation

   Copyright 2005-2012 Ask Bjoern Hansen, Develooper LLC
   Copyright 2003-2005 Adrian von Bidder

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

This is the code for the NTP Pool project, http://www.pool.ntp.org/

See the LICENSE file for detailed copyright and licensing information.

-------------------------------------------------------------------------
Quick and dirty install instructions; email ask@develooper.com for
help.

export DIR=`pwd`/ntppool
# you can also clone on github: http://github.com/abh/ntppool
git clone git://git.develooper.com/ntppool.git
cd ntppool
git submodule init
git submodule update

export CBROOTLOCAL=$DIR
export CBROOT=$DIR/combust

# install a bazillion modules from CPAN, use -n to not test each module,
# this will take a while.
mkdir cpan
cpanm -L cpan < .modules

cp combust/combust.conf.sample combust.conf
edit combust.conf 
   # setup the database section with an "ntppool" database
   # add "ntppool" to the "sites = ... " list.
   # setup a [ntppool] section at the bottom

mkdir -p $DIR/rrd/server/graph
mkdir -p $DIR/rrd/zone/graph

# Your MySQL server needs timezone data loaded, if it doesn't have it, run:
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql

$CBROOT/bin/cmysql ntppool < sql/tables.sql
$CBROOT/bin/cmysql ntppool < sql/zones.sql
$CBROOT/bin/database_update ntppool
$CBROOT/bin/database_update combust
$CBROOT/bin/database_update ntppool

make templates

$CBROOT/bin/httpd

If any modules are missing, the easiest way to install them is with
   cpanm -L cpan Module::Name

To setup a monitoring system in the 'monitors' table, run

   ./pool addmonitor email@example.com 127.0.0.1 v4

It will return an api key to be used with the ./monitor script.

Releases

No releases published

Packages

No packages published

Languages

  • Perl 85.6%
  • JavaScript 9.9%
  • CSS 4.1%
  • Shell 0.4%