aboutsummaryrefslogtreecommitdiffstats
path: root/main/libvirt/virtlogd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'main/libvirt/virtlogd.initd')
-rw-r--r--main/libvirt/virtlogd.initd24
1 files changed, 24 insertions, 0 deletions
diff --git a/main/libvirt/virtlogd.initd b/main/libvirt/virtlogd.initd
new file mode 100644
index 0000000000..0d3493bd56
--- /dev/null
+++ b/main/libvirt/virtlogd.initd
@@ -0,0 +1,24 @@
+#!/sbin/openrc-run
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+description="libvirt virtual machine logging manager"
+command="/usr/sbin/virtlogd"
+command_args="-d"
+pidfile="/var/run/virtlogd.pid"
+
+extra_started_commands="reload"
+description_reload="re-exec the daemon, while maintaining open connections"
+
+
+depend() {
+ after ntp-client ntpd nfs nfsmount corosync
+}
+
+reload() {
+ ebegin "re-exec() virtlogd"
+
+ start-stop-daemon --signal SIGUSR1 \
+ --exec "${command}" --pidfile "${pidfile}"
+}