aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/initscripts/files/palmpre/umountfs
blob: 45d4c2ff6cf4b6c5305e766d375ed7ab9b3e0061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
#
# umountfs	Turn off swap and unmount all local filesystems.
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin

# We leave /proc mounted.
echo "Unmounting local filesystems..."
grep -q /mnt/ram /proc/mounts && mount -o remount,ro /mnt/ram

mount -o remount,ro /

: exit 0