11.3
11.3-rc1
multilib
trunk
xry111/arm64
xry111/clfs-ng
xry111/glibc-2.37
xry111/kcfg-revise
xry111/pip3
xry111/rust-wip-20221008
Last change
on this file since 4d04dc7 was 4d04dc7, checked in by Xi Ruoyao <xry111@…>, 6 months ago |
init.d/swap: you can't mount a swap partition
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | ########################################################################
|
---|
3 | # Begin swap
|
---|
4 | #
|
---|
5 | # Description : Swap Control Script
|
---|
6 | #
|
---|
7 | # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
|
---|
8 | # DJ Lucas - dj@linuxfromscratch.org
|
---|
9 | # Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
|
---|
10 | #
|
---|
11 | # Version : LFS 7.0
|
---|
12 | #
|
---|
13 | ########################################################################
|
---|
14 |
|
---|
15 | ### BEGIN INIT INFO
|
---|
16 | # Provides: swap
|
---|
17 | # Required-Start: udev
|
---|
18 | # Should-Start: modules
|
---|
19 | # Required-Stop: localnet
|
---|
20 | # Should-Stop: $local_fs
|
---|
21 | # Default-Start: S
|
---|
22 | # Default-Stop: 0 6
|
---|
23 | # Short-Description: Activates and deactivates swap partitions.
|
---|
24 | # Description: Activates and deactivates swap partitions defined in
|
---|
25 | # /etc/fstab.
|
---|
26 | # X-LFS-Provided-By: LFS
|
---|
27 | ### END INIT INFO
|
---|
28 |
|
---|
29 | . /lib/lsb/init-functions
|
---|
30 |
|
---|
31 | case "${1}" in
|
---|
32 | start)
|
---|
33 | log_info_msg "Activating all swap files/partitions..."
|
---|
34 | swapon -a
|
---|
35 | evaluate_retval
|
---|
36 | ;;
|
---|
37 |
|
---|
38 | stop)
|
---|
39 | log_info_msg "Deactivating all swap files/partitions..."
|
---|
40 | swapoff -a
|
---|
41 | evaluate_retval
|
---|
42 | ;;
|
---|
43 |
|
---|
44 | restart)
|
---|
45 | ${0} stop
|
---|
46 | sleep 1
|
---|
47 | ${0} start
|
---|
48 | ;;
|
---|
49 |
|
---|
50 | status)
|
---|
51 | log_success_msg "Retrieving swap status."
|
---|
52 | swapon -s
|
---|
53 | ;;
|
---|
54 |
|
---|
55 | *)
|
---|
56 | echo "Usage: ${0} {start|stop|restart|status}"
|
---|
57 | exit 1
|
---|
58 | ;;
|
---|
59 | esac
|
---|
60 |
|
---|
61 | exit 0
|
---|
62 |
|
---|
63 | # End swap
|
---|
Note:
See
TracBrowser
for help on using the repository browser.