You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/stompserver/files/stompserver

18 lines
507 B

#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/stompserver/files/stompserver,v 1.1 2009/03/25 17:02:32 caleb Exp $
start() {
ebegin "Starting Stompserver"
start-stop-daemon --start --quiet -b -m -p /var/run/stompserver.pid --exec /usr/bin/stompserver
eend $?
}
stop() {
ebegin "Shutting down Stompserver"
start-stop-daemon --stop --quiet -p /var/run/stompserver.pid
eend $?
}