| Last change
 on this file since 405463f was             381c53b, checked in by Jim Gifford <clfs@…>, 19 years ago | 
        
          | 
Updates to bootscripts
 | 
        
          | 
              
Property                 mode
 set to                 100755 | 
        
          | File size:
            466 bytes | 
      
      
| Line |  | 
|---|
| 1 | #!/bin/ash | 
|---|
| 2 |  | 
|---|
| 3 | # Syslog Startup Script | 
|---|
| 4 | # | 
|---|
| 5 |  | 
|---|
| 6 | . /etc/rc.d/init.d/functions | 
|---|
| 7 |  | 
|---|
| 8 | SYSLOG_ROTATE_SIZE=80kb | 
|---|
| 9 |  | 
|---|
| 10 | case "$1" in | 
|---|
| 11 | start) | 
|---|
| 12 | echo -n "Starting syslogd: " | 
|---|
| 13 | syslogd -m 0 -s $SYSLOG_ROTATE_SIZE -L | 
|---|
| 14 | check_status | 
|---|
| 15 | echo -n "Starting klogd: " | 
|---|
| 16 | klogd | 
|---|
| 17 | check_status | 
|---|
| 18 | ;; | 
|---|
| 19 | stop) | 
|---|
| 20 | echo -n "Stopping klogd: " | 
|---|
| 21 | killall klogd | 
|---|
| 22 | check_status | 
|---|
| 23 | echo -n "Stopping syslogd: " | 
|---|
| 24 | killall syslogd | 
|---|
| 25 | check_status | 
|---|
| 26 | ;; | 
|---|
| 27 | restart) | 
|---|
| 28 | $0 stop | 
|---|
| 29 | $0 start | 
|---|
| 30 | ;; | 
|---|
| 31 | *) | 
|---|
| 32 | echo "Usage: $0 {start|stop|restart}" | 
|---|
| 33 | exit 1 | 
|---|
| 34 | esac | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.