diff options
author | Alexander Bokovoy <abokovoy@redhat.com> | 2011-10-10 15:25:15 +0300 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-10-24 15:10:11 +0200 |
commit | 25d5d7ed939384340c0aa7d00989cbddf4226bcd (patch) | |
tree | 3f738da9e1603b5577e1fb2a644b8a3c9a189162 /init | |
parent | f098b213eb3d2e8e5d47689a226f81a0d1b35262 (diff) | |
download | freeipa-25d5d7ed939384340c0aa7d00989cbddf4226bcd.tar.gz freeipa-25d5d7ed939384340c0aa7d00989cbddf4226bcd.tar.xz freeipa-25d5d7ed939384340c0aa7d00989cbddf4226bcd.zip |
Add support for systemd environments and use it to support Fedora 16
https://fedorahosted.org/freeipa/ticket/1192
Diffstat (limited to 'init')
-rw-r--r-- | init/SystemV/ipa.init | 40 | ||||
-rw-r--r-- | init/systemd/ipa.service | 14 |
2 files changed, 54 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 diff --git a/init/systemd/ipa.service b/init/systemd/ipa.service new file mode 100644 index 000000000..ba27d1dfd --- /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 |