2011-09-26 18:03:33 +00:00
|
|
|
#! /bin/sh
|
|
|
|
### BEGIN INIT INFO
|
2011-10-03 22:02:24 +00:00
|
|
|
# Provides: radosgw
|
2011-09-26 18:03:33 +00:00
|
|
|
# Required-Start: $remote_fs $named $network $time
|
|
|
|
# Required-Stop: $remote_fs $named $network $time
|
2012-04-11 17:51:16 +00:00
|
|
|
# Default-Start: 2 3 4 5
|
2011-09-26 18:03:33 +00:00
|
|
|
# Default-Stop: 0 1 6
|
2011-10-03 22:02:24 +00:00
|
|
|
# Short-Description: radosgw RESTful rados gateway
|
2011-09-26 18:03:33 +00:00
|
|
|
### END INIT INFO
|
|
|
|
|
|
|
|
PATH=/sbin:/bin:/usr/bin
|
|
|
|
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
|
|
|
|
# prefix for radosgw instances in ceph.conf
|
|
|
|
PREFIX='client.radosgw.'
|
|
|
|
|
2011-10-03 22:13:31 +00:00
|
|
|
# user to run radosgw as (it not specified in ceph.conf)
|
|
|
|
DEFAULT_USER='www-data'
|
2011-09-26 18:03:33 +00:00
|
|
|
|
|
|
|
# directory to write logs to
|
|
|
|
LOGDIR='/var/log/radosgw'
|
|
|
|
|
|
|
|
RADOSGW=`which radosgw`
|
|
|
|
if [ ! -x "$RADOSGW" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# make sure log dir exists
|
|
|
|
if [ ! -d "$LOGDIR" ]; then
|
|
|
|
mkdir -p $LOGDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
|
|
|
for name in `ceph-conf --list-sections $PREFIX`;
|
|
|
|
do
|
|
|
|
auto_start=`ceph-conf -n $name 'auto start'`
|
|
|
|
if [ "$auto_start" = "no" ] || [ "$auto_start" = "false" ] || [ "$auto_start" = "0" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# is the socket defined? if it's not, this instance shouldn't run as a daemon.
|
|
|
|
rgw_socket=`ceph-conf -n $name 'rgw socket path'`
|
|
|
|
if [ -z "$rgw_socket" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# mapped to this host?
|
|
|
|
host=`ceph-conf -n $name host`
|
2012-05-16 23:37:40 +00:00
|
|
|
if [ "$host" != `hostname` ]; then
|
2011-09-26 18:03:33 +00:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2011-10-03 22:13:31 +00:00
|
|
|
user=`ceph-conf -n $name user`
|
2011-10-05 20:48:46 +00:00
|
|
|
if [ -z "$user" ]; then
|
|
|
|
user="$DEFAULT_USER"
|
2011-10-03 22:13:31 +00:00
|
|
|
fi
|
|
|
|
|
2011-10-05 20:37:10 +00:00
|
|
|
log_file=`ceph-conf -n $name log_file`
|
|
|
|
if [ -n "$log_file" ] && [ ! -e "$log_file" ]; then
|
|
|
|
touch "$log_file"
|
|
|
|
chown $user $log_file
|
|
|
|
fi
|
|
|
|
|
2011-09-26 18:03:33 +00:00
|
|
|
echo "Starting $name..."
|
2013-03-11 20:23:13 +00:00
|
|
|
start-stop-daemon --start -u $user -x $RADOSGW -- -n $name
|
2011-09-26 18:03:33 +00:00
|
|
|
done
|
|
|
|
;;
|
2012-02-29 17:23:22 +00:00
|
|
|
reload)
|
|
|
|
echo "Reloading $name..."
|
2013-03-08 17:45:57 +00:00
|
|
|
start-stop-daemon --stop --signal HUP -x $RADOSGW --oknodo
|
2012-02-29 17:23:22 +00:00
|
|
|
;;
|
|
|
|
restart|force-reload)
|
2011-09-26 18:03:33 +00:00
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
stop)
|
2011-10-03 22:23:15 +00:00
|
|
|
start-stop-daemon --stop -x $RADOSGW --oknodo
|
2011-09-26 18:03:33 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 start|stop|restart" >&2
|
|
|
|
exit 3
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|