view libvirtd.sh @ 33:83d66786f576

add port scanner that was written in python.
author taiki
date Mon, 29 Dec 2014 18:43:56 +0900
parents 1c4fb56f3cd5
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