Fixed ntpd class for Fedora versions lower than 16.

This commit is contained in:
Timo Mkinen 2012-01-03 10:57:39 +02:00
parent feb04e2118
commit 148e50dba7

View file

@ -13,8 +13,15 @@ class ntpd {
case $operatingsystem {
"fedora": {
case $operatingsystemrelease {
/^1[0-5]/: {
include ntpd::isc-ntpd
}
default: {
include ntpd::chrony
}
}
}
"openbsd": {
include ntpd::openntpd
}