]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ntp/manifests/client.pp
Merge branch 'master' of ssh://handel.debian.org/srv/puppet.debian.org/git/dsa-puppet
[dsa-puppet.git] / modules / ntp / manifests / client.pp
1 class ntp::client inherits ntp {
2         file { "/etc/ntp.conf":
3                 owner   => root,
4                 group   => root,
5                 mode    => 444,
6                 source  => [ "puppet:///ntp/per-host/$fqdn/client.conf",
7                              "puppet:///ntp/common/client.conf" ],
8                 notify  => Exec["ntp restart"],
9                 require => Package["ntp"]
10                 ;
11         }
12 }