Author: paszczus Date: Wed Sep 24 11:54:55 2008 GMT Module: SOURCES Tag: HEAD ---- Log message: - new
---- Files affected: SOURCES: libvirt.init (NONE -> 1.1) (NEW) ---- Diffs: ================================================================ Index: SOURCES/libvirt.init diff -u /dev/null SOURCES/libvirt.init:1.1 --- /dev/null Wed Sep 24 13:54:56 2008 +++ SOURCES/libvirt.init Wed Sep 24 13:54:50 2008 @@ -0,0 +1,87 @@ +#!/bin/sh +# libvirtd: guest and virtual network management daemon +# +# chkconfig: 345 97 03 +# description: This is a daemon for managing guest instances +# and libvirt virtual networks +# See http://libvirt.org +# +# processname: libvirtd +# + +LIBVIRTD_CONFIG= +LIBVIRTD_ARGS= + +LIBVIRTD_CONFIG_ARGS= +if [ -n "$LIBVIRTD_CONFIG" ] +then + LIBVIRTD_CONFIG_ARGS="--config $LIBVIRTD_CONFIG" +fi + +# Source function library. +. /etc/rc.d/init.d/functions + +sconf="/etc/libvirt/libvirtd.conf" + +# Source config +if [ -f /etc/sysconfig/libvirtd ] ; then + . /etc/sysconfig/libvirtd +fi + + +start() { + if [ ! -f /var/lock/subsys/libvirtd ]; then + umask 077 + msg_starting libvirtd + daemon --check libvirtd libvirtd --daemon $LIBVIRTD_CONFIG_ARGS $LIBVIRTD_ARGS + RETVAL=$? + [ $RETVAL -eq 0 ] && touch /var/lock/subsys/libvirtd + else + msg_already_running libvirtd + fi +} + +stop() { + if [ -f /var/lock/subsys/libvirtd ]; then + msg_stopping libvirtd + killproc libvirtd + rm -f /var/lock/subsys/libvirtd + else + msg_not_running libvirtd + fi +} + +condrestart() { + if [ -f /var/lock/subsys/libvirtd ]; then + stop + start + else + msg_not_running libvirtd + RETVAL=$1 + fi +} + +RETVAL=0 +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart) + stop + start + ;; + try-restart) + condrestart 0 + ;; + status) + status libvirtd + ;; + *) + msg_usage "$0 {start|stop|restart|try-restart|status}" + exit 3 +esac + +exit $RETVAL ================================================================ _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
