diff options
Diffstat (limited to 'meta/packages/initscripts/initscripts-1.0/umountfs')
-rwxr-xr-x | meta/packages/initscripts/initscripts-1.0/umountfs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/packages/initscripts/initscripts-1.0/umountfs b/meta/packages/initscripts/initscripts-1.0/umountfs new file mode 100755 index 0000000000..ec75b0c4a4 --- /dev/null +++ b/meta/packages/initscripts/initscripts-1.0/umountfs | |||
@@ -0,0 +1,18 @@ | |||
1 | #! /bin/sh | ||
2 | # | ||
3 | # umountfs Turn off swap and unmount all local filesystems. | ||
4 | # | ||
5 | |||
6 | PATH=/sbin:/bin:/usr/sbin:/usr/bin | ||
7 | |||
8 | echo "Deactivating swap..." | ||
9 | swapoff -a | ||
10 | |||
11 | # We leave /proc mounted. | ||
12 | echo "Unmounting local filesystems..." | ||
13 | mount -o remount,ro /mnt/ram | ||
14 | umount -f -a -r | ||
15 | |||
16 | mount -o remount,ro / | ||
17 | |||
18 | : exit 0 | ||