Revert "Use the leap-seconds.list file from tzdata on jessie (see #775166)"
[mirror/dsa-puppet.git] / modules / ntp / manifests / timeserver.pp
index 586ebc8..f86ddf4 100644 (file)
@@ -1,13 +1,7 @@
 class ntp::timeserver {
-       if ($::lsbmajdistrelease >= 8) {
-               file { '/var/lib/ntp/leap-seconds.list':
-                       ensure => absent,
-               }
-       } else {
-               file { '/var/lib/ntp/leap-seconds.list':
-                       source  => 'puppet:///modules/ntp/leap-seconds.list',
-                       require => Package['ntp'],
-                       notify  => Service['ntp'],
-               }
+       file { '/var/lib/ntp/leap-seconds.list':
+               source  => 'puppet:///modules/ntp/leap-seconds.list',
+               require => Package['ntp'],
+               notify  => Service['ntp'],
        }
 }