| Last change
 on this file since bbe00a4 was             006050c, checked in by Joe Ciccone <jciccone@…>, 18 years ago | 
        
          | 
Merged Andrew Rowlands Cluster Bootscripts.
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            708 bytes | 
      
      
| Line |  | 
|---|
| 1 | #!/bin/sh | 
|---|
| 2 | # Begin $rc_base/init.d/gmond | 
|---|
| 3 | # | 
|---|
| 4 | # Based on sysklogd script from LFS-3.1 and earlier. | 
|---|
| 5 | # Written by Andrew "Weibullguy" Rowland <darowland@ieee.org> | 
|---|
| 6 | # | 
|---|
| 7 | # Date: 2007-10-25 | 
|---|
| 8 |  | 
|---|
| 9 | . /etc/sysconfig/rc | 
|---|
| 10 | . $rc_functions | 
|---|
| 11 |  | 
|---|
| 12 | # Read in the command arguments | 
|---|
| 13 | case "$1" in | 
|---|
| 14 | start) | 
|---|
| 15 | boot_mesg "Starting Ganglia Monitoring Daemon..." | 
|---|
| 16 | loadproc /usr/sbin/gmond | 
|---|
| 17 | ;; | 
|---|
| 18 | stop) | 
|---|
| 19 | boot_mesg "Stopping Ganglia Monitoring Daemon..." | 
|---|
| 20 | killproc gmond | 
|---|
| 21 | ;; | 
|---|
| 22 | restart) | 
|---|
| 23 | $0 stop | 
|---|
| 24 | $0 start | 
|---|
| 25 | ;; | 
|---|
| 26 | status) | 
|---|
| 27 | statusproc /usr/sbin/gmond | 
|---|
| 28 | ;; | 
|---|
| 29 | *) | 
|---|
| 30 | echo "Usage: $0 {start|stop|restart|status}" | 
|---|
| 31 | exit 1 | 
|---|
| 32 | esac | 
|---|
| 33 |  | 
|---|
| 34 | exit 0 | 
|---|
| 35 |  | 
|---|
| 36 | # End $rc_base/init.d/gmond | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.