summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/fake-overlayfs
blob: 3785103ce2d59f616b8adda156e4ee360f4d7a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

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

case $1 in

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