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