# Class: ntp
#   This module manages ntp
#
# Definition:
#   ntp::server
#
# Parameters:
#   $config - specify template file
#   $local  - specify local ntp servers
#   $remote - specify remote ntp servers
#
# Actions:
#   Installs the ntp.conf
#
# Requires:
#   Square Brackets, otherwise the conditionals at the
#   template will throw an error
#
# Sample Usage:
#   ntp::config { "/etc/ntp.conf":
#      config => "client",
#      local  => hiera_array('local'),
#      remote => hiera_array('remote'),
#   }