diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-05 02:46:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-05 02:50:12 +0000 |
commit | 0319ade6f072312647197d26bb88cb0a24eda5be (patch) | |
tree | e8d3c521a675a37006f6402e8482c292ead01c04 /main/xen/xenconsoled.initd | |
parent | fe9b89c13721269c1070cdfaa983afe24cb3d03d (diff) | |
download | aports-0319ade6f072312647197d26bb88cb0a24eda5be.tar.bz2 aports-0319ade6f072312647197d26bb88cb0a24eda5be.tar.xz |
main/xen: use adapted gentoo init.d scripts
Diffstat (limited to 'main/xen/xenconsoled.initd')
-rw-r--r-- | main/xen/xenconsoled.initd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/main/xen/xenconsoled.initd b/main/xen/xenconsoled.initd new file mode 100644 index 0000000000..d4583226b4 --- /dev/null +++ b/main/xen/xenconsoled.initd @@ -0,0 +1,25 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/files/xenconsoled.initd,v 1.1 2011/04/05 19:23:05 alexxy Exp $ + +depend() { + need xenstored +} + +start() { + ebegin "Starting xenconsoled daemon" + start-stop-daemon --start --exec /usr/sbin/xenconsoled \ + --pidfile /var/run/xenconsoled.pid \ + -- --pid-file=/var/run/xenconsoled.pid \ + ${XENCONSOLED_OPTS} + eend $? +} + +stop() { + ebegin "Stoping xenconsoled daemon" + start-stop-daemon --stop --exec /usr/sbin/xenconsoled \ + --pidfile /var/run/xenconsoled.pid + eend $? +} + |