view libvirtd @ 24:e372e7648da0

remove test vms, and add managers vms
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Mon, 21 Jul 2014 09:05:59 -1000
parents 66a88f51993f
children
line wrap: on
line source

#! /bin/sh
### BEGIN INIT INFO
# Provides:          atd
# Required-Start:    $syslog $time $remote_fs
# Required-Stop:     $syslog $time $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Deferred execution scheduler
# Description:       Debian init script for the atd deferred executions
#                    scheduler
### END INIT INFO
#
# Author:	TaikiTAIRA	
#

PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/sbin
DAEMON=/usr/local/sbin/libvirtd
PIDFILE=/usr/local/var/run/libvirtd.pid

test -x $DAEMON || exit 0

. /lib/lsb/init-functions

case "$1" in
  start)
	log_daemon_msg "Starting libvirt daemon." "libvirt"
	start_daemon -p $PIDFILE $DAEMON -d
	log_end_msg $?
    ;;
  stop)
	log_daemon_msg "Stopping stop libvirt daemon" "libvirt"
	killproc -p $PIDFILE $DAEMON
	log_end_msg $?
    ;;
  force-reload|restart)
    $0 stop
    $0 start
    ;;
  status)
    status_of_proc -p $PIDFILE $DAEMON libvirtd && exit 0 || exit $?
    ;;
  *)
    echo "Usage: /etc/init.d/libvirtd {start|stop|restart|force-reload|status}"
    exit 1
    ;;
esac

exit 0