summaryrefslogtreecommitdiffstats
path: root/install/restart_scripts/restart_httpd
diff options
context:
space:
mode:
Diffstat (limited to 'install/restart_scripts/restart_httpd')
-rw-r--r--install/restart_scripts/restart_httpd7
1 files changed, 7 insertions, 0 deletions
diff --git a/install/restart_scripts/restart_httpd b/install/restart_scripts/restart_httpd
new file mode 100644
index 000000000..a53ab6e62
--- /dev/null
+++ b/install/restart_scripts/restart_httpd
@@ -0,0 +1,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)