source: bootscripts/lfs/init.d/swap@ 3c784d8

10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 3c784d8 was 3c784d8, checked in by DJ Lucas <dj@…>, 4 years ago

make a Should-Stop dependency of swap to allow clean install

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12052 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • 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: Mounts and unmounts swap partitions.
24# Description: Mounts and unmounts swap partitions defined in
25# /etc/fstab.
26# X-LFS-Provided-By: LFS
27### END INIT INFO
28
29. /lib/lsb/init-functions
30
31case "${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 ;;
59esac
60
61exit 0
62
63# End swap
Note: See TracBrowser for help on using the repository browser.