#!/bin/sh

msg='Umounting filesystems...'
run() {
	local mp
	for mp in sys proc $UMOUNT_FS; do
		umount "/$mp"
	done
}
