Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F3154340
redhat
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
redhat
View Options
#!/bin/sh
#
# Corosync daemon init script for Red Hat Linux and compatibles.
#
# chkconfig: - 20 20
# processname: corosync
# pidfile: /var/run/corosync.pid
# description: Corosync Cluster Engine
# Source function library
. /etc/rc.d/init.d/functions
prog="corosync"
exec="/usr/sbin/corosync"
lockfile="/var/lock/subsys/corosync"
[ -x "$exec" ] || exit 0
start() {
echo -n $"Starting Corosync Cluster Engine ($prog): "
daemon $exec
retval=$?
[ "$retval" -eq 0 ] && touch "$lockfile"
echo
return $retval
}
stop() {
echo -n $"Stopping Corosync Cluster Engine ($prog): "
killproc $prog
retval=$?
[ "$retval" -eq 0 ] && rm -f "$lockfile"
echo
return $retval
}
restart() {
stop
start
}
case "$1" in
start|stop|restart)
$1
;;
reload|force-reload)
restart
;;
condrestart|try-restart)
[ ! -f "$lockfile" ] || restart
;;
status)
status $prog
;;
*)
echo $"Usage: $0 {start|stop|restart|try-restart|condrestart|reload|force-reload|status}"
exit 2
esac
File Metadata
Details
Attached
Mime Type
text/x-shellscript
Expires
Wed, Feb 26, 12:06 PM (21 h, 6 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1465330
Default Alt Text
redhat (1 KB)
Attached To
Mode
rC Corosync
Attached
Detach File
Event Timeline
Log In to Comment