From 25d5d7ed939384340c0aa7d00989cbddf4226bcd Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Mon, 10 Oct 2011 15:25:15 +0300 Subject: Add support for systemd environments and use it to support Fedora 16 https://fedorahosted.org/freeipa/ticket/1192 --- init/SystemV/ipa.init | 40 ++++++++++++++++++++++++++++++++++++++++ init/systemd/ipa.service | 14 ++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 init/SystemV/ipa.init create mode 100644 init/systemd/ipa.service (limited to 'init') diff --git a/init/SystemV/ipa.init b/init/SystemV/ipa.init new file mode 100644 index 00000000..ead7df00 --- /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 diff --git a/init/systemd/ipa.service b/init/systemd/ipa.service new file mode 100644 index 00000000..ba27d1df --- /dev/null +++ b/init/systemd/ipa.service @@ -0,0 +1,14 @@ +[Unit] +Description=Identity, Policy, Audit +Requires=syslog.target network.target +After=syslog.target network.target + +[Service] +Type=oneshot +ExecStart=/usr/sbin/ipactl start +ExecStop=/usr/sbin/ipactl stop +RemainAfterExit=yes +TimeoutSec=0 + +[Install] +WantedBy=multi-user.target -- cgit