]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ntp/manifests/client.pp
Move to our standard idiom of per-host files. You wouldn't think ntp
[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 }