clfs-1.2
        clfs-2.1
        clfs-3.0.0-systemd
        clfs-3.0.0-sysvinit
        systemd
        sysvinit
      
      
        
          | Last change
 on this file since b6aade3 was             d66bf46, checked in by Jim Gifford <clfs@…>, 19 years ago | 
        
          | 
Update bootscripts to follow our standards
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            825 bytes | 
      
      
| Rev | Line |  | 
|---|
| [163a6701] | 1 | #!/bin/sh | 
|---|
|  | 2 | ######################################################################## | 
|---|
|  | 3 | # Begin $rc_base/init.d/swap | 
|---|
|  | 4 | # | 
|---|
|  | 5 | # Description : Swap Control Script | 
|---|
|  | 6 | # | 
|---|
|  | 7 | # Authors     : Gerard Beekmans - gerard@linuxfromscratch.org | 
|---|
|  | 8 | # | 
|---|
|  | 9 | # Version     : 00.00 | 
|---|
|  | 10 | # | 
|---|
|  | 11 | # Notes       : | 
|---|
|  | 12 | # | 
|---|
|  | 13 | ######################################################################## | 
|---|
|  | 14 |  | 
|---|
|  | 15 | . /etc/sysconfig/rc | 
|---|
|  | 16 | . ${rc_functions} | 
|---|
|  | 17 |  | 
|---|
|  | 18 | case "${1}" in | 
|---|
|  | 19 | start) | 
|---|
|  | 20 | boot_mesg "Activating all swap files/partitions..." | 
|---|
|  | 21 | swapon -a | 
|---|
|  | 22 | evaluate_retval | 
|---|
|  | 23 | ;; | 
|---|
|  | 24 |  | 
|---|
|  | 25 | stop) | 
|---|
|  | 26 | boot_mesg "Deactivating all swap files/partitions..." | 
|---|
|  | 27 | swapoff -a | 
|---|
|  | 28 | evaluate_retval | 
|---|
|  | 29 | ;; | 
|---|
|  | 30 |  | 
|---|
|  | 31 | restart) | 
|---|
|  | 32 | ${0} stop | 
|---|
|  | 33 | sleep 1 | 
|---|
|  | 34 | ${0} start | 
|---|
|  | 35 | ;; | 
|---|
|  | 36 |  | 
|---|
|  | 37 | status) | 
|---|
|  | 38 | boot_mesg "Retrieving swap status." ${INFO} | 
|---|
|  | 39 | echo_ok | 
|---|
|  | 40 | echo | 
|---|
|  | 41 | swapon -s | 
|---|
|  | 42 | ;; | 
|---|
|  | 43 |  | 
|---|
|  | 44 | *) | 
|---|
|  | 45 | echo "Usage: ${0} {start|stop|restart|status}" | 
|---|
|  | 46 | exit 1 | 
|---|
|  | 47 | ;; | 
|---|
|  | 48 | esac | 
|---|
|  | 49 |  | 
|---|
|  | 50 | # End $rc_base/init.d/swap | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.