Fixed ntpd class for Fedora versions lower than 16.
This commit is contained in:
parent
feb04e2118
commit
148e50dba7
1 changed files with 8 additions and 1 deletions
|
@ -13,8 +13,15 @@ class ntpd {
|
||||||
|
|
||||||
case $operatingsystem {
|
case $operatingsystem {
|
||||||
"fedora": {
|
"fedora": {
|
||||||
|
case $operatingsystemrelease {
|
||||||
|
/^1[0-5]/: {
|
||||||
|
include ntpd::isc-ntpd
|
||||||
|
}
|
||||||
|
default: {
|
||||||
include ntpd::chrony
|
include ntpd::chrony
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
"openbsd": {
|
"openbsd": {
|
||||||
include ntpd::openntpd
|
include ntpd::openntpd
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue