#!/bin/sh
# Copyright 2011 Paul Parsons
# Distributed under the terms of the GNU General Public License v3 or later

case $1 in
"start")
	mount -n -t proc none /proc
	mount -n -t sysfs none /sys
	;;
"stop")
	;;
esac

exit 0
