#!/bin/sh

#
# /etc/init.d/fake-overlay
#

case $1 in

	start)
		echo "${PREFIX}copying files to tmpfs..."
		/usr/sbin/fake-overlayfs
		;;
	stop)
		;;
	*)
		echo "Usage: $0 [start|stop]"
		;;
esac
