Add and update files required by the previous change.

This commit is contained in:
Matthias Saou 2009-09-12 17:46:32 +00:00
parent 2c1c23b435
commit 13305b53a0
4 changed files with 103 additions and 55 deletions

6
glusterfs.logrotate Normal file
View File

@ -0,0 +1,6 @@
/var/log/glusterfs/glusterfs.log {
missingok
postrotate
/usr/bin/killall -HUP glusterfs 2>/dev/null || true
endscript
}

View File

@ -4,68 +4,104 @@
# #
# chkconfig: - 20 80 # chkconfig: - 20 80
# description: Clustered file-system server # description: Clustered file-system server
#
# processname: glusterfsd
# config: /etc/glusterfs/glusterfs-server.vol
# pidfile: /var/run/glusterfsd.pid
# Source function library ### BEGIN INIT INFO
# Provides: glusterfsd
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Should-Start:
# Should-Stop:
# Default-Start:
# Default-Stop: 0 1 2 3 4 5 6
# Short-Description: glusterfs server
# Description: Clustered file-system server
### END INIT INFO
# Source function library.
. /etc/rc.d/init.d/functions . /etc/rc.d/init.d/functions
exec="/usr/sbin/glusterfsd"
prog="glusterfsd" prog="glusterfsd"
glusterfsd="/usr/sbin/glusterfsd"
RETVAL=0
# Set defaults, then source config for eventual overrides # Set defaults, then source config for eventual overrides
GLUSTERFSD_CONFIG="/etc/glusterfs/glusterfs-server.vol"
GLUSTERFSD_LOGFILE="/var/log/glusterfs/glusterfsd.log"
GLUSTERFSD_LOGLEVEL="WARNING"
GLUSTERFSD_NOFILE="65536" GLUSTERFSD_NOFILE="65536"
[ -f /etc/sysconfig/glusterfsd ] && source /etc/sysconfig/glusterfsd
[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
lockfile=/var/lock/subsys/$prog
start() { start() {
[ -x $exec ] || exit 5
[ -f $GLUSTERFSD_CONFIG ] || exit 6
ulimit -n $GLUSTERFSD_NOFILE
echo -n $"Starting $prog: " echo -n $"Starting $prog: "
ulimit -n ${GLUSTERFSD_NOFILE} daemon $exec${GLUSTERFSD_CONFIG+" -f $GLUSTERFSD_CONFIG"}${GLUSTERFSD_LOGFILE+" -l $GLUSTERFSD_LOGFILE"}${GLUSTERFSD_LOGLEVEL+" -L $GLUSTERFSD_LOGLEVEL"} -p /var/run/glusterfsd.pid
daemon $glusterfsd -f ${GLUSTERFSD_CONFIG} -l ${GLUSTERFSD_LOGFILE} -L ${GLUSTERFSD_LOGLEVEL} retval=$?
RETVAL=$?
echo echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog [ $retval -eq 0 ] && touch $lockfile
return $RETVAL return $retval
} }
stop() { stop() {
echo -n $"Stopping $prog: " echo -n $"Stopping $prog: "
killproc $glusterfsd killproc $prog
RETVAL=$? retval=$?
echo echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog [ $retval -eq 0 ] && rm -f $lockfile
return $RETVAL return $retval
} }
restart() {
stop
start
}
reload() {
restart
}
force_reload() {
restart
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status &>/dev/null
}
case "$1" in case "$1" in
start) start)
start rh_status_q && exit 0
$1
;; ;;
stop) stop)
stop rh_status_q || exit 0
$1
;; ;;
restart|reload) restart)
stop $1
start
;; ;;
condrestart) reload)
if [ -f /var/lock/subsys/$prog ]; then rh_status_q || exit 7
stop $1
start ;;
fi force-reload)
force_reload
;; ;;
status) status)
status $glusterfsd rh_status
RETVAL=$? ;;
condrestart|try-restart)
rh_status_q || exit 0
restart
;; ;;
*) *)
echo $"Usage: $0 {start|stop|restart|condrestart|status}" echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
RETVAL=1 exit 2
esac esac
exit $?
exit $RETVAL

6
glusterfsd.logrotate Normal file
View File

@ -0,0 +1,6 @@
/var/log/glusterfs/glusterfsd.log {
missingok
postrotate
/bin/kill -HUP `cat /var/run/glusterfsd.pid 2>/dev/null` 2>/dev/null || true
endscript
}

View File

@ -1,8 +1,8 @@
# Change the glusterfsd service defaults here. # Change the glusterfsd service defaults here.
# LOGLEVEL is one of DEBUG WARNING ERROR (default) CRITICAL or NONE # See "glusterfsd --help" outpout for defaults and possible values.
#GLUSTERFSD_CONFIG="/etc/glusterfs/glusterfs-server.vol" #GLUSTERFSD_CONFIG="/etc/glusterfs/glusterfsd.vol"
#GLUSTERFSD_LOGFILE="/var/log/glusterfs/glusterfsd.log" #GLUSTERFSD_LOGFILE="/var/log/glusterfs/glusterfs.log"
#GLUSTERFSD_LOGLEVEL="ERROR" #GLUSTERFSD_LOGLEVEL="NORMAL"
#GLUSTERFSD_NOFILE="65536" #GLUSTERFSD_NOFILE="65536"