source: bootscripts/lfs/init.d/mountfs

trunk
Last change on this file was b3daf01, checked in by Pierre Labastie <pierre.labastie@…>, 19 months ago

Typos reported by "rhubarbpieguy"

  • Property mode set to 100644
File size: 2.5 KB
Line 
1#!/bin/sh
2########################################################################
3# Begin mountfs
4#
5# Description : File System Mount 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: $local_fs
17# Required-Start: udev checkfs
18# Should-Start: modules
19# Required-Stop: localnet
20# Should-Stop:
21# Default-Start: S
22# Default-Stop: 0 6
23# Short-Description: Mounts/unmounts local filesystems defined in /etc/fstab.
24# Description: Remounts root filesystem read/write and mounts all
25# remaining local filesystems defined in /etc/fstab on
26# start. Remounts root filesystem read-only and unmounts
27# remaining filesystems on stop.
28# X-LFS-Provided-By: LFS
29### END INIT INFO
30
31. /lib/lsb/init-functions
32
33case "${1}" in
34 start)
35 log_info_msg "Remounting root file system in read-write mode..."
36 mount --options remount,rw / >/dev/null
37 evaluate_retval
38
39 # Remove fsck-related file system watermarks.
40 rm -f /fastboot /forcefsck
41
42 # Make sure /dev/pts exists
43 mkdir -p /dev/pts
44
45 # This will mount all filesystems that do not have _netdev in
46 # their option list. _netdev denotes a network filesystem.
47
48 log_info_msg "Mounting remaining file systems..."
49 failed=0
50 mount --all --test-opts no_netdev >/dev/null || failed=1
51 evaluate_retval
52 exit $failed
53 ;;
54
55 stop)
56 # Don't unmount virtual file systems like /run
57 log_info_msg "Unmounting all other currently mounted file systems..."
58 # Ensure any loop devices are removed
59 losetup -D
60 umount --all --detach-loop --read-only \
61 --types notmpfs,nosysfs,nodevtmpfs,noproc,nodevpts >/dev/null
62 evaluate_retval
63
64 # Make sure / is mounted read only (umount bug)
65 mount --options remount,ro /
66
67 # Make all LVM volume groups unavailable, if appropriate
68 # This fails if swap or / are on an LVM partition
69 #if [ -x /sbin/vgchange ]; then /sbin/vgchange -an > /dev/null; fi
70 if [ -r /etc/mdadm.conf ]; then
71 log_info_msg "Mark arrays as clean..."
72 mdadm --wait-clean --scan
73 evaluate_retval
74 fi
75 ;;
76
77 *)
78 echo "Usage: ${0} {start|stop}"
79 exit 1
80 ;;
81esac
82
83# End mountfs
Note: See TracBrowser for help on using the repository browser.