summaryrefslogtreecommitdiffstats
path: root/init/SystemV/ipa.init
diff options
context:
space:
mode:
Diffstat (limited to 'init/SystemV/ipa.init')
-rw-r--r--init/SystemV/ipa.init40
1 files changed, 40 insertions, 0 deletions
diff --git a/init/SystemV/ipa.init b/init/SystemV/ipa.init
new file mode 100644
index 000000000..ead7df008
--- /dev/null
+++ b/init/SystemV/ipa.init
@@ -0,0 +1,40 @@
+#!/bin/sh
+#
+# ipa This starts and stops ipa controlled daemons
+#
+# chkconfig: - 21 79
+# description: IPA Server
+# configdir: /etc/ipa/
+#
+
+export SYSTEMCTL_SKIP_REDIRECT=1
+
+# Source function library.
+if [ -f /etc/rc.d/init.d/functions ] ; then
+. /etc/rc.d/init.d/functions
+fi
+# Source networking configuration.
+if [ -f /etc/sysconfig/network ] ; then
+. /etc/sysconfig/network
+fi
+
+# Check that networking is up.
+if [ "${NETWORKING}" = "no" ]
+then
+ echo "Networking is down"
+ exit 0
+fi
+
+case "$1" in
+ start|stop|restart|status)
+ /usr/sbin/ipactl $1
+ ;;
+ condrestart)
+ /sbin/service dirsrv status
+ RETVAL=$?
+ [ $RETVAL = 0 ] && /usr/sbin/ipactl restart
+ ;;
+ *)
+ echo "Usage: $0 {start|stop|status|restart|condrestart}"
+ exit 2
+esac