dist/ubuntu: drop classical sysv init script, only support Upstart for Ubuntu 14.04LTS

Drop sysv init script on scylla-jmx.
Same as a5bb6c4b1b

Signed-off-by: Takuya ASADA <syuu@scylladb.com>
Message-Id: <1459346746-3433-2-git-send-email-syuu@scylladb.com>
This commit is contained in:
Takuya ASADA 2016-03-30 23:05:46 +09:00 committed by Avi Kivity
parent 0c5c1debde
commit a2ec7f2f60
2 changed files with 1 additions and 103 deletions

View File

@ -24,7 +24,7 @@ override_dh_auto_install:
cp $(CURDIR)/target/scylla-jmx-1.0.jar $(DEST)
override_dh_installinit:
dh_installinit --no-start
dh_installinit --no-start --upstart-only
%:
dh $@

View File

@ -1,102 +0,0 @@
#! /bin/sh
### BEGIN INIT INFO
# Provides: scylla-jmx
# Required-Start: $remote_fs $syslog scylla-server
# Required-Stop: $remote_fs $syslog scylla-server
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Scylla JMX server
# Description: Scylla is a highly scalable, eventually consistent,
# distributed, partitioned row DB.
### END INIT INFO
#
# Author: Takuya ASADA<syuu@scylladb.com>
#
# PATH should only include /usr/* if it runs after the mountnfs.sh script
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Scylla JMX server"
NAME=scylla-jmx
SCYLLA_JMX=scylla-jmx
PIDFILE=/var/run/scylla-jmx.pid
SCRIPTNAME=/etc/init.d/$NAME
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 0
# Read configuration variable file if it is present
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
export SCYLLA_HOME SCYLLA_CONF
DAEMON=/usr/lib/scylla/jmx/scylla-jmx -l /usr/lib/scylla/jmx
# Define LSB log_* functions.
. /lib/lsb/init-functions
do_start()
{
# Return
# 0 if daemon has been started
# 1 if daemon was already running
# other if daemon could not be started or a failure occured
start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --user scylla --exec $DAEMON
}
do_stop()
{
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# other if daemon could not be stopped or a failure occurred
start-stop-daemon --stop --quiet --pidfile $PIDFILE --retry 5
/usr/lib/scylla/scylla_stop
}
case "$1" in
start)
if init_is_upstart; then
exit 1
fi
log_daemon_msg "Starting $DESC" "$SCYLLA_SERVER"
do_start
case "$?" in
0) log_end_msg 0 ;;
1) log_progress_msg "already started"
log_end_msg 0 ;;
*) log_end_msg 1 ;;
esac
;;
stop)
if init_is_upstart; then
exit 0
fi
log_daemon_msg "Stopping $DESC" "$SCYLLA_SERVER"
do_stop
case "$?" in
0) log_end_msg 0 ;;
1) log_progress_msg "already stopped"
log_end_msg 0 ;;
*) log_end_msg 1 ;;
esac
;;
restart|force-reload)
if init_is_upstart; then
exit 1
fi
$0 stop
$0 start
;;
status)
status_of_proc -p $PIDFILE $DAEMON $SCYLLA_SERVER && exit 0 || exit $?
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|rotate|restart|force-reload|status}" >&2
exit 3
;;
esac
: