Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / modules / ntpdate / manifests / init.pp
1 class ntpdate {
2   package { [
3     'ntpdate',
4     'lockfile-progs'
5   ]:
6     ensure => installed
7   }
8
9   $ntpservers = $::hostname ? {
10     default => ['manda-node03.debian.org', 'manda-node04.debian.org', 'bm-bl1.debian.org', 'bm-bl2.debian.org']
11   }
12
13   file { '/etc/default/ntpdate':
14     content => template('ntpdate/etc-default-ntpdate.erb'),
15   }
16 }