/[adm]/puppet/modules/ntp/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/ntp/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2215 - (show annotations) (download)
Sun Jan 8 20:55:51 2012 UTC (12 years, 3 months ago) by misc
File size: 302 byte(s)
fix module
1 class ntp {
2 package { ntp: }
3
4 service { ntpd:
5 ensure => running,
6 path => "/etc/init.d/ntpd",
7 subscribe => [Package["ntp"], File["/etc/ntp.conf"]],
8 }
9
10 file { "/etc/ntp.conf":
11 require => Package["ntp"],
12 content => template("ntp/ntp.conf"),
13 }
14 }

  ViewVC Help
Powered by ViewVC 1.1.30