Imported Upstream version 4.6.2
This commit is contained in:
27
install/restart_scripts/renew_kdc_cert
Executable file
27
install/restart_scripts/renew_kdc_cert
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python2 -E
|
||||
#
|
||||
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
||||
#
|
||||
|
||||
import syslog
|
||||
import traceback
|
||||
|
||||
from ipaplatform import services
|
||||
from ipaserver.install import certs
|
||||
|
||||
|
||||
def main():
|
||||
with certs.renewal_lock:
|
||||
try:
|
||||
if services.knownservices.krb5kdc.is_running():
|
||||
syslog.syslog(syslog.LOG_NOTICE, 'restarting krb5kdc')
|
||||
services.knownservices.krb5kdc.restart()
|
||||
except Exception as e:
|
||||
syslog.syslog(
|
||||
syslog.LOG_ERR, "cannot restart krb5kdc: {}".format(e))
|
||||
|
||||
|
||||
try:
|
||||
main()
|
||||
except Exception:
|
||||
syslog.syslog(syslog.LOG_ERR, traceback.format_exc())
|
||||
Reference in New Issue
Block a user