source: bootscripts/lfs/init.d/swap@ 4e579ca2

multilib-10.1
Last change on this file since 4e579ca2 was 4e579ca2, checked in by Thomas Trepl <thomas@…>, 3 years ago

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@12058 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.