8ae601
From 99efecaf87dc1fc9517efaff441a6a7ce46444eb Mon Sep 17 00:00:00 2001
8ae601
From: Jim Perrin <jperrin@centos.org>
8ae601
Date: Wed, 11 Mar 2015 10:37:03 -0500
8ae601
Subject: [PATCH] update for new ntp server method
8ae601
8ae601
---
8ae601
 ipaplatform/base/paths.py        | 1 +
8ae601
 ipaserver/install/ntpinstance.py | 2 ++
8ae601
 2 files changed, 3 insertions(+)
8ae601
8ae601
diff --git a/ipaplatform/base/paths.py b/ipaplatform/base/paths.py
8ae601
index af50262..5090062 100644
8ae601
--- a/ipaplatform/base/paths.py
8ae601
+++ b/ipaplatform/base/paths.py
8ae601
@@ -99,6 +99,7 @@ class BasePathNamespace(object):
8ae601
     PKI_TOMCAT_ALIAS_DIR = "/etc/pki/pki-tomcat/alias/"
8ae601
     PKI_TOMCAT_PASSWORD_CONF = "/etc/pki/pki-tomcat/password.conf"
8ae601
     ETC_REDHAT_RELEASE = "/etc/redhat-release"
8ae601
+    ETC_CENTOS_RELEASE = "/etc/centos-release"
8ae601
     RESOLV_CONF = "/etc/resolv.conf"
8ae601
     SAMBA_KEYTAB = "/etc/samba/samba.keytab"
8ae601
     SMB_CONF = "/etc/samba/smb.conf"
8ae601
diff --git a/ipaserver/install/ntpinstance.py b/ipaserver/install/ntpinstance.py
8ae601
index c653525..4b0578b 100644
8ae601
--- a/ipaserver/install/ntpinstance.py
8ae601
+++ b/ipaserver/install/ntpinstance.py
8ae601
@@ -44,6 +44,8 @@ class NTPInstance(service.Service):
8ae601
         os = ""
8ae601
         if ipautil.file_exists(paths.ETC_FEDORA_RELEASE):
8ae601
             os = "fedora"
8ae601
+        elif ipautil.file_exists(paths.ETC_CENTOS_RELEASE):
8ae601
+            os = "centos"
8ae601
         elif ipautil.file_exists(paths.ETC_REDHAT_RELEASE):
8ae601
             os = "rhel"
8ae601
 
8ae601
-- 
8ae601
1.8.3.1
8ae601