mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
8 lines
186 B
Plaintext
8 lines
186 B
Plaintext
|
|
#!/usr/bin/python -E
|
||
|
|
from ipapython import services as ipaservices
|
||
|
|
|
||
|
|
try:
|
||
|
|
ipaservices.knownservices.httpd.restart()
|
||
|
|
except Exception, e:
|
||
|
|
print "Cannot restart httpd: %s" % str(e)
|