mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Print warning about NTP
After looking into setting up ntpd on the IPA servers I decided it was better just to warn admins. There are just too many valid setups for time synchronization for us to try to get this right. Additionally, just installing ntp and accepting the default config will result in a configuration that is perfectly valid for IPA. This patch checks if ntpd is running and suggests enabling it if it is not - for client and server. It also adds some suggested next steps to the server installation.
This commit is contained in:
@@ -67,6 +67,14 @@ def logging_setup(options):
|
||||
console.setFormatter(formatter)
|
||||
logging.getLogger('').addHandler(console)
|
||||
|
||||
def check_ntp():
|
||||
ret_code = 1
|
||||
p = subprocess.Popen(["/sbin/service", "ntpd", "status"], stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
stdout, stderr = p.communicate()
|
||||
|
||||
return p.returncode
|
||||
|
||||
def main():
|
||||
options = parse_options()
|
||||
logging_setup(options)
|
||||
@@ -200,6 +208,11 @@ def main():
|
||||
#Modify pam to add pam_krb5
|
||||
run(["/usr/sbin/authconfig", "--enablekrb5", "--update"])
|
||||
|
||||
# print warning about ntp
|
||||
if check_ntp() != 0:
|
||||
print "WARNING: Kerberos requires time synchronization between clients"
|
||||
print "and servers for correct operation. You should consider enabling ntpd."
|
||||
|
||||
return 0
|
||||
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user