summaryrefslogtreecommitdiffstats
path: root/install/restart_scripts/restart_httpd
blob: a53ab6e6291ca679bff0f40cb6210e1f7bc792e1 (plain)
1
2
3
4
5
6
7
#!/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)