Magellan Linux

Contents of /trunk/busybox-initscripts/rc/swap

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1168 - (show annotations) (download)
Wed Dec 15 17:44:36 2010 UTC (13 years, 4 months ago) by niro
File size: 772 byte(s)
-added rc_print() and rc_echo() functions and replaced all corresponding echos with them
-added bootsplash support and initialize splash
-mount.rc: record mdev as mounted - equivalent to udev
-mount.rc: added devtmpfs to NO_FS
-rc-config: added mdev to RC_EXCLUDE
-removed udev.rc, should be installed with udev itself
1 #!/bin/sh
2 # $Header: /home/cvsd/magellan-cvs/magellan-src/busybox-initscripts/rc/swap,v 1.1 2008-06-02 22:14:35 niro Exp $
3
4 #%rlevels: 7:s 0:k
5 #%start: 10
6 #%stop: 70
7
8 #deps
9 #%needs:
10 #%before:
11 #%after:
12
13 source /etc/conf.d/rc
14 source ${rc_functions}
15
16 case "$1" in
17 start)
18 rc_print "Activating all swap files/partitions ..."
19 swapon -a
20 evaluate_retval
21
22 update_svcstatus $1
23 splash svc_started "$(basename $0)" 0
24 ;;
25
26 stop)
27 rc_print "Deactivating all swap files/partitions ..."
28 swapoff -a
29 evaluate_retval
30
31 update_svcstatus $1
32 splash svc_stopped "$(basename $0)" 0
33 ;;
34
35 restart)
36 $0 stop
37 sleep 1
38 $0 start
39 ;;
40
41 status)
42 echo "Retrieving swap status ..."
43 echo
44 swapon -s
45 ;;
46
47 *)
48 echo "Usage: $0 {start|stop|restart|status}"
49 exit 1
50 ;;
51 esac